:root {
    color-scheme: light;

    --bg: #f4f7ff;
    --surface: #ffffff;
    --text: #172033;
    --muted: #667085;
    --accent: #356df3;
    --accent2: #2455c8;
    --line: #e6ebf3;
    --shadow: 0 18px 55px rgba(35, 64, 130, 0.13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    line-height: 1.65;
    background:
        radial-gradient(
            circle at 15% 0,
            #e7edff 0,
            transparent 32rem
        ),
        radial-gradient(
            circle at 90% 10%,
            #f8e9df 0,
            transparent 28rem
        ),
        var(--bg);
}

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

a {
    color: var(--accent2);
}

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

.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    color: var(--home-accent-dark);
    border: 1px solid rgba(52, 120, 246, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 8px 20px rgba(72, 91, 131, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.language-switch:hover {
    color: var(--home-accent);
    border-color: rgba(52, 120, 246, 0.3);
}

@media (max-width: 900px) {
    .header-actions {
        gap: 10px;
    }

    .language-switch {
        min-height: 36px;
        padding: 0 12px;
    }
}

.shell {
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
    padding:
        max(44px, env(safe-area-inset-top))
        0
        max(64px, env(safe-area-inset-bottom));
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
    background:
        linear-gradient(
            145deg,
            #234ea8,
            #5d8cff
        );
    box-shadow:
        0 10px 28px rgba(53, 109, 243, 0.25);
}

.brand-name {
    font-size: 1.08rem;
    font-weight: 750;
}

.card {
    padding: clamp(24px, 6vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 7vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h2 {
    margin: 34px 0 10px;
    font-size: 1.3rem;
}

p {
    margin: 10px 0;
}

.lead {
    color: var(--muted);
    font-size: 1.06rem;
}

.actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
}

.button-primary {
    color: #ffffff;
    background: var(--accent);
}

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

.notice {
    margin-top: 22px;
    padding: 16px 18px;
    color: #34436a;
    border: 1px solid #dbe7ff;
    border-radius: 16px;
    background: #eef4ff;
}

.success {
    color: #23a55a;
    font-weight: 700;
}

.meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.footer {
    padding-top: 24px;
    color: var(--muted);
    font-size: 0.88rem;
    text-align: center;
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 8px;
}

.footer a {
    color: inherit;
}

ul,
ol {
    padding-left: 1.25rem;
}

code {
    overflow-wrap: anywhere;
}

@media (min-width: 560px) {
    .actions.two {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   Famreco Home Page
   ========================================================= */

.home-page {
    --home-accent: #3478f6;
    --home-accent-dark: #215fd1;
    --home-accent-soft: #e8f0ff;
    --home-green: #32c86a;
    --home-orange: #ff8a34;
    --home-text: #111318;
    --home-secondary: #697180;
    --home-border: rgba(71, 86, 118, 0.12);
    --home-surface: rgba(255, 255, 255, 0.86);
    --home-surface-strong: rgba(255, 255, 255, 0.96);
    --home-shadow: 0 24px 70px rgba(57, 79, 125, 0.13);

    min-height: 100vh;
    margin: 0;
    color: var(--home-text);
    background:
        radial-gradient(
            circle at 12% 4%,
            rgba(116, 163, 255, 0.22),
            transparent 26rem
        ),
        radial-gradient(
            circle at 90% 24%,
            rgba(198, 214, 255, 0.34),
            transparent 30rem
        ),
        radial-gradient(
            circle at 40% 82%,
            rgba(222, 234, 255, 0.54),
            transparent 34rem
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #edf3ff 48%,
            #f8faff 100%
        );

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Hiragino Sans",
        "Yu Gothic",
        sans-serif;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

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

.home-page a {
    color: inherit;
}

.home-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding:
        max(22px, env(safe-area-inset-top))
        0
        max(34px, env(safe-area-inset-bottom));
}


/* Header */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
    margin-bottom: 58px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.home-page .brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #6da2ff,
            #3478f6
        );
    box-shadow:
        0 10px 25px rgba(52, 120, 246, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    font-size: 21px;
    font-weight: 800;
}

.home-page .brand-name {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: var(--home-secondary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-nav a:hover {
    color: var(--home-accent);
}


/* Hero */

.hero-section {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);
    align-items: center;
    gap: 72px;
    min-height: 680px;
    padding-bottom: 90px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--home-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 590px;
    margin: 28px 0 0;
    color: var(--home-secondary);
    font-size: 19px;
    line-height: 1.9;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.home-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

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

.home-page .button:focus-visible {
    outline: 3px solid rgba(52, 120, 246, 0.28);
    outline-offset: 3px;
}

.home-page .button-large {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 18px;
}

.home-page .button-primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #4387ff,
            #2d6fec
        );
    box-shadow:
        0 14px 32px rgba(52, 120, 246, 0.26);
}

.home-page .button-primary:hover {
    box-shadow:
        0 18px 38px rgba(52, 120, 246, 0.33);
}

.home-page .button-secondary {
    color: var(--home-accent-dark);
    border-color: rgba(52, 120, 246, 0.16);
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 10px 26px rgba(72, 91, 131, 0.08);

    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    color: var(--home-secondary);
    border: 1px solid rgba(52, 120, 246, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
}


/* Hero screenshots */

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

.phone-shot {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 42px;
    background: #ffffff;
    box-shadow:
        0 38px 80px rgba(44, 63, 106, 0.22),
        0 8px 22px rgba(70, 91, 138, 0.1);
}

.phone-shot::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(80, 97, 132, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    content: "";
    pointer-events: none;
}

.phone-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-shot-main {
    z-index: 2;
    top: 8px;
    left: 4%;
    width: 54%;
    aspect-ratio: 709 / 1536;
    transform: rotate(-4deg);
}

.phone-shot-side {
    z-index: 1;
    top: 82px;
    right: 2%;
    width: 48%;
    aspect-ratio: 709 / 1536;
    opacity: 0.94;
    transform: rotate(5deg);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    color: #26324b;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 18px 45px rgba(43, 63, 105, 0.16);
    font-size: 13px;
    font-weight: 800;

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.floating-icon {
    color: var(--home-green);
}

.floating-card-private {
    top: 44px;
    right: 0;
}

.floating-card-album {
    bottom: 74px;
    left: 0;
}


/* Intro strip */

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 120px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 20px 50px rgba(63, 81, 120, 0.09);

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.intro-strip div {
    display: grid;
    gap: 5px;
    padding: 25px 28px;
}

.intro-strip div + div {
    border-left: 1px solid var(--home-border);
}

.intro-strip strong {
    font-size: 16px;
}

.intro-strip span {
    color: var(--home-secondary);
    font-size: 13px;
    line-height: 1.5;
}


/* Sections */

.content-section,
.audience-section,
.privacy-section,
.premium-section {
    margin-bottom: 130px;
}

.section-heading {
    max-width: 690px;
    margin-bottom: 48px;
}

.section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.premium-copy h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 55px);
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.privacy-copy > p,
.premium-copy > p,
.final-cta > div > p:last-child {
    margin: 22px 0 0;
    color: var(--home-secondary);
    font-size: 17px;
    line-height: 1.85;
}


/* Feature cards */

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

.feature-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 32px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.feature-card-wide {
    grid-column: 1 / -1;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(300px, 1.1fr);
    grid-template-rows: none;
    align-items: center;
}

.feature-copy {
    padding: 42px;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    margin-bottom: 20px;
    color: var(--home-accent);
    border-radius: 999px;
    background: var(--home-accent-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.feature-copy h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.feature-copy p {
    margin: 18px 0 0;
    color: var(--home-secondary);
    font-size: 15px;
    line-height: 1.85;
}

.feature-list,
.premium-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.premium-list li {
    position: relative;
    padding-left: 24px;
    color: #343c4c;
    font-size: 14px;
    line-height: 1.6;
}

.feature-list li::before,
.premium-list li::before {
    position: absolute;
    top: 0.15em;
    left: 0;
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    color: #ffffff;
    border-radius: 50%;
    background: var(--home-green);
    content: "✓";
    font-size: 10px;
    font-weight: 900;
}

.feature-image {
    align-self: stretch;
    min-height: 480px;
    padding: 34px 34px 0;
    background:
        linear-gradient(
            145deg,
            rgba(227, 237, 255, 0.9),
            rgba(248, 250, 255, 0.72)
        );
}

.feature-image img {
    width: min(350px, 100%);
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: top;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 34px 34px 0 0;
    box-shadow:
        0 28px 54px rgba(49, 67, 110, 0.18);
}

.feature-image-small {
    min-height: 410px;
    padding-top: 30px;
}


/* Audience */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.audience-card {
    padding: 32px;
    border: 1px solid var(--home-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 18px 45px rgba(61, 80, 123, 0.08);

    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
}

.audience-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    color: var(--home-accent);
    border-radius: 17px;
    background: var(--home-accent-soft);
    font-size: 17px;
    font-weight: 900;
}

.audience-card h3 {
    margin: 0;
    font-size: 21px;
}

.audience-card p {
    margin: 14px 0 0;
    color: var(--home-secondary);
    font-size: 14px;
    line-height: 1.8;
}


/* Privacy and Premium */

.privacy-section,
.premium-section {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 70px;
    padding: 64px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 42px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(235, 242, 255, 0.82)
        );
    box-shadow: var(--home-shadow);
}

.privacy-points {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.privacy-points div {
    display: grid;
    gap: 4px;
    padding-left: 18px;
    border-left: 3px solid var(--home-accent);
}

.privacy-points strong {
    font-size: 15px;
}

.privacy-points span {
    color: var(--home-secondary);
    font-size: 13px;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--home-accent);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.privacy-image,
.premium-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.privacy-image img,
.premium-visual img {
    width: min(360px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 38px;
    box-shadow:
        0 30px 68px rgba(50, 68, 111, 0.21);
}

.premium-section {
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(109, 162, 255, 0.24),
            transparent 22rem
        ),
        linear-gradient(
            145deg,
            rgba(250, 252, 255, 0.96),
            rgba(226, 237, 255, 0.9)
        );
}

.premium-list {
    margin-top: 26px;
}

.premium-note {
    font-size: 12px !important;
    line-height: 1.7 !important;
}


/* Final CTA */

.final-cta {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 48px;
    margin-bottom: 90px;
    padding: 54px 58px;
    color: #ffffff;
    border-radius: 36px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.22),
            transparent 19rem
        ),
        linear-gradient(
            135deg,
            #2f74ef,
            #245dd0
        );
    box-shadow:
        0 28px 65px rgba(42, 103, 221, 0.28);
}

.final-cta .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.final-cta > div > p:last-child {
    color: rgba(255, 255, 255, 0.78);
}

.final-cta .button-primary {
    color: var(--home-accent-dark);
    background: #ffffff;
    box-shadow:
        0 14px 30px rgba(21, 57, 121, 0.18);
}

.final-cta .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.11);
}


/* Home footer */

.site-footer {
    padding: 36px 10px 10px;
    border-top: 1px solid var(--home-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand div {
    display: grid;
    gap: 3px;
}

.footer-brand strong {
    font-size: 19px;
}

.footer-brand span {
    color: var(--home-secondary);
    font-size: 12px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.site-footer nav a {
    color: var(--home-secondary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.site-footer nav a:hover {
    color: var(--home-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    color: var(--home-secondary);
    font-size: 11px;
}


/* =========================================================
   Responsive: Tablet
   ========================================================= */

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: auto;
    }

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

    .hero-visual {
        width: min(660px, 100%);
        min-height: 650px;
        margin: 0 auto;
    }

    .intro-strip {
        grid-template-columns: 1fr;
    }

    .intro-strip div + div {
        border-top: 1px solid var(--home-border);
        border-left: none;
    }

    .feature-card-wide {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .privacy-section,
    .premium-section {
        grid-template-columns: 1fr;
        padding: 46px;
    }

    .premium-visual {
        order: 2;
    }

    .final-cta {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   Responsive: Mobile
   ========================================================= */

@media (max-width: 620px) {
    .shell {
        width: min(100% - 24px, 720px);
        width: min(calc(100% - 24px), 720px);
        padding:
            max(24px, env(safe-area-inset-top))
            0
            max(36px, env(safe-area-inset-bottom));
    }

    .card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .home-shell {
        width: min(calc(100% - 24px), 1180px);
    }

    .site-header {
        min-height: 52px;
        margin-bottom: 32px;
    }

    .home-page .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
        font-size: 18px;
    }

    .home-page .brand-name {
        font-size: 22px;
    }

    .hero-section {
        padding-bottom: 58px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 13vw, 52px);
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-actions,
    .final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .final-actions .button {
        width: 100%;
    }

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

    .phone-shot {
        border-radius: 28px;
    }

    .phone-shot-main {
        left: 0;
        width: 58%;
    }

    .phone-shot-side {
        right: 0;
        width: 52%;
    }

    .floating-card {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 14px;
        font-size: 11px;
    }

    .floating-card-private {
        top: 18px;
    }

    .floating-card-album {
        bottom: 28px;
    }

    .intro-strip {
        margin-bottom: 88px;
    }

    .content-section,
    .audience-section,
    .privacy-section,
    .premium-section {
        margin-bottom: 88px;
    }

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

    .section-heading h2,
    .privacy-copy h2,
    .premium-copy h2,
    .final-cta h2 {
        font-size: 35px;
    }

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

    .feature-card-wide {
        grid-column: auto;
    }

    .feature-copy {
        padding: 30px 26px;
    }

    .feature-copy h3 {
        font-size: 23px;
    }

    .feature-image,
    .feature-image-small {
        min-height: 390px;
        padding: 22px 22px 0;
    }

    .audience-card {
        padding: 26px;
    }

    .privacy-section,
    .premium-section {
        gap: 42px;
        padding: 34px 24px;
        border-radius: 30px;
    }

    .privacy-image img,
    .premium-visual img {
        border-radius: 28px;
    }

    .final-cta {
        padding: 38px 26px;
        border-radius: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}


/* =========================================================
   Accessibility and reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .home-page .button:hover {
        transform: none;
    }
}