﻿:root {
    --bg: #f7f8f3;
    --surface: #ffffff;
    --surface-soft: #eef2ea;
    --surface-strong: #e4eadf;
    --text: #171b1c;
    --muted: #626968;
    --line: rgba(23, 27, 28, 0.12);
    --brand: #5b2f79;
    --brand-deep: #35214b;
    --brand-soft: #ede5f3;
    --lime: #c8f46b;
    --header: rgba(247, 248, 243, 0.88);
    --shadow: 0 24px 80px rgba(28, 34, 31, 0.11);
    --radius-lg: 32px;
    --radius-md: 22px;
    --max: 1180px;
}

html[data-theme="dark"] {
    --bg: #111416;
    --surface: #181c1e;
    --surface-soft: #202628;
    --surface-strong: #293033;
    --text: #f6f7f2;
    --muted: #aeb6b3;
    --line: rgba(255, 255, 255, 0.12);
    --brand: #b884d6;
    --brand-deep: #21152e;
    --brand-soft: #32233d;
    --lime: #c8f46b;
    --header: rgba(17, 20, 22, 0.88);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    padding: 0 !important;
    overflow-x: hidden;
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg) !important;
    color: var(--text);
    transition: background-color 180ms ease, color 180ms ease;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
.button,
.text-link,
.nav-links a,
.footer-col a {
    transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

.section-shell,
.header-container,
.footer-container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--lime);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 28px rgba(91, 47, 121, 0.22);
}

.button-secondary {
    border-color: var(--line);
    background: var(--surface-soft);
    color: var(--text);
}

.button-light {
    background: #fff;
    color: #23172f;
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    background: var(--text);
    color: var(--bg);
    font-size: 0.9rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: var(--header);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.38rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    background: var(--brand-soft);
}

.brand-mark img {
    width: 24px;
    height: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
}

.nav-links a:hover,
.footer-col a:hover {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.theme-toggle:hover {
    transform: rotate(8deg);
}

.theme-icon {
    grid-area: 1 / 1;
    line-height: 1;
}

.theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
    opacity: 0;
    transform: scale(0.5);
}

html[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
    transform: scale(1);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
}

.hamburger span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 3px auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-nav {
    display: none;
}

/* Hero */
.hero {
    min-height: 730px;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: 68px;
    padding-block: 70px 90px;
}

.hero-copy h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(3.7rem, 7vw, 6.7rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.hero-lede {
    max-width: 570px;
    margin: 30px 0;
    color: var(--muted);
    font-size: 1.14rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.text-link {
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover {
    color: var(--brand);
}

.hero-store-links {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.hero-store-links img {
    width: 137px;
    height: auto;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-left {
    inset: 0 31% 12% 0;
    transform: rotate(-3deg);
}

.hero-image-right {
    inset: 10% 0 0 40%;
    transform: rotate(3deg);
}

.floating-card {
    position: absolute;
    right: 2%;
    bottom: 5%;
    z-index: 2;
    width: min(310px, 80%);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    background: rgba(255,255,255,0.91);
    color: #171b1c;
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
    backdrop-filter: blur(16px);
}

.floating-card div {
    display: grid;
    gap: 3px;
}

.floating-card strong {
    font-size: 0.92rem;
}

.floating-card span:last-child {
    color: #626968;
    font-size: 0.8rem;
}

.status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: #64d761;
    box-shadow: 0 0 0 5px rgba(100,215,97,0.18);
}

/* Shared sections */
.intro,
.plans,
.faq-section {
    padding-block: 112px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading h2,
.product-story h2,
.footer-cta h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-heading p {
    max-width: 580px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.feature-card-accent {
    border-color: transparent;
    background: var(--lime);
    color: #17200d;
}

.feature-number {
    margin-bottom: auto;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.feature-card-accent .feature-number {
    color: rgba(23,32,13,0.55);
}

.feature-card h3 {
    margin: 40px 0 10px;
    font-size: 1.52rem;
    letter-spacing: -0.03em;
}

.feature-card p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.feature-card-accent p {
    color: rgba(23,32,13,0.72);
}

/* Product story */
.product-story {
    overflow: hidden;
    padding-block: 112px;
    background: #30213f;
    color: #fff;
}

.product-story-inner {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 70px;
}

.product-story-copy p {
    margin: 26px 0 32px;
    color: rgba(255,255,255,0.72);
    font-size: 1.08rem;
    line-height: 1.68;
}

.product-window {
    overflow: hidden;
    border: 10px solid rgba(255,255,255,0.09);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.28);
    transform: rotate(1.5deg);
}

.product-window img {
    width: 100%;
}

/* Plans */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.plan-card-featured {
    border-color: transparent;
    background: var(--brand-deep);
    color: #fff;
}

.plan-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 900;
}

.plan-pill {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plan-card-featured .plan-pill {
    background: var(--lime);
    color: #17200d;
}

.plan-card > p {
    min-height: 52px;
    color: var(--muted);
    line-height: 1.6;
}

.plan-card-featured > p {
    color: rgba(255,255,255,0.68);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0 30px;
}

.plan-price strong {
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.plan-price span {
    color: var(--muted);
}

.plan-card-featured .plan-price span {
    color: rgba(255,255,255,0.62);
}

.plan-card ul {
    display: grid;
    gap: 15px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 12px;
    line-height: 1.45;
}

.plan-card li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 900;
}

.plan-card-featured li::before {
    color: var(--lime);
}

.plan-card .button {
    width: 100%;
    margin-top: auto;
}

/* FAQ */
.faq-section {
    padding-top: 40px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 4px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--surface-soft);
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 780px;
    margin: -8px 0 28px;
    padding-right: 56px;
    color: var(--muted);
    line-height: 1.75;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 98px 0 34px;
    background: #24192f;
    color: #fff;
}

.footer-download {
    min-height: 480px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 90px;
}

.footer-phone {
    align-self: end;
    display: flex;
    justify-content: center;
}

.footer-phone img {
    width: 293px;
    filter: drop-shadow(0 30px 36px rgba(0,0,0,0.28));
}

.footer-cta p {
    max-width: 530px;
    margin: 24px 0 32px;
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    line-height: 1.65;
}

.download-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.store-badge img {
    height: 46px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    margin: 42px 0 48px;
    background: rgba(255,255,255,0.14);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
    gap: 44px;
}

.footer-brand {
    align-self: start;
    color: #fff;
    font-size: 1.55rem;
}

.brand-mark-light {
    background: rgba(255,255,255,0.12);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-col h3 {
    margin: 0 0 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-col a {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-note p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
}

/* Existing content pages */
.content {
    width: min(calc(100% - 40px), 860px);
    margin: 56px auto 100px !important;
    color: var(--text);
    background: var(--surface) !important;
    box-shadow: var(--shadow) !important;
}

.content h1,
.content h2,
.content h3,
.content h4 {
    color: var(--text) !important;
}

html[data-theme="dark"] .content *,
html[data-theme="dark"] .qvir-guidelines,
html[data-theme="dark"] .qvir-guidelines * {
    border-color: var(--line) !important;
}

html[data-theme="dark"] .qvir-guidelines {
    background: var(--surface) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .qvir-guidelines p {
    color: var(--muted) !important;
}

/* Account deletion */
.deletion-page {
    padding-bottom: 70px;
}

.deletion-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 72px;
    padding-block: 92px 76px;
}

.deletion-hero-copy {
    max-width: 760px;
}

.deletion-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3.8rem, 8vw, 7.6rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.deletion-hero-copy > p {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.75;
}

.deletion-path-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.deletion-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.2rem;
    font-weight: 900;
}

.deletion-path-card h2 {
    margin: 1px 0 8px;
    font-size: 1.05rem;
}

.deletion-path-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.deletion-request {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    padding: 58px;
    border-radius: var(--radius-lg);
    background: var(--brand-deep);
    color: #fff;
}

.deletion-action {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    margin-bottom: 34px;
    padding: 34px 40px;
    border: 1px solid rgba(91,47,121,0.24);
    border-radius: var(--radius-lg);
    background: var(--brand-soft);
}

.deletion-action[hidden] {
    display: none;
}

.deletion-action h2 {
    margin: 8px 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.deletion-action p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.deletion-action-controls {
    min-width: min(100%, 270px);
}

.deletion-action-controls .button {
    width: 100%;
}

.action-status {
    margin-top: 12px;
    font-size: 0.9rem;
}

.deletion-request-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.deletion-request-copy p {
    margin: 24px 0 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.deletion-form {
    align-self: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
}

.deletion-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.88rem;
    font-weight: 900;
}

.deletion-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: #fff;
    color: #171b1c;
    font: inherit;
    font-size: 1rem;
}

.deletion-form input:focus {
    border-color: var(--lime);
    outline: none;
    box-shadow: 0 0 0 4px rgba(200,244,107,0.22);
}

.deletion-form .button {
    width: 100%;
    margin-top: 20px;
    background: var(--lime);
    color: #1f2420;
    box-shadow: none;
}

.form-help,
.form-status {
    margin: 12px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.83rem;
    line-height: 1.55;
}

.form-status:not(:empty) {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.form-status a,
.form-help a {
    color: var(--lime);
    font-weight: 900;
}

.deletion-details,
.deletion-data {
    padding-top: 110px;
}

.deletion-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.deletion-steps li {
    min-height: 240px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.deletion-steps li > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 900;
}

.deletion-steps strong {
    display: block;
    font-size: 1.15rem;
}

.deletion-steps p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.deletion-data .section-heading {
    max-width: 790px;
}

.deletion-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.deletion-data-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.deletion-data-card-delete {
    background: var(--surface-soft);
}

.data-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.data-card-heading > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
}

.data-card-heading h3 {
    margin: 0;
    font-size: 1.3rem;
}

.deletion-data-card ul {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.55;
}

.subscription-warning {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 90px;
    padding: 30px;
    border: 1px solid rgba(91,47,121,0.24);
    border-radius: var(--radius-md);
    background: var(--brand-soft);
}

.warning-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.subscription-warning h2 {
    margin: 1px 0 7px;
    font-size: 1.15rem;
}

.subscription-warning p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.privacy-deletion-disclosure {
    margin-top: 42px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav.show {
        display: grid;
        gap: 4px;
        padding: 8px 20px 20px;
        border-top: 1px solid var(--line);
        background: var(--bg);
    }

    .mobile-nav a:not(.button) {
        padding: 13px 8px;
        color: var(--text);
        font-weight: 800;
        text-decoration: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-top: 56px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-copy h1 {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 620px;
    }

    .product-story-inner,
    .footer-download {
        grid-template-columns: 1fr;
    }

    .product-story-copy {
        max-width: 680px;
    }

    .footer-download {
        gap: 30px;
    }

    .footer-phone {
        order: 2;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .deletion-hero,
    .deletion-request,
    .deletion-action {
        grid-template-columns: 1fr;
    }

    .deletion-hero {
        gap: 42px;
    }

    .deletion-request {
        gap: 42px;
    }

    .deletion-steps {
        grid-template-columns: 1fr;
    }

    .deletion-steps li {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .section-shell,
    .header-container,
    .footer-container {
        width: min(calc(100% - 28px), var(--max));
    }

    .header-container {
        min-height: 68px;
    }

    .theme-toggle,
    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: auto;
        padding-block: 50px 68px;
    }

    .hero-copy h1 {
        font-size: clamp(3.35rem, 17vw, 5.2rem);
    }

    .hero-lede {
        margin-block: 24px;
        font-size: 1rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-store-links img {
        width: 128px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image {
        border-radius: 26px;
    }

    .hero-image-left {
        inset: 0 28% 15% 0;
    }

    .hero-image-right {
        inset: 14% 0 0 41%;
    }

    .floating-card {
        right: 3%;
        bottom: 2%;
    }

    .intro,
    .plans,
    .faq-section,
    .product-story {
        padding-block: 80px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .product-story h2,
    .footer-cta h2 {
        font-size: 2.72rem;
    }

    .feature-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 240px;
        padding: 28px;
    }

    .product-story-inner {
        gap: 46px;
    }

    .product-window {
        width: 150%;
        border-width: 7px;
        transform: rotate(1.5deg) translateX(-5%);
    }

    .plan-card {
        padding: 28px;
        border-radius: 24px;
    }

    .faq-list summary {
        font-size: 1rem;
    }

    .faq-list details p {
        padding-right: 12px;
    }

    .footer {
        padding-top: 78px;
    }

    .footer-download {
        min-height: auto;
    }

    .download-actions {
        align-items: flex-start;
    }

    .footer-phone img {
        width: min(260px, 85%);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 44px;
    }

    .deletion-page {
        padding-bottom: 25px;
    }

    .deletion-hero {
        padding-block: 60px 54px;
    }

    .deletion-hero h1 {
        font-size: clamp(3.3rem, 17vw, 5rem);
    }

    .deletion-request {
        width: min(calc(100% - 20px), var(--max));
        padding: 28px 18px;
        border-radius: 26px;
    }

    .deletion-form {
        padding: 22px 16px;
    }

    .deletion-details,
    .deletion-data {
        padding-top: 80px;
    }

    .deletion-data-grid {
        grid-template-columns: 1fr;
    }

    .deletion-data-card {
        padding: 28px 24px;
    }

    .subscription-warning {
        margin-top: 70px;
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
