/* ===========================================================================
   Atoor.id — landing v2, built from scratch.
   Colorful & friendly SaaS: warm off-white canvas, violet brand, candy
   accents (coral/teal/amber/pink/sky), chunky radii, playful CSS-built
   product mockups. No frameworks, no build step.

   NOTE: the CSS custom properties + header/footer/btn class names below are
   shared with about/contact/terms/privacy/404 pages — keep them stable.
   =========================================================================== */

:root {
    --primary:      #6d5efc;
    --primary-dark: #5546d6;
    --primary-light:#8b7dff;
    --primary-50:   #f0edff;
    --primary-100:  #e2ddff;
    --success:      #12b76a;

    --coral:  #ff6b57;   --coral-50:  #fff0ed;
    --teal:   #14c6a4;   --teal-50:   #e4faf4;
    --amber:  #ffb020;   --amber-50:  #fff6e4;
    --pink:   #ff5da2;   --pink-50:   #ffecf5;
    --sky:    #3aa0ff;   --sky-50:    #e8f3ff;

    --navy-900: #1b1741;
    --slate-700:#413c63;
    --slate-600:#5c5680;
    --slate-500:#7b769b;
    --slate-400:#a4a0bd;
    --slate-200:#e7e4f2;
    --slate-100:#f0eef8;
    --slate-50: #f8f7fd;

    --bg-white: #ffffff;
    --bg-soft:  #faf8ff;
    --bg-cream: #fdfbf7;
    --border:   #ece9f6;
    --border-light: #f2f0fa;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 8px rgba(27, 23, 65, 0.06);
    --shadow-md: 0 12px 32px -14px rgba(27, 23, 65, 0.16);
    --shadow-lg: 0 32px 70px -30px rgba(27, 23, 65, 0.3);
    --shadow-primary: 0 14px 30px -10px rgba(109, 94, 252, 0.5);

    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { background: var(--bg-white); color: var(--slate-700); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy-900); letter-spacing: -0.02em; font-weight: 700; line-height: 1.12; overflow-wrap: break-word; }
a { color: var(--primary); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.padding-lg { padding: clamp(72px, 9vw, 120px) 0; }
.bg-soft { background: var(--bg-soft); }

/* ---------------------------------------------------------------- header */
header { position: fixed; inset: 0 0 auto 0; z-index: 2000; padding: 14px 0; transition: padding 0.25s ease; }
nav { display: flex; justify-content: space-between; align-items: center; height: 62px; background: rgba(255,255,255,0.8); backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); border: 1px solid var(--border); border-radius: 999px; padding: 0 0.7rem 0 1.4rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s ease; }
header.scrolled nav { box-shadow: var(--shadow-md); }
.nav-left, .nav-right { display: flex; align-items: center; }
.nav-left { gap: 2.2rem; }
.logo-brand-container { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 30px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 1.7rem; }
.nav-links a { text-decoration: none; color: var(--slate-600); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-right { gap: 1.1rem; }
.nav-btn-link { text-decoration: none; color: var(--slate-700); font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
.nav-btn-link:hover { color: var(--primary); }
.nav-toggle { display: none; background: var(--primary-50); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; color: var(--primary); }
.nav-toggle i { width: 20px; height: 20px; }

/* --------------------------------------------------------------- buttons */
.btn { text-decoration: none; padding: 0.8rem 1.55rem; border-radius: 999px; font-weight: 700; font-family: var(--font-heading); font-size: 0.95rem; cursor: pointer; border: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s; }
.btn i { width: 17px; height: 17px; }
.btn-primary { background: var(--navy-900); color: #fff; box-shadow: 0 12px 26px -12px rgba(27,23,65,0.55); }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary); box-shadow: var(--shadow-primary); }
.btn-accent { background: linear-gradient(120deg, var(--primary), var(--pink) 140%); color: #fff; box-shadow: var(--shadow-primary); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(109,94,252,0.6); }
.btn-outline { background: #fff; border: 1.5px solid var(--slate-200); color: var(--navy-900); }
.btn-outline:hover { border-color: var(--primary-light); color: var(--primary-dark); background: var(--primary-50); transform: translateY(-2px); }
.btn-large { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn-full { width: 100%; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; padding: 172px 0 clamp(60px, 7vw, 96px); background: var(--bg-cream); overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; pointer-events: none; }
.hero-blob.b1 { width: 520px; height: 520px; top: -180px; left: -140px; background: var(--primary-100); }
.hero-blob.b2 { width: 420px; height: 420px; top: 40px; right: -160px; background: var(--pink-50); opacity: 0.9; }
.hero-blob.b3 { width: 300px; height: 300px; bottom: -120px; left: 34%; background: var(--amber-50); opacity: 0.9; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.55rem; background: #fff; border: 1px solid var(--border); padding: 0.4rem 1.05rem 0.4rem 0.45rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--slate-600); margin-bottom: 1.7rem; box-shadow: var(--shadow-sm); }
.hero-badge .pill { background: linear-gradient(120deg, var(--coral), var(--pink)); color: #fff; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 11px; border-radius: 999px; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 1.4rem; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl > span { position: relative; z-index: 1; }
.hero h1 .hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.06em; height: 0.34em; background: linear-gradient(90deg, var(--amber), var(--coral)); border-radius: 999px; opacity: 0.45; z-index: 0; }
.hero-sub { font-size: clamp(1.05rem, 1.3vw, 1.18rem); color: var(--slate-600); max-width: 540px; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-notes { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.88rem; color: var(--slate-500); font-weight: 600; }
.hero-notes span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-notes i { width: 16px; height: 16px; color: var(--success); }

/* --------------------------------------------- hero mockup (pure CSS UI) */
.mock-stage { position: relative; }
.mock-app { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(0.6deg); }
.mock-top { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--border-light); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff6b57; } .mock-dot.y { background: #ffb020; } .mock-dot.g { background: #12b76a; }
.mock-url { margin-left: 0.6rem; flex: 1; background: var(--slate-50); border-radius: 999px; font-size: 0.7rem; font-weight: 600; color: var(--slate-400); padding: 4px 14px; }
.mock-body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; padding: 1.2rem; background: var(--bg-soft); }
.mock-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1rem 1.1rem; }
.mock-label { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); margin-bottom: 0.35rem; }
.mock-num { font-family: var(--font-heading); font-weight: 800; font-size: 1.45rem; color: var(--navy-900); line-height: 1.1; }
.mock-trend { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 800; color: var(--success); background: var(--teal-50); padding: 2px 9px; border-radius: 999px; margin-top: 6px; }
.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 66px; margin-top: 0.9rem; }
.mock-bars span { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--primary-100); }
.mock-bars span:nth-child(2) { height: 42%; } .mock-bars span:nth-child(1) { height: 30%; }
.mock-bars span:nth-child(3) { height: 58%; } .mock-bars span:nth-child(4) { height: 46%; }
.mock-bars span:nth-child(5) { height: 74%; } .mock-bars span:nth-child(6) { height: 60%; }
.mock-bars span:nth-child(7) { height: 92%; background: linear-gradient(180deg, var(--primary), var(--primary-light)); }
.mock-tables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 0.75rem; }
.mock-table { aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; font-size: 0.72rem; color: #fff; }
.mock-table.free { background: var(--teal); }
.mock-table.busy { background: var(--coral); }
.mock-table.bill { background: var(--amber); }
.mock-side { display: flex; flex-direction: column; gap: 1rem; }
.mock-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 600; color: var(--slate-600); padding: 0.45rem 0; border-bottom: 1px dashed var(--border); }
.mock-row:last-child { border-bottom: none; }
.mock-row b { color: var(--navy-900); font-weight: 700; }
/* floating toasts */
.float-card { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-md); padding: 0.8rem 1.05rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; font-weight: 600; color: var(--slate-700); z-index: 3; }
.float-card b { display: block; color: var(--navy-900); font-family: var(--font-heading); font-size: 0.86rem; line-height: 1.25; }
.float-ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-ic i { width: 18px; height: 18px; }
.float-qris { top: -26px; right: -8px; animation: bob 5s ease-in-out infinite; }
.float-qris .float-ic { background: var(--teal); }
.float-stock { bottom: -22px; left: -18px; animation: bob 6s ease-in-out 1s infinite; }
.float-stock .float-ic { background: var(--amber); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ------------------------------------------------------------ stats strip */
.stats-strip { background: var(--navy-900); border-radius: var(--radius-xl); padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.5rem); display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.stats-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 90% at 8% 0%, rgba(255,93,162,0.3), transparent 60%), radial-gradient(40% 80% at 96% 100%, rgba(58,160,255,0.25), transparent 60%); pointer-events: none; }
.stats-title { position: relative; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.3; }
.stat { position: relative; }
.stat b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; line-height: 1.1; }
.stat span { font-size: 0.85rem; color: #b9b3e0; font-weight: 600; }

/* ------------------------------------------------------------ section head */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); }
.kicker { display: inline-block; font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 16px; border-radius: 999px; background: var(--primary-50); color: var(--primary); margin-bottom: 1rem; }
.kicker.k-coral { background: var(--coral-50); color: var(--coral); }
.kicker.k-teal { background: var(--teal-50); color: var(--teal); }
.kicker.k-amber { background: var(--amber-50); color: #d98e00; }
.kicker.k-pink { background: var(--pink-50); color: var(--pink); }
.sec-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; }
.sec-head p { color: var(--slate-600); font-size: 1.06rem; margin-top: 0.9rem; }

/* ------------------------------------------------------------- bento grid */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.bento-card { border-radius: var(--radius-lg); padding: 1.9rem; border: 1px solid var(--border); background: #fff; position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; grid-column: span 2; }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card.w3 { grid-column: span 3; }
.bento-ic { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.bento-ic i { width: 24px; height: 24px; }
.bento-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.92rem; color: var(--slate-600); line-height: 1.6; }
.bento-card .chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.chip { font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: var(--slate-50); border: 1px solid var(--border); color: var(--slate-600); }
/* tinted variants */
.t-violet { background: linear-gradient(160deg, #fff 30%, var(--primary-50)); }
.t-violet .bento-ic { background: var(--primary); color: #fff; }
.t-coral  { background: linear-gradient(160deg, #fff 30%, var(--coral-50)); }
.t-coral .bento-ic { background: var(--coral); color: #fff; }
.t-teal   { background: linear-gradient(160deg, #fff 30%, var(--teal-50)); }
.t-teal .bento-ic { background: var(--teal); color: #fff; }
.t-amber  { background: linear-gradient(160deg, #fff 30%, var(--amber-50)); }
.t-amber .bento-ic { background: var(--amber); color: #fff; }
.t-pink   { background: linear-gradient(160deg, #fff 30%, var(--pink-50)); }
.t-pink .bento-ic { background: var(--pink); color: #fff; }
.t-sky    { background: linear-gradient(160deg, #fff 30%, var(--sky-50)); }
.t-sky .bento-ic { background: var(--sky); color: #fff; }

/* ------------------------------------------------------------------ steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.1rem 1.9rem; position: relative; }
.step-num { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 1.3rem; }
.step-card:nth-child(1) .step-num { background: var(--coral); }
.step-card:nth-child(2) .step-num { background: var(--primary); }
.step-card:nth-child(3) .step-num { background: var(--teal); }
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.93rem; color: var(--slate-600); }
.step-arrow { position: absolute; top: 2.4rem; right: -1.15rem; width: 2.3rem; color: var(--slate-400); z-index: 2; display: block; }

/* --------------------------------------------------------------- industry */
.industry-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ind-card { border-radius: var(--radius-lg); padding: 2.2rem 2rem; color: #fff; position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.25s; }
.ind-card:hover { transform: translateY(-4px); }
.ind-card::before { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; top: -70px; right: -60px; background: rgba(255,255,255,0.14); }
.ind-card i { width: 40px; height: 40px; margin-bottom: auto; }
.ind-card h3 { color: #fff; font-size: 1.3rem; margin: 1.4rem 0 0.4rem; }
.ind-card p { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.6; }
.ind-fnb { background: linear-gradient(150deg, var(--coral), #e2422c); }
.ind-retail { background: linear-gradient(150deg, var(--primary), var(--primary-dark)); }
.ind-service { background: linear-gradient(150deg, var(--teal), #0b9c81); }

/* ------------------------------------------------------------ testimonial */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.testi-stars { display: flex; gap: 3px; color: var(--amber); }
.testi-stars i { width: 16px; height: 16px; fill: currentColor; }
.testi-card blockquote { font-size: 0.98rem; line-height: 1.65; color: var(--slate-700); }
.testi-who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testi-ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 0.95rem; flex-shrink: 0; }
.testi-card:nth-child(1) .testi-ava { background: var(--coral); }
.testi-card:nth-child(2) .testi-ava { background: var(--primary); }
.testi-card:nth-child(3) .testi-ava { background: var(--teal); }
.testi-who b { display: block; color: var(--navy-900); font-size: 0.92rem; font-family: var(--font-heading); }
.testi-who span { font-size: 0.8rem; color: var(--slate-500); }

/* ---------------------------------------------------------------- pricing */
.price-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 880px; margin: 0 auto; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2.3rem; display: flex; flex-direction: column; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.p-featured { background: var(--navy-900); border: none; box-shadow: var(--shadow-lg); overflow: hidden; }
.price-card.p-featured::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 90% -10%, rgba(109,94,252,0.55), transparent 60%), radial-gradient(45% 45% at 0% 105%, rgba(255,93,162,0.35), transparent 60%); pointer-events: none; }
.price-card > * { position: relative; }
.p-tag { position: absolute; top: -14px; right: 24px; background: linear-gradient(120deg, var(--amber), var(--coral)); color: #fff; padding: 0.42rem 1.1rem; border-radius: 999px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; box-shadow: var(--shadow-sm); }
.p-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--navy-900); margin-bottom: 0.35rem; }
.p-desc { font-size: 0.9rem; color: var(--slate-500); line-height: 1.55; min-height: 2.8em; }
.p-amount { font-family: var(--font-heading); font-size: 2.9rem; font-weight: 800; color: var(--navy-900); margin: 1.6rem 0 1.8rem; font-variant-numeric: tabular-nums; line-height: 1; }
.p-amount .curr { font-size: 1.05rem; vertical-align: super; color: var(--slate-500); margin-right: 4px; }
.p-amount .period { font-size: 0.92rem; font-weight: 600; color: var(--slate-500); }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.2rem; flex-grow: 1; }
.p-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--slate-700); }
.p-features li i { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 3px; }
.p-featured .p-name, .p-featured .p-amount { color: #fff; }
.p-featured .p-desc, .p-featured .p-amount .curr, .p-featured .p-amount .period { color: #b9b3e0; }
.p-featured .p-features li { color: #e6e3fa; }
.p-featured .p-features li i { color: var(--teal); }
.p-featured .btn-outline { background: #fff; border-color: #fff; color: var(--navy-900); }
.p-featured .btn-outline:hover { background: var(--primary-50); }
.price-note { text-align: center; margin-top: 1.8rem; font-size: 0.88rem; color: var(--slate-500); }
.price-note i { width: 15px; height: 15px; vertical-align: -2px; color: var(--success); }

/* -------------------------------------------------------------------- faq */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { flex-shrink: 0; width: 18px; height: 18px; color: var(--primary); transition: transform 0.25s; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 1.5rem 1.3rem; color: var(--slate-600); font-size: 0.95rem; line-height: 1.7; }

/* ---------------------------------------------------------------- big CTA */
.mega-cta { background: linear-gradient(140deg, var(--primary) 0%, #8b4df0 55%, var(--pink) 130%); border-radius: var(--radius-xl); padding: clamp(3rem, 6.5vw, 5rem) 2rem; text-align: center; position: relative; overflow: hidden; }
.mega-cta::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.12); top: -120px; left: -80px; }
.mega-cta::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.1); bottom: -90px; right: -50px; }
.mega-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; position: relative; z-index: 1; }
.mega-cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.2rem; position: relative; z-index: 1; }
.mega-cta .btn-primary { background: #fff; color: var(--primary-dark); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.3); }
.mega-cta .btn-primary:hover { background: #fff; color: var(--primary); }
.mega-cta .cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.mega-cta .btn-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.mega-cta .btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ----------------------------------------------------------------- footer */
.footer { padding: clamp(64px, 8vw, 96px) 0 40px; background: var(--bg-cream); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 56px; }
.f-brand p { color: var(--slate-600); margin: 1.3rem 0; font-size: 0.92rem; line-height: 1.65; max-width: 300px; }
.social-icons { display: flex; gap: 0.7rem; }
.social-icons i { width: 19px; height: 19px; cursor: pointer; color: var(--primary); background: var(--primary-50); padding: 10px; box-sizing: content-box; border-radius: 50%; transition: 0.2s; }
.social-icons i:hover { color: #fff; background: var(--primary); transform: translateY(-2px); }
.f-links h4 { margin-bottom: 1.3rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy-900); }
.f-links ul { list-style: none; }
.f-links ul li { margin-bottom: 0.8rem; }
.f-links ul li a { text-decoration: none; color: var(--slate-600); font-size: 0.92rem; transition: color 0.2s; }
.f-links ul li a:hover { color: var(--primary); }
.f-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--slate-500); font-size: 0.84rem; }
.f-bottom-links { display: flex; gap: 1.6rem; }
.f-bottom-links a { color: var(--slate-500); text-decoration: none; transition: color 0.2s; }
.f-bottom-links a:hover { color: var(--primary); }

/* ---------------------------------------------------------- scroll reveal */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.js [data-reveal].in-view { opacity: 1; transform: none; }

/* ---------------------------------------------------------- accessibility */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 8px; }

/* ------------------------------------------------------------- responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-right .nav-btn-link { display: none; }
    .nav-links.open { display: flex; position: fixed; top: 92px; left: 1rem; right: 1rem; flex-direction: column; gap: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 0.5rem 0; z-index: 1999; }
    .nav-links.open li { width: 100%; }
    .nav-links.open a { display: block; padding: 0.85rem 1.6rem; font-size: 1rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
    .hero-sub { margin-inline: auto; }
    .hero-cta, .hero-notes { justify-content: center; }
    .mock-stage { max-width: 580px; margin: 0 auto; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .stats-title { grid-column: 1 / -1; }
    .bento-card, .bento-card.w3 { grid-column: span 3; }
    .steps, .industry-row, .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .step-arrow { display: none; }
    .price-container { grid-template-columns: 1fr; max-width: 460px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}
@media (max-width: 640px) {
    .hero { padding-top: 148px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .bento-card, .bento-card.w3 { grid-column: span 6; }
    .stats-strip { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .float-card { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .f-bottom { flex-direction: column; gap: 0.9rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}
