:root {
    --primary: #386e58;
    --primary-dark: #2d5a48;
    --primary-deep: #214536;
    --primary-light: #eaf4ef;
    --accent: #00b96b;
    --accent-soft: #e8f9f1;

    --dark: #10231b;
    --text: #1f2937;
    --muted: #66736d;
    --light-text: #8a9690;

    --white: #ffffff;
    --surface: #f7faf8;
    --surface-alt: #fbfdfc;
    --surface-dark: #10231b;

    --border: #e3ebe6;
    --border-strong: #d3e1da;
    --border-dark: rgba(255, 255, 255, 0.12);

    --shadow-sm: 0 4px 16px rgba(16, 35, 27, 0.06);
    --shadow-md: 0 14px 35px rgba(16, 35, 27, 0.10);
    --shadow-lg: 0 24px 60px rgba(16, 35, 27, 0.14);
    --shadow-card: 0 18px 45px rgba(16, 35, 27, 0.09);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --container: 1200px;
}


/* =========================================================
   BASE
========================================================= */

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

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 320px;

    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--white);
    color: var(--text);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

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

img,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

a {
    color: inherit;
}

::selection {
    background: rgba(56, 110, 88, 0.18);
    color: var(--dark);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(227, 235, 230, 0.85);

    box-shadow:
        0 2px 18px rgba(16, 35, 27, 0.035);

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    display: block;

    width: auto;
    height: 34px;

    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: #52615a;

    text-decoration: none;

    font-size: 14px;
    font-weight: 550;
    line-height: 1;

    padding: 10px 0;

    transition:
        color 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 1px;

    width: 0;
    height: 2px;

    background: var(--primary);
    border-radius: 999px;

    transition:
        width 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

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


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 112px;
    min-height: 44px;

    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 650;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button:focus-visible {
    outline: 3px solid rgba(0, 185, 107, 0.25);
    outline-offset: 3px;
}

.button-primary {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);

    box-shadow:
        0 7px 18px rgba(56, 110, 88, 0.18);
}

.button-primary:hover {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    box-shadow:
        0 10px 24px rgba(56, 110, 88, 0.24);
}

.button-outline {
    color: var(--primary);
    background: var(--white);
    border-color: #c9d8d0;
}

.button-outline:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
    border-color: #a9c4b7;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    flex-direction: column;
    justify-content: space-between;

    width: 26px;
    height: 20px;

    padding: 0;

    background: transparent;
    border: none;

    cursor: pointer;

    z-index: 1010;
}

.menu-toggle span {
    width: 100%;
    height: 2px;

    background-color: var(--dark);
    border-radius: 999px;

    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(0, 185, 107, 0.25);
    outline-offset: 5px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 96px 0 104px;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(56, 110, 88, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbf9 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -180px;
    top: -140px;

    border-radius: 50%;

    background: rgba(0, 185, 107, 0.05);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -150px;
    bottom: -130px;

    border-radius: 50%;

    background: rgba(56, 110, 88, 0.035);

    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    gap: 72px;

    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    margin: 0 0 18px;
}

.hero-content .eyebrow::before {
    content: "";

    width: 22px;
    height: 2px;

    background: var(--accent);

    border-radius: 999px;
}

.hero-content h1 {
    max-width: 680px;

    margin: 0 0 24px;

    color: var(--dark);

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -0.045em;
}

.hero-description {
    max-width: 610px;

    margin: 0 0 34px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   CARD DISPLAY
========================================================= */

.card-display {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 390px;
}

.payment-card {
    position: relative;

    width: min(100%, 440px);
    height: 275px;

    padding: 30px;

    overflow: hidden;

    border-radius: 22px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(0, 185, 107, 0.35),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #39765e 0%,
            #1e4d3a 52%,
            #102c21 100%
        );

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow:
        0 30px 60px rgba(16, 35, 27, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    transform: rotate(1deg);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.payment-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -110px;
    bottom: -150px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.13);

    box-shadow:
        0 0 0 30px rgba(255, 255, 255, 0.025),
        0 0 0 60px rgba(255, 255, 255, 0.02);

    pointer-events: none;
}

.payment-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    top: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.045);

    pointer-events: none;
}

.payment-card:hover {
    transform: rotate(0deg) translateY(-6px);

    box-shadow:
        0 38px 75px rgba(16, 35, 27, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.card-header,
.card-chip,
.card-number,
.card-footer {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 15px;
    font-weight: 750;

    letter-spacing: 0.08em;
}

.card-chip {
    width: 47px;
    height: 36px;

    margin-top: 8px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #f4f5ec 0%,
            #cfd3c9 100%
        );

    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.12);
}

.card-number {
    margin: 10px 0;

    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;

    font-size: 22px;
    letter-spacing: 2.5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-footer small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-footer strong {
    font-size: 13px;
    font-weight: 550;
    letter-spacing: 0.06em;
}


/* =========================================================
   SOCIAL PROOF
========================================================= */

.social-proof {
    padding: 38px 0;

    background: var(--surface-alt);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-inner {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 22px;
}

.proof-label {
    color: #74817b;

    font-size: 12px;
    font-weight: 600;

    text-align: center;
    letter-spacing: 0.02em;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 42px;

    flex-wrap: wrap;
}

.proof-logo {
    width: auto;
    max-width: 150px;
    height: 38px;

    object-fit: contain;

    opacity: 0.62;

    filter: grayscale(1);

    transition:
        opacity 0.2s ease,
        filter 0.2s ease,
        transform 0.2s ease;
}

.proof-logo:hover {
    opacity: 0.95;

    filter: grayscale(0);

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 104px 0;
}

.section-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading h2 {
    margin: 0 0 16px;

    color: var(--dark);

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.product-card {
    position: relative;

    min-height: 240px;

    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 34px;
    right: 34px;

    height: 3px;

    border-radius: 0 0 999px 999px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

    opacity: 0;

    transition:
        opacity 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: var(--border-strong);

    box-shadow: var(--shadow-md);
}

.product-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 13px;
}

.product-card h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 20px;
    line-height: 1.3;

    font-weight: 750;
}

.product-card p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   JOURNEY / HOW IT WORKS
========================================================= */

.journey {
    position: relative;
    overflow: hidden;

    padding: 104px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0, 185, 107, 0.10),
            transparent 28%
        ),
        var(--surface-dark);
}

.journey::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}

.journey .container {
    position: relative;
    z-index: 1;
}

.journey h2 {
    margin: 0 0 68px;

    text-align: center;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.035em;
}

.steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 34px;
}

.steps article {
    position: relative;

    padding: 0 10px;
}

.steps span {
    display: block;

    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.10);

    font-size: 52px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.04em;
}

.steps h3 {
    margin: 0 0 12px;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 750;
}

.steps p {
    max-width: 310px;

    margin: 0;

    color: #aab8b1;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   SECURITY
========================================================= */

.security-list {
    display: flex;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 14px 20px;

    color: #34453d;

    background: var(--surface-alt);

    border: 1px solid var(--border);
    border-radius: 999px;

    box-shadow:
        0 3px 10px rgba(16, 35, 27, 0.025);

    font-size: 14px;
    font-weight: 650;
}

.security-icon {
    flex-shrink: 0;

    color: var(--accent);
}


/* =========================================================
   BUSINESS SECTION
========================================================= */

.business-section {
    position: relative;
    overflow: hidden;

    padding: 96px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0, 185, 107, 0.08),
            transparent 30%
        ),
        var(--primary-light);
}

.business-section h2 {
    margin: 0 0 16px;

    color: var(--dark);

    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.035em;
}

.business-section p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PARTNER SECTION
========================================================= */

.partner-section {
    padding: 88px 0;

    text-align: center;

    background: var(--white);

    border-top: 1px solid var(--border);
}

.partner-section h2 {
    margin: 0 0 16px;

    color: var(--dark);

    font-size: 30px;
    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -0.025em;
}

.partner-section p {
    max-width: 760px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 58px 0 34px;

    background: #f6f9f7;

    border-top: 1px solid var(--border);
}

.footer-brand h3 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 21px;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.footer-brand p {
    margin: 0;

    color: #65736c;

    font-size: 14px;
}

.footer-links {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px 24px;

    margin: 40px 0;
}

.footer-links a {
    color: #68756f;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);

    transform: translateX(2px);
}

.footer-compliance {
    margin-top: 24px;
    padding-top: 24px;

    border-top: 1px solid var(--border);
}

.legal-disclaimer {
    max-width: 980px;

    margin: 0;

    color: #8b9791;

    font-size: 11px;
    line-height: 1.7;
}

