/* =========================================================
   ZonGrow — Cloud ERP for Online Sellers
   Shared stylesheet (style.css)
   Modern, brand-aligned, mobile-first.
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
    /* Brand palette (lifted from the ZonGrow wordmark) */
    --c-orange-50:  #fff5ea;
    --c-orange-100: #ffe1c2;
    --c-orange-300: #ffb368;
    --c-orange-500: #ff8a1f;
    --c-orange-600: #f97316;
    --c-orange-700: #c2410c;

    --c-blue-50:   #eef2ff;
    --c-blue-100:  #dbe3ff;
    --c-blue-300:  #8093e0;
    --c-blue-500:  #2a3fb1;
    --c-blue-600:  #1f2f86;
    --c-blue-700:  #15215e;

    --c-green-50:  #e8f9f0;
    --c-green-300: #5fcb96;
    --c-green-500: #1fa66b;
    --c-green-600: #168554;

    /* Neutrals */
    --c-ink-900: #0b1226;
    --c-ink-800: #111a36;
    --c-ink-700: #1e2a4a;
    --c-ink-600: #2f3a5a;
    --c-ink-500: #475069;
    --c-ink-400: #6b7390;
    --c-ink-300: #98a0b8;
    --c-ink-200: #cbd1e0;
    --c-ink-100: #e5e8f1;
    --c-ink-50:  #f4f6fb;
    --c-white:   #ffffff;

    /* Semantic */
    --bg:           var(--c-white);
    --bg-soft:      var(--c-ink-50);
    --bg-dark:      var(--c-ink-900);
    --text:         var(--c-ink-800);
    --text-soft:    var(--c-ink-500);
    --text-muted:   var(--c-ink-400);
    --border:       var(--c-ink-100);
    --border-soft:  #eef0f6;

    --primary:      var(--c-orange-500);
    --primary-600:  var(--c-orange-600);
    --secondary:    var(--c-blue-500);
    --accent:       var(--c-green-500);

    /* Effects */
    --shadow-sm:    0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
    --shadow-md:    0 6px 16px -4px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.05);
    --shadow-lg:    0 24px 48px -12px rgba(15,23,42,.12), 0 4px 12px -2px rgba(15,23,42,.05);
    --shadow-xl:    0 32px 64px -16px rgba(15,23,42,.18);
    --shadow-glow:  0 18px 48px -8px rgba(255,138,31,.45);

    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --gradient-brand: linear-gradient(135deg, #ff8a1f 0%, #2a3fb1 50%, #1fa66b 100%);
    --gradient-warm:  linear-gradient(135deg, #ff8a1f 0%, #ff5a8a 100%);
    --gradient-cool:  linear-gradient(135deg, #2a3fb1 0%, #1fa66b 100%);
    --gradient-hero:  radial-gradient(1200px 600px at 80% -10%, rgba(255,138,31,.18), transparent 60%),
                      radial-gradient(900px 500px at 0% 30%, rgba(42,63,177,.16), transparent 60%),
                      linear-gradient(180deg, #fff8ef 0%, #ffffff 60%);

    /* Layout */
    --container:    1200px;
    --container-sm: 960px;
    --nav-h:        72px;

    /* Motion */
    --t-fast: 160ms cubic-bezier(.4,0,.2,1);
    --t:      280ms cubic-bezier(.4,0,.2,1);
    --t-slow: 480ms cubic-bezier(.4,0,.2,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary); }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip link */
.skip-link {
    position: absolute; left: 12px; top: -100px;
    background: var(--c-ink-900); color: #fff;
    padding: 8px 14px; border-radius: 6px; z-index: 9999;
    transition: top var(--t);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: var(--container-sm); }
.section {
    padding: 96px 0;
    position: relative;
}
.section--tight { padding: 64px 0; }
.section--soft  { background: var(--bg-soft); }
.section--dark  { background: var(--bg-dark); color: #fff; }
.section--dark .section-title h2 { color: #fff; }
.section--dark .section-title p { color: rgba(255,255,255,.72); }
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-title .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--c-orange-50);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c-ink-900);
    margin-bottom: 16px;
}
.section-title p {
    font-size: 18px;
    color: var(--text-soft);
}
.section--dark .section-title .eyebrow {
    color: #ffd9b3;
    background: rgba(255,138,31,.15);
}

/* ---------- 4. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
    user-select: none;
    border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 56px -8px rgba(255,138,31,.55);
}
.btn--secondary {
    background: var(--secondary);
    color: #fff;
}
.btn--secondary:hover { background: var(--c-blue-600); color: #fff; transform: translateY(-2px); }
.btn--ghost {
    background: transparent;
    color: var(--c-ink-900);
    border-color: var(--c-ink-200);
}
.btn--ghost:hover {
    background: var(--c-ink-50);
    color: var(--c-ink-900);
    border-color: var(--c-ink-300);
}
.btn--light {
    background: #fff;
    color: var(--c-ink-900);
}
.btn--light:hover { background: var(--c-ink-50); color: var(--c-ink-900); transform: translateY(-2px); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- 5. Top navigation ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: border-color var(--t), background var(--t);
}
.nav.is-scrolled {
    border-bottom-color: var(--border-soft);
    background: rgba(255,255,255,.95);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink-900);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.nav__logo img { height: 30px; width: auto; }
.nav__logo:hover { color: var(--c-ink-900); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__link {
    position: relative;
    padding: 10px 14px;
    color: var(--c-ink-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
}
.nav__link:hover { color: var(--primary); background: var(--c-orange-50); }
.nav__link.is-active { color: var(--primary); }
.nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav__cta {
    margin-left: 8px;
}
.nav__burger {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 8px;
    color: var(--c-ink-900);
}
.nav__burger:hover { background: var(--c-ink-50); }
.nav__burger svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
    .nav__links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border-soft);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t), opacity var(--t);
    }
    .nav__links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav__link { padding: 14px 16px; font-size: 16px; }
    .nav__link.is-active::after { display: none; }
    .nav__cta { margin: 8px 0 0; }
    .nav__burger { display: flex; }
}

/* ---------- 6. Hero ---------- */
.hero {
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-ink-700);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.hero__badge-pill {
    background: var(--gradient-warm);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
}
.hero__title {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--c-ink-900);
    margin-bottom: 20px;
}
.hero__title .grad {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub {
    font-size: 19px;
    color: var(--text-soft);
    max-width: 560px;
    margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--c-ink-500);
    font-size: 14px;
}
.hero__trust strong { color: var(--c-ink-900); font-weight: 700; }
.hero__trust-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); margin-right: 6px; vertical-align: middle;
}
.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin-left: auto;
}
.hero__visual::before {
    content: "";
    position: absolute;
    inset: -8%;
    background: var(--gradient-brand);
    filter: blur(80px);
    opacity: .25;
    z-index: -1;
    border-radius: 50%;
}
.hero__visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink-700);
    border: 1px solid var(--border-soft);
}
.hero__card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--c-orange-50);
    color: var(--primary);
    display: grid; place-items: center;
}
.hero__card--tl { top: 4%; left: -8%; animation: floatY 6s ease-in-out infinite; }
.hero__card--br { bottom: 6%; right: -6%; animation: floatY 6s ease-in-out infinite reverse; animation-delay: -2s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
    .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { max-width: 480px; margin: 0 auto; }
    .hero__card--tl { left: 0; }
    .hero__card--br { right: 0; }
}
@media (max-width: 480px) {
    .hero__card { font-size: 12px; padding: 10px 12px; }
    .hero__card-icon { width: 28px; height: 28px; }
}

/* ---------- 7. Logo strip / trusted by ---------- */
.logos {
    background: #fff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 32px 0;
}
.logos__title {
    text-align: center;
    color: var(--c-ink-400);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.logos__row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
}
.logos__item {
    height: 48px;
    width: 100%;
    display: grid;
    place-items: center;
    filter: grayscale(0.2);
    opacity: 0.85;
    transition: filter var(--t), opacity var(--t), transform var(--t);
}
.logos__item:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.logos__item img { max-height: 40px; max-width: 100%; width: auto; height: auto; }
@media (max-width: 900px) { .logos__row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .logos__row { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 8. Feature grid ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--t);
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature:hover::before { opacity: 1; }
.feature__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--c-orange-50);
    color: var(--primary);
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.feature__icon--blue   { background: var(--c-blue-50);   color: var(--secondary); }
.feature__icon--green  { background: var(--c-green-50);  color: var(--accent); }
.feature__icon--dark   { background: var(--c-ink-50);    color: var(--c-ink-700); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-ink-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.feature p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
}
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; gap: 16px; } .feature { padding: 22px; } }

/* ---------- 9. Two-column (image + text) blocks ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--c-ink-50);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--c-ink-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.split__content p {
    font-size: 17px;
    color: var(--text-soft);
    margin-bottom: 16px;
}
.split__list { margin-top: 24px; display: grid; gap: 14px; }
.split__list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--c-ink-700);
    font-size: 15px;
}
.split__check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--c-green-50);
    color: var(--accent);
    display: grid; place-items: center;
    margin-top: 2px;
}
.split__check svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse > :first-child { order: 0; }
}

/* ---------- 10. Stats strip ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat__num {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.stat__label {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ---------- 11. Integration grid ---------- */
.int-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.int-tab {
    padding: 12px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--c-ink-700);
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--border-soft);
    transition: all var(--t-fast);
}
.int-tab:hover { border-color: var(--c-ink-200); color: var(--c-ink-900); }
.int-tab.is-active {
    background: var(--c-ink-900);
    color: #fff;
    border-color: var(--c-ink-900);
}
.int-panel { display: none; }
.int-panel.is-active { display: block; animation: fadeIn 400ms ease; }
.int-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.int-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 16px;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    text-align: center;
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.int-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-ink-200);
}
.int-card img {
    width: 56px; height: 56px;
    object-fit: contain;
}
.int-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-ink-700);
}
@media (max-width: 960px) { .int-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .int-grid { grid-template-columns: repeat(3, 1fr); } .int-card { padding: 16px 8px; } .int-card img { width: 44px; height: 44px; } }

/* ---------- 12. Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.plan {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
    background: var(--c-ink-900);
    color: #fff;
    border-color: var(--c-ink-900);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan--featured .plan__name { color: #fff; }
.plan--featured .plan__desc { color: rgba(255,255,255,.7); }
.plan--featured .plan__price { color: #fff; }
.plan--featured .plan__price small { color: rgba(255,255,255,.6); }
.plan--featured .plan__feature { color: rgba(255,255,255,.85); }
.plan--featured .plan__feature svg { color: var(--c-green-300); }
.plan__ribbon {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-warm);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px; font-weight: 700;
    border-radius: 999px;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}
.plan__name {
    font-size: 20px; font-weight: 700;
    color: var(--c-ink-900);
    margin-bottom: 6px;
}
.plan__desc {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 24px;
    min-height: 40px;
}
.plan__price {
    font-size: 40px; font-weight: 800;
    color: var(--c-ink-900);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.plan__price small {
    font-size: 15px; font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0;
}
.plan__cycle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}
.plan__features {
    flex: 1;
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.plan__feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px;
    color: var(--c-ink-700);
}
.plan__feature svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.plan__cta { margin-top: 16px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 16px; } .plan--featured { transform: none; } .plan--featured:hover { transform: translateY(-4px); } }

/* ---------- 13. Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column;
    position: relative;
}
.testimonial__quote-mark {
    position: absolute;
    top: 12px; right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    line-height: 1;
    color: var(--c-orange-50);
    user-select: none;
}
.testimonial__quote {
    color: var(--c-ink-700);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
    position: relative;
}
.testimonial__person {
    display: flex; align-items: center; gap: 12px;
}
.testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial__name { font-weight: 700; color: var(--c-ink-900); font-size: 15px; }
.testimonial__role { color: var(--text-soft); font-size: 13px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq__item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t-fast);
}
.faq__item[open] { border-color: var(--c-ink-200); box-shadow: var(--shadow-sm); }
.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--c-ink-900);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: "";
    width: 14px; height: 14px;
    border-right: 2px solid var(--c-ink-500);
    border-bottom: 2px solid var(--c-ink-500);
    transform: rotate(45deg);
    transition: transform var(--t-fast);
    margin-right: 4px;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a {
    padding: 0 22px 22px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- 15. CTA banner ---------- */
.cta {
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(255,255,255,.18), transparent 60%),
        var(--gradient-brand);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(400px 200px at 10% 100%, rgba(255,255,255,.12), transparent 60%);
    pointer-events: none;
}
.cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
}
.cta p {
    font-size: 18px;
    color: rgba(255,255,255,.9);
    max-width: 580px;
    margin: 0 auto 28px;
    position: relative;
}
.cta__actions {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    position: relative;
}
@media (max-width: 540px) { .cta { padding: 48px 24px; } }

/* ---------- 16. Footer ---------- */
.footer {
    background: var(--c-ink-900);
    color: #cbd1e0;
    padding: 80px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer__brand {
    display: flex; flex-direction: column; gap: 16px;
}
.footer__logo {
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    display: inline-flex;
    width: max-content;
}
.footer__logo img { height: 30px; width: auto; }
.footer__about {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}
.footer__col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--primary); }
.footer__contact-row {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
}
.footer__contact-row svg {
    width: 18px; height: 18px;
    color: var(--primary);
    flex-shrink: 0; margin-top: 2px;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    display: grid; place-items: center;
    transition: background var(--t-fast), color var(--t-fast);
}
.footer__socials a:hover { background: var(--primary); color: #fff; }
.footer__socials svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- 17. Page hero (interior pages) ---------- */
.page-hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 56px;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--c-ink-900);
    margin-bottom: 16px;
    max-width: 760px;
}
.page-hero h1 .grad {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero p {
    font-size: 19px;
    color: var(--text-soft);
    max-width: 640px;
}
.page-hero__crumbs {
    display: flex; gap: 8px; align-items: center;
    font-size: 13px; color: var(--c-ink-400);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.page-hero__crumbs a:hover { color: var(--primary); }
.page-hero__crumbs span { color: var(--c-ink-200); }

/* ---------- 18. Forms (contact page) ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: grid; gap: 6px; }
.form__label {
    font-size: 13px; font-weight: 600;
    color: var(--c-ink-700);
    text-transform: uppercase; letter-spacing: .06em;
}
.form__input, .form__textarea, .form__select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--c-ink-900);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,138,31,.12);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: 13px; color: var(--text-muted); }
.form__success {
    display: none;
    padding: 16px 18px;
    background: var(--c-green-50);
    color: var(--c-green-600);
    border: 1px solid var(--c-green-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
}
.form.is-sent .form__success { display: block; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- 19. Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Only hide .reveal elements when JS has explicitly opted in. This keeps content
   visible if JS fails, is slow, or for crawlers and full-page screenshots. */
html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
}
html.js .reveal.is-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html.js .reveal { opacity: 1; transform: none; }
}

/* ---------- 20. Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 24px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-6 { margin-top: 24px !important; }
.mt-8 { margin-top: 32px !important; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
