.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.hero-showcase .card-mock {
    max-width: 360px;
}

.card-mock {
    background: #fff;
    border-radius: 32px;
    padding: 1.75rem;
    box-shadow: 0 25px 70px rgba(125, 4, 150, 0.25);
    border: 1px solid rgba(12, 12, 14, 0.08);
}

.card-mock--primary {
    background: linear-gradient(135deg, #9833eb, #1b1f30);
    color: #fff;
}

.card-mock--secondary {
    display: grid;
    gap: 0.75rem;
}

.card-mock__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-mock__balance {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-mock__chips {
    display: flex;
    gap: 0.5rem;
}

.card-mock__chips span {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(154, 10, 221, 0.15);
    border: 1px solid rgba(119, 7, 170, 0.3);
    font-size: 0.85rem;
}

.card-mock__stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-mock__stat strong {
    font-size: 1.6rem;
}

.card-mock__footer {
    display: flex;
    gap: 0.75rem;
    font-weight: 600;
}
/*
    Easy Merchant Solutions
    Single stylesheet for all pages. Uses CSS custom properties, flexbox, and grid.
*/

:root {
    --color-dark: #120f1c;
    --color-mid: #2b1f3b;
    --color-primary: #a855f7;
    --color-primary-dark: #7c3aed;
    --color-accent: #ffb4c8;
    --color-light: #fcfaff;
    --color-muted: #a097b5;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-lg: 0 35px 80px rgba(8, 17, 34, 0.15);
    --shadow-md: 0 20px 40px rgba(8, 17, 34, 0.12);
    --shadow-sm: 0 12px 24px rgba(8, 17, 34, 0.08);
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.container {
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--color-dark);
    margin-top: 0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 10, 25, 0.12);
}

.btn-outline {
    border: 1px solid rgba(18, 15, 28, 0.12);
    color: var(--color-dark);
    background: #fff;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-link {
    font-weight: 600;
}


.site-header {
    position: sticky;
    top: 0;
    background: rgba(252, 250, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(18, 15, 28, 0.06);
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(18, 15, 28, 0.12);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1rem;
}

.logo-text > span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
    padding: 0.35rem 0;
}

.primary-nav .nav-cta {
    margin-left: 0.5rem;
}

.primary-nav .nav-cta .btn {
    padding: 0.6rem 1.4rem;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
}


.hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 90vh;
    color: #0c0b10;
    background: linear-gradient(140deg, #07090f 0%, #141629 35%, #f8fafc 80%);
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), rgba(7, 9, 15, 0.9));
}


.hero .container {
    position: relative;
    color: inherit;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 3rem;
    align-items: center;
}

.hero-primary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content {
    max-width: 640px;
    background: rgba(255, 255, 255, 0.82);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(12, 12, 14, 0.2);
}

.hero-content .eyebrow {
    color: var(--color-muted);
}

.hero-content h1,
.hero-content p {
    color: var(--color-dark);
}

.hero-logos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-weight: 600;
    color: rgba(12, 12, 14, 0.6);
}

.hero-logos li {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(12, 12, 14, 0.08);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    margin-top: 3rem;
}

.hero-stats li {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(12, 12, 14, 0.08);
    color: var(--color-dark);
}

.counter,
.hero-stats strong {
    font-size: 2rem;
    font-weight: 700;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services {
    padding: 5rem 0;
    background: var(--color-light);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(18, 15, 28, 0.06);
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(18, 15, 28, 0.08);
}

.card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: translateY(-4px) scale(1.05);
}

.features,
.partner-cta,
.testimonials,
.team-preview,
.contact-cta,
.metrics-strip,
.why-us,
.how-it-works,
.feature-suite,
.trust-strip,
.faq,
.cta-strip,
.page-hero,
.service-detail,
.partner-description,
.benefits,
.faq,
.cta,
.story,
.metrics,
.team,
.contact-page,
.legal-page {
    padding: 5rem 0;
}

.feature-card {
    background: linear-gradient(160deg, #24152f, #130a1c);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 25px 60px rgba(15, 10, 25, 0.35);
}

.feature-card img {
    border-radius: var(--radius-md);
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1rem;
}

.insight-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.insight-list strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.35rem;
}

.icon-sm {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    background: rgba(168, 85, 247, 0.14);
    box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.2);
}

.insights figure,
.governance figure {
    margin: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.insights figcaption,
.governance figcaption {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list strong {
    font-size: 2rem;
}

.partner-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-mid));
    color: #fff;
    text-align: center;
}

.logo-band {
    background: #fff;
    padding: 2rem 0;
    border-top: 1px solid rgba(8, 17, 34, 0.05);
    border-bottom: 1px solid rgba(8, 17, 34, 0.05);
}

.logo-band__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo-band img {
    max-width: 140px;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-band img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.testimonial-slider {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(18, 15, 28, 0.06);
    box-shadow: none;
    overflow: hidden;
}

.testimonial-slider .slides {
    display: flex;
    transform: translateX(0);
    transition: transform 0.6s ease;
    will-change: transform;
}

.slide {
    opacity: 0;
    transition: opacity 0.4s ease;
    flex: 0 0 100%;
    padding-inline: 1rem;
}

.slide.active {
    opacity: 1;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(18, 15, 28, 0.08);
    color: var(--color-dark);
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
}

.slider-control.prev { left: 1rem; }
.slider-control.next { right: 1rem; }

.team-grid,
.benefits-grid,
.metrics-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.team-card img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-note {
    margin-top: 1rem;
    color: var(--color-muted);
}

.contact-card,
.highlight-card,
.values-card {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.cta-inline {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.accordion button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
}

.accordion-panel {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(8, 17, 34, 0.1);
}

.accordion-item + .accordion-item {
    border-top: 1px solid rgba(8, 17, 34, 0.08);
}

.metrics-strip {
    background: #f3ecff;
    color: var(--color-dark);
    padding: 3rem 0;
}

.metrics-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.metrics-grid .counter {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.why-grid,
.how-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card,
.how-card,
.feature-card--mini {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(18, 15, 28, 0.06);
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover,
.how-card:hover,
.feature-card--mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(18, 15, 28, 0.08);
}

.why-card img,
.feature-card--mini img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.how-card .how-step {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.14);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card--mini a {
    font-weight: 600;
}

.trust-strip {
    background: var(--color-light);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.trust-logos img {
    max-height: 80px;
    width: auto;
    opacity: 0.75;
    filter: grayscale(1);
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.03);
}

.faq-list article {
    border-bottom: 1px solid rgba(8, 17, 34, 0.08);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-q:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

.faq-a {
    padding-bottom: 1rem;
}

.faq-a[hidden] {
    display: none;
}

.cta-strip {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 35px 80px rgba(15, 10, 25, 0.28);
}

.cta-strip .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
}

.reveal.in-view {
    opacity: 1;
    transform: none;
    transition: opacity 360ms ease, transform 360ms ease;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-showcase .card-mock {
        width: min(300px, 100%);
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .hero-stats li {
        text-align: center;
    }

    .section-heading {
        text-align: left;
    }

    .split,
    .page-hero--split .container,
    .legal-grid,
    .footer-grid,
    .contact-details {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        gap: 1.5rem;
    }

    .page-hero--split .container {
        text-align: left;
    }

    .hero-figure img {
        height: 280px;
        object-fit: cover;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-showcase {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-showcase .card-mock {
        width: 100%;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }

    .btn,
    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-heading {
        text-align: center;
    }

    .footer-base {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip .container {
        grid-template-columns: 1fr;
    }

    .logo-band__list,
    .trust-logos {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: #100b18;
    color: #dcd7ef;
}

.site-footer .container {
    padding: 3rem 0 2rem;
}

.site-footer h3,
.site-footer .logo,
.site-footer .logo span {
    color: #fff;
}

.site-footer p,
.site-footer li {
    color: #d7dff5;
}

.site-footer a {
    color: #fff;
    opacity: 0.9;
}

.site-footer .logo img {
    box-shadow: none;
}

.footer-callout {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-callout h3 {
    margin-bottom: 0.5rem;
}

.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.newsletter .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.newsletter button {
    border: none;
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Contact page */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(8, 17, 34, 0.1);
}

.contact-form .input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form small {
    color: var(--color-muted);
}

/* Legal pages */
.legal-page {
    background: var(--color-light);
}

.legal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.page-hero {
    background: var(--color-light);
    text-align: center;
}

.page-hero--split .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.hero-figure {
    margin: 0;
}

.hero-figure img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.icon-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.metrics-grid article,
.benefits-grid article,
.footer-grid div,
.footer-grid nav {
    background: #fff0;
}

.metrics-grid article {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metrics-grid strong {
    font-size: 1.8rem;
}

.split.reverse > :first-child {
    order: 2;
}

.split.reverse > :last-child {
    order: 1;
}

/* Responsive navigation */
@media (max-width: 768px) {
    .primary-nav ul {
        position: absolute;
        inset-inline: 0;
        top: 64px;
        background: #fff;
        padding: 1rem;
        flex-direction: column;
        box-shadow: var(--shadow-md);
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .primary-nav ul.open {
        transform: scaleY(1);
    }

    .primary-nav li {
        width: 100%;
    }

    .primary-nav .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .primary-nav .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: inline-flex;
        border: 1px solid rgba(8, 17, 34, 0.2);
        border-radius: 999px;
        padding: 0.4rem 1rem;
        background: none;
        cursor: pointer;
    }

    .site-header .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 5rem;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-cta a {
        width: 100%;
    }

    .hero-logos {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .card-grid,
    .why-grid,
    .how-grid,
    .features-grid,
    .feature-list,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        padding: 1.5rem 1.25rem 3.5rem;
    }

    .slider-control {
        top: auto;
        bottom: 0.75rem;
        width: 42px;
        height: 42px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}