.copyright {
    margin: 24px 0 0;

    color: #8b9791;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .navigation {
        gap: 22px;
    }

    .nav-links {
        gap: 18px;
    }

    .hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);

        gap: 48px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .payment-card {
        max-width: 400px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — 992px
========================================================= */

@media (max-width: 992px) {

    .hero {
        padding: 78px 0 88px;
    }

    .hero-layout {
        grid-template-columns: 1fr;

        gap: 64px;

        text-align: center;
    }

    .hero-content {
        max-width: 720px;

        margin: 0 auto;
    }

    .hero-content h1,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .card-display {
        min-height: 320px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

        gap: 42px;
    }

    .steps article {
        text-align: center;
    }

    .steps p {
        margin-left: auto;
        margin-right: auto;
    }

    .journey::before {
        display: none;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    html {
        scroll-padding-top: 70px;
    }

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

    .brand img {
        height: 31px;
    }

    .menu-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(320px, 88vw);

        height: 100vh;
        height: 100dvh;

        padding:
            94px
            28px
            32px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 28px;

        background: rgba(255, 255, 255, 0.98);

        box-shadow:
            -12px 0 40px rgba(16, 35, 27, 0.12);

        overflow-y: auto;

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        transition:
            right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navigation.is-active {
        right: 0;
    }

    .nav-links {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-links a {
        display: block;

        padding: 15px 0;

        color: var(--dark);

        border-bottom: 1px solid var(--border);

        font-size: 16px;
        font-weight: 600;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .header-actions {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;

        margin-top: auto;
    }

    .header-actions .button {
        width: 100%;
        height: 46px;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform:
            translateY(9px)
            rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform:
            translateY(-9px)
            rotate(-45deg);
    }

    .hero {
        padding: 64px 0 72px;
    }

    .hero-content .eyebrow {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 330px;

        margin: 0 auto;

        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .card-display {
        min-height: 0;

        padding: 10px 0 20px;
    }

    .payment-card {
        width: min(100%, 390px);

        height: 245px;

        padding: 25px;

        border-radius: 19px;
    }

    .card-number {
        font-size: 19px;
    }

    .social-proof {
        padding: 32px 0;
    }

    .proof-logos {
        gap: 28px;
    }

    .section {
        padding: 72px 0;
    }

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

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .product-card {
        padding: 28px;
    }

    .journey {
        padding: 76px 0;
    }

    .journey h2 {
        margin-bottom: 52px;
    }

    .security-list {
        max-width: 480px;

        margin: 0 auto;

        flex-direction: column;
        align-items: stretch;
    }

    .security-item {
        justify-content: flex-start;
    }

    .business-section {
        padding: 72px 0;
    }

    .partner-section {
        padding: 68px 0;
    }

    .footer {
        padding: 48px 0 30px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px 18px;

        margin: 32px 0;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-inner {
        min-height: 64px;
    }

    .brand img {
        height: 29px;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-content .eyebrow {
        font-size: 10px;
        letter-spacing: 0.10em;
    }

    .hero-content h1 {
        font-size: 36px;

        letter-spacing: -0.04em;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .payment-card {
        height: 215px;

        padding: 21px;

        border-radius: 17px;
    }

    .card-header {
        font-size: 13px;
    }

    .card-chip {
        width: 42px;
        height: 32px;
    }

    .card-number {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .card-footer small {
        font-size: 8px;
    }

    .card-footer strong {
        font-size: 11px;
    }

    .proof-logos {
        gap: 22px;
    }

    .proof-logo {
        max-width: 115px;
        height: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .product-card {
        padding: 25px;
    }

    .journey {
        padding: 64px 0;
    }

    .journey h2 {
        font-size: 29px;
    }

    .steps span {
        font-size: 44px;
    }

    .business-section h2 {
        font-size: 29px;
    }

    .business-section p {
        font-size: 15px;
    }

    .partner-section h2 {
        font-size: 27px;
    }

    .partner-section p {
        font-size: 15px;
    }

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

    .legal-disclaimer {
        font-size: 10px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 58px 0 34px;

    background: #f6f9f7;

    border-top: 1px solid var(--border);
}

/* Footer logo */
.footer-brand img {
    display: block;

    width: auto;
    height: 42px;

    max-width: 180px;

    object-fit: contain;
}

.footer-brand h3 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 21px;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.footer-brand p {
    margin: 0;

    color: #65736c;

    font-size: 14px;
}

.footer-links {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px 24px;

    margin: 40px 0;
}

.footer-links a {
    color: #68756f;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);

    transform: translateX(2px);
}

.footer-compliance {
    margin-top: 24px;
    padding-top: 24px;

    border-top: 1px solid var(--border);
}

.legal-disclaimer {
    max-width: 980px;

    margin: 0;

    color: #8b9791;

    font-size: 11px;
    line-height: 1.7;
}

.copyright {
    margin: 24px 0 0;

    color: #8b9791;

    font-size: 11px;
}