:root {
    --pc-green: #0abb6d;
    --pc-green-dark: #079457;
    --pc-green-light: #e9fbf3;
    --pc-green-soft: #f4fcf8;
    --pc-black: #101513;
    --pc-text: #27312d;
    --pc-muted: #68736e;
    --pc-border: #e4ebe7;
    --pc-white: #ffffff;
    --pc-bg: #ffffff;
    --pc-bg-alt: #f7faf8;
    --pc-shadow-sm: 0 4px 18px rgba(16, 21, 19, 0.06);
    --pc-shadow-md: 0 14px 40px rgba(16, 21, 19, 0.09);
    --pc-shadow-lg: 0 25px 70px rgba(16, 21, 19, 0.14);
    --pc-radius-sm: 10px;
    --pc-radius-md: 16px;
    --pc-radius-lg: 24px;
    --pc-radius-xl: 32px;
    --pc-container: 1180px;
    --pc-header-height: 76px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    min-width: 320px;
    background: var(--pc-bg);
    color: var(--pc-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
}

.container {
    width: min(calc(100% - 40px), var(--pc-container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--pc-header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(228, 235, 231, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    flex: 1;
}

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

.nav-links a {
    position: relative;
    color: #3f4945;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--pc-green);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--pc-green-dark);
}

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

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

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

.button-primary {
    color: var(--pc-white);
    background: var(--pc-green);
    box-shadow: 0 8px 20px rgba(10, 187, 109, 0.2);
}

.button-primary:hover {
    background: var(--pc-green-dark);
    box-shadow: 0 12px 26px rgba(10, 187, 109, 0.25);
}

.button-outline {
    color: var(--pc-black);
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
}

.button-outline:hover {
    color: var(--pc-green-dark);
    border-color: #b9dfcd;
    background: var(--pc-green-soft);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--pc-border);
    border-radius: 10px;
    background: var(--pc-white);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background: var(--pc-black);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 78% 40%, rgba(10, 187, 109, 0.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -160px;
    border-radius: 50%;
    background: rgba(10, 187, 109, 0.05);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 530px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    align-items: center;
    gap: 70px;
}

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

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pc-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
}

.eyebrow::before,
.section-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 20px;
    background: var(--pc-green);
}

.hero h1 {
    max-width: 700px;
    margin-top: 20px;
    color: var(--pc-black);
    font-size: clamp(44px, 5.1vw, 72px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.hero-description {
    max-width: 620px;
    margin-top: 25px;
    color: var(--pc-muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-buttons .button {
    min-width: 132px;
}

.hero-note {
    max-width: 620px;
    margin-top: 20px;
    color: #7a8580;
    font-size: 12px;
    line-height: 1.65;
}

.card-display {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-display::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: var(--pc-green-light);
}

.card-display::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(10, 187, 109, 0.15);
    border-radius: 50%;
}

.payment-card {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    aspect-ratio: 1.586 / 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 24px;
    color: var(--pc-white);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 25%),
        linear-gradient(135deg, #111c17 0%, #183a2b 55%, #0b9d5c 100%);
    box-shadow: 0 30px 60px rgba(16, 21, 19, 0.23);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: rotate(1deg) translateY(-5px);
}

.payment-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -120px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.payment-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -55px;
    bottom: -95px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.card-chip {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 37px;
    margin-top: 10px;
    border-radius: 7px;
    background:
        linear-gradient(90deg, transparent 31%, rgba(0, 0, 0, 0.18) 32%, transparent 34%),
        linear-gradient(0deg, transparent 45%, rgba(0, 0, 0, 0.18) 46%, transparent 49%),
        #d9c995;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: #ffffff;
    font-family: "Courier New", monospace;
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.card-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr;
    gap: 18px;
    margin-top: 20px;
}

.card-footer div {
    min-width: 0;
}

.card-footer small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.card-footer strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-proof {
    border-top: 1px solid var(--pc-border);
    border-bottom: 1px solid var(--pc-border);
    background: var(--pc-white);
}

.proof-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.proof-label {
    max-width: 430px;
    color: #65716c;
    font-size: 13px;
    line-height: 1.55;
}

.proof-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.proof-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f5c56;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.proof-icon svg {
    color: var(--pc-green-dark);
    flex-shrink: 0;
}

.section {
    padding: 115px 0;
}

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

.section-heading h2,
.business-section h2,
.partner-section h2 {
    margin-top: 16px;
    color: var(--pc-black);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.section-heading p,
.business-section p,
.partner-section p {
    max-width: 650px;
    margin-top: 17px;
    color: var(--pc-muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.product-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: var(--pc-green-soft);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: #cde9dc;
    box-shadow: var(--pc-shadow-md);
}

.product-card:hover::after {
    transform: scale(1.5);
}

.card-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    color: var(--pc-green-dark);
    background: var(--pc-green-light);
}

.card-icon svg {
    width: 25px;
    height: 25px;
}

.card-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 9px;
    color: var(--pc-green-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.product-card h3 {
    position: relative;
    z-index: 1;
    color: var(--pc-black);
    font-size: 19px;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.product-card p {
    position: relative;
    z-index: 1;
    margin-top: 13px;
    color: var(--pc-muted);
    font-size: 14px;
    line-height: 1.7;
}

.journey {
    padding: 115px 0;
    background: var(--pc-bg-alt);
    border-top: 1px solid var(--pc-border);
    border-bottom: 1px solid var(--pc-border);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.step {
    position: relative;
    padding: 0 30px 0 0;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 30px;
    width: calc(100% - 90px);
    height: 1px;
    background: #dbe5e0;
    transform: translateX(100%);
}

.step-number {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid #cde5d9;
    border-radius: 50%;
    color: var(--pc-green-dark);
    background: var(--pc-white);
    font-size: 10px;
    font-weight: 800;
}

.step h3 {
    color: var(--pc-black);
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.step p {
    max-width: 245px;
    margin-top: 11px;
    color: var(--pc-muted);
    font-size: 14px;
    line-height: 1.7;
}

.security-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.security-item {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 17px;
    padding: 25px;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-md);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
}

.security-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--pc-green-dark);
    background: var(--pc-green-light);
}

.security-item span {
    color: var(--pc-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-section {
    background: var(--pc-bg-alt);
    border-top: 1px solid var(--pc-border);
}

.faq-heading {
    max-width: 650px;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 105px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-md);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
}

.faq-intro-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    color: var(--pc-green-dark);
    background: var(--pc-green-light);
}

.faq-intro strong {
    display: block;
    color: var(--pc-black);
    font-size: 14px;
    font-weight: 750;
}

.faq-intro p {
    margin-top: 5px;
    color: var(--pc-muted);
    font-size: 12px;
    line-height: 1.6;
}

.faq-support-link {
    display: inline-block;
    margin-top: 13px;
    color: var(--pc-green-dark);
    font-size: 12px;
    font-weight: 750;
}

.faq-support-link:hover {
    text-decoration: underline;
}

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

.faq-item {
    border-bottom: 1px solid var(--pc-border);
}

.faq-question {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: var(--pc-black);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 700;
}

.faq-number {
    min-width: 28px;
    color: var(--pc-green-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.faq-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--pc-border);
    border-radius: 50%;
    color: var(--pc-green-dark);
    background: var(--pc-white);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--pc-green-light);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer p {
    max-width: 680px;
    padding: 0 60px 25px 50px;
    color: var(--pc-muted);
    font-size: 14px;
    line-height: 1.75;
}

.business-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: var(--pc-white);
    background:
        radial-gradient(circle at 85% 50%, rgba(10, 187, 109, 0.22), transparent 30%),
        #101a15;
}

.business-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

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

.business-section .section-eyebrow {
    color: #62d9a3;
}

.business-section .section-eyebrow::before {
    background: #62d9a3;
}

.business-section h2 {
    max-width: 700px;
    color: var(--pc-white);
}

.business-section p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.67);
}

.business-section .button {
    margin-top: 27px;
}

.partner-section {
    padding: 100px 0;
    text-align: center;
    background: var(--pc-green-soft);
}

.partner-section .section-eyebrow {
    justify-content: center;
}

.partner-section h2 {
    max-width: 700px;
    margin-inline: auto;
}

.partner-section p {
    max-width: 600px;
    margin-inline: auto;
}

.partner-section .button {
    margin-top: 25px;
}

.footer {
    padding: 70px 0 30px;
    color: rgba(255, 255, 255, 0.7);
    background: #0c1210;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(400px, 1fr);
    gap: 80px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: auto;
    height: 43px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    align-content: start;
    gap: 13px 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--pc-green);
}

.footer-compliance {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-disclaimer {
    max-width: 1000px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 11px;
    line-height: 1.75;
}

.copyright {
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(42px, 5.5vw, 62px);
    }

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

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 35px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .faq-wrapper {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    :root {
        --pc-header-height: 68px;
    }

    .container {
        width: min(calc(100% - 32px), var(--pc-container));
    }

    .site-header {
        height: var(--pc-header-height);
    }

    .menu-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: var(--pc-header-height);
        left: 0;
        right: 0;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid transparent;
        box-shadow: 0 15px 35px rgba(16, 21, 19, 0.08);
        transition:
            max-height 0.3s ease,
            padding 0.3s ease,
            border-color 0.3s ease;
    }

    .navigation.active,
    .navigation.open,
    .navigation.is-open {
        max-height: calc(100vh - var(--pc-header-height));
        padding: 20px;
        border-bottom-color: var(--pc-border);
        overflow-y: auto;
    }

    .nav-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 4px;
        border-bottom: 1px solid var(--pc-border);
        font-size: 15px;
    }

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

    .header-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding-top: 16px;
    }

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

    .hero {
        padding: 80px 0 75px;
    }

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

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

    .hero h1 {
        max-width: 700px;
        font-size: clamp(42px, 8vw, 62px);
    }

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

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

    .proof-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 0;
    }

    .proof-logos {
        justify-content: flex-start;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
        max-width: 500px;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--pc-container));
    }

    .brand img {
        height: 37px;
    }

    .hero {
        padding: 65px 0 60px;
    }

    .hero h1 {
        margin-top: 17px;
        font-size: clamp(37px, 11vw, 52px);
        letter-spacing: -0.045em;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-note {
        font-size: 11px;
    }

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

    .card-display::before {
        width: 280px;
        height: 280px;
    }

    .card-display::after {
        width: 225px;
        height: 225px;
    }

    .payment-card {
        width: calc(100% - 12px);
        padding: 20px;
        border-radius: 18px;
        transform: rotate(2deg);
    }

    .card-chip {
        width: 40px;
        height: 30px;
    }

    .card-number {
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    .card-footer {
        gap: 10px;
        margin-top: 12px;
    }

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

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

    .proof-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 16px 10px;
    }

    .proof-icon {
        font-size: 11px;
    }

    .section,
    .journey {
        padding: 75px 0;
    }

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

    .section-heading h2,
    .business-section h2,
    .partner-section h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .section-heading p,
    .business-section p,
    .partner-section p {
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        min-height: 275px;
        padding: 25px;
    }

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

    .step {
        padding: 0;
    }

    .step-number {
        margin-bottom: 17px;
    }

    .step h3 {
        font-size: 17px;
    }

    .step p {
        max-width: none;
        font-size: 13px;
    }

    .security-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .security-item {
        min-height: 100px;
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }

    .faq-intro {
        padding: 20px;
    }

    .faq-toggle {
        min-height: 72px;
        gap: 12px;
        padding: 17px 0;
    }

    .faq-question-content {
        gap: 13px;
        font-size: 13px;
        line-height: 1.45;
    }

    .faq-number {
        min-width: 24px;
    }

    .faq-icon {
        width: 31px;
        height: 31px;
    }

    .faq-icon svg {
        width: 15px;
        height: 15px;
    }

    .faq-answer p {
        padding: 0 0 22px 37px;
        font-size: 13px;
    }

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

    .business-section .button,
    .partner-section .button {
        width: 100%;
    }

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

    .footer {
        padding: 55px 0 25px;
    }

    .footer-grid {
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }

    .footer-links a {
        font-size: 12px;
    }

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

@media (max-width: 380px) {
    .hero h1 {
        font-size: 35px;
    }

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

    .payment-card {
        padding: 16px;
    }

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

    .card-chip {
        width: 35px;
        height: 26px;
    }

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

    .card-footer {
        gap: 7px;
    }

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

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

    .proof-logos {
        grid-template-columns: 1fr;
    }
}

@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;
    }
}