/* ==========================================================================
   Wizix Marketing — wizixmarketing.com
   Bright, energetic growth-marketing theme · violet/indigo + coral accent
   1. Tokens          6. Hero / dashboard     11. Pricing
   2. Reset/base      7. Marquee (clients)    12. Team
   3. Typography      8. Stats / results      13. FAQ
   4. Buttons         9. Service cards        14. Forms
   5. Header/nav      10. Case studies        15. CTA / Footer / motion
   ========================================================================== */

/* 1. Tokens ----------------------------------------------------------------- */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F6F4FE;
  --bg-soft-2: #0E0E1A;
  --ink: #0E0E1A;
  --ink-soft: #1B1B2E;
  --text: #1C1C28;
  --muted: #64647A;
  --line: rgba(14, 14, 26, 0.10);
  --line-2: rgba(14, 14, 26, 0.16);

  --primary: #6D28D9;
  --primary-2: #9333EA;
  --indigo: #4F46E5;
  --accent: #FF6A55;
  --green: #16A34A;

  --grad: linear-gradient(120deg, #8B5CF6, #6D28D9 52%, #4F46E5);
  --grad-soft: linear-gradient(120deg, #7C3AED, #5B5BF0);
  --primary-soft: rgba(109, 40, 217, 0.10);
  --accent-soft: rgba(255, 106, 85, 0.13);

  --shadow: 0 30px 70px -30px rgba(76, 29, 149, 0.40);
  --shadow-sm: 0 14px 34px -20px rgba(20, 20, 50, 0.32);
  --shadow-primary: 0 18px 40px -16px rgba(109, 40, 217, 0.55);

  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1200px;
  --gutter: 26px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.38s var(--ease);
}

/* Dark surfaces (footer + dark band) */
.section--dark, .site-footer {
  --text: #F4F3FB;
  --muted: #9C9CB4;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.20);
  --bg: #0E0E1A;
}

/* 2. Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(109, 40, 217, 0.22); color: var(--ink); }

/* 3. Typography ------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; }

.display { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.32rem; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

p { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 10vw, 134px); position: relative; }
.section--tight { padding-block: clamp(52px, 7vw, 90px); }
.section--soft { background: var(--bg-soft); }
.bordered-top { border-top: 1px solid var(--line); }
.section--dark { background: var(--ink); color: var(--text); position: relative; overflow: hidden; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: none; flex-wrap: wrap; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: var(--r-pill); background: var(--primary-soft); color: var(--primary); font-family: var(--font); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.section--dark .eyebrow { background: rgba(255, 255, 255, 0.08); color: #C4B5FD; }
.section--dark .eyebrow::before { background: #C4B5FD; }
.section-head--center .eyebrow { margin-inline: auto; }

.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--muted); line-height: 1.58; }
.section-head .lead { margin-top: 18px; }

/* 4. Buttons ---------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 24px; border-radius: var(--r-pill); font-family: var(--font); font-weight: 600; font-size: 0.97rem; letter-spacing: -0.005em; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: transform var(--t), box-shadow var(--t), background-color var(--t), border-color var(--t), color var(--t); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-primary); background-size: 140% 140%; }
.btn--primary:hover { box-shadow: 0 22px 50px -16px rgba(109, 40, 217, 0.7); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-soft); color: #fff; }
.btn--ghost { background: #fff; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--primary); background: var(--primary-soft); color: var(--primary); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f1eefe; color: var(--primary); }
.section--dark .btn--ghost { background: transparent; border-color: var(--line-2); color: #fff; }
.section--dark .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 0.96rem; color: var(--primary); }
.text-link .arrow { transition: transform var(--t); }
.text-link:hover { color: var(--ink); }
.text-link:hover .arrow { transform: translateX(4px); }
.section--dark .text-link { color: #C4B5FD; }
.section--dark .text-link:hover { color: #fff; }

/* 5. Header / nav ----------------------------------------------------------- */
.topbar { background: var(--ink); color: #E9E7F5; font-size: 0.84rem; }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding-block: 8px; text-align: center; }
.topbar a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #C4B5FD; }
.topbar .spark { color: #FF6A55; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); display: flex; align-items: center; background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color var(--t), box-shadow var(--t); }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(20, 20, 50, 0.5); }

.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; box-shadow: var(--shadow-sm); object-fit: cover; display: block; }
.site-footer .brand { color: #fff; }
.brand-word { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.34rem; font-weight: 800; letter-spacing: -0.04em; }
.brand-word .bw-dot { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { position: relative; padding: 9px 14px; font-family: var(--font); font-size: 0.95rem; font-weight: 500; color: var(--muted); border-radius: var(--r-sm); }
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--grad); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* 6. Hero / dashboard ------------------------------------------------------- */
.hero { padding-block: clamp(52px, 8vw, 100px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; top: -180px; right: -160px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 65%); pointer-events: none; }
.hero::after { content: ""; position: absolute; z-index: -1; bottom: -200px; left: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 106, 85, 0.12), transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

.hero .kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; padding: 7px 14px 7px 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 0.83rem; font-weight: 500; color: var(--muted); box-shadow: var(--shadow-sm); }
.hero .kicker .tag { font-size: 0.7rem; font-weight: 700; color: #fff; background: var(--grad); padding: 3px 9px; border-radius: var(--r-pill); letter-spacing: 0.02em; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust .avatars { display: flex; }
.hero-trust .av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; color: #fff; }
.hero-trust .av:first-child { margin-left: 0; }
.hero-trust .t-text { font-size: 0.9rem; color: var(--muted); }
.hero-trust .t-text strong { color: var(--ink); }

.page-hero { padding-block: clamp(48px, 7vw, 90px) clamp(28px, 4vw, 50px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; z-index: -1; top: -180px; right: -140px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 65%); }
.page-hero .lead { max-width: 640px; }
.page-hero h1 { margin-bottom: 20px; }

/* dashboard visual */
.dash { position: relative; }
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 22px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-head .dh-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.dash-head .dh-live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 600; color: var(--green); background: rgba(22, 163, 74, 0.1); padding: 4px 10px; border-radius: var(--r-pill); }
.dash-head .dh-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.dash-chart { border-radius: var(--r); overflow: hidden; background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), transparent); }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.dmetric { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px; }
.dmetric .dm-label { font-size: 0.72rem; color: var(--muted); }
.dmetric .dm-value { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); margin-top: 3px; }
.dmetric .dm-value .up { color: var(--green); font-size: 0.8rem; }
.float-badge { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 11px; }
.float-badge .fb-ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-badge .fb-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); line-height: 1; }
.float-badge small { font-size: 0.74rem; color: var(--muted); }
.fb-1 { top: -22px; left: -26px; }
.fb-1 .fb-ico { background: linear-gradient(135deg, #FF6A55, #F43F5E); }
.fb-2 { bottom: -24px; right: -20px; }
.fb-2 .fb-ico { background: linear-gradient(135deg, #16A34A, #22C55E); }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* 7. Marquee (clients) ------------------------------------------------------ */
.clients { padding-block: 34px; border-block: 1px solid var(--line); overflow: hidden; }
.clients-label { text-align: center; font-size: 0.82rem; color: var(--muted); font-weight: 500; margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; align-items: center; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding-inline: 34px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.03em; color: #9A9AB0; white-space: nowrap; }
.marquee-item .md { width: 10px; height: 10px; border-radius: 50%; background: currentColor; opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 8. Stats / results -------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform var(--t), box-shadow var(--t); }
.section--dark .stat { background: rgba(255, 255, 255, 0.04); }
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { font-size: 0.95rem; color: var(--muted); }

/* 9. Service cards ---------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; height: 100%; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }

.svc .s-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; color: #fff; margin-bottom: 22px; }
.svc .s-ico svg { width: 26px; height: 26px; }
.svc h3 { margin-bottom: 10px; }
.svc p { font-size: 0.96rem; }
.svc .s-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.svc .s-link .arrow { transition: transform var(--t); }
.svc:hover .s-link .arrow { transform: translateX(4px); }
/* icon tile colors */
.ic-violet { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ic-indigo { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.ic-coral  { background: linear-gradient(135deg, #FF8A6B, #FF5B47); }
.ic-pink   { background: linear-gradient(135deg, #F472B6, #DB2777); }
.ic-blue   { background: linear-gradient(135deg, #38BDF8, #2563EB); }
.ic-green  { background: linear-gradient(135deg, #34D399, #10B981); }
.ic-amber  { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.ic-teal   { background: linear-gradient(135deg, #2DD4BF, #0D9488); }

/* feature / check lists */
.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: var(--muted); font-size: 0.96rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--primary-soft); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(-45deg); }
.section--dark .check-list li::before { background: rgba(196, 181, 253, 0.18); }
.section--dark .check-list li::after { border-color: #C4B5FD; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }

/* 10. Case studies ---------------------------------------------------------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t), box-shadow var(--t); height: 100%; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-top { padding: 28px 28px 0; }
.work-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 16px; }
.work-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.work-card .work-desc { font-size: 0.96rem; color: var(--muted); }
.work-results { display: flex; gap: 26px; padding: 22px 28px 28px; margin-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.work-results .wr { }
.work-results .wr-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--green); line-height: 1; }
.work-results .wr-num.violet { color: var(--primary); }
.work-results .wr-label { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }

/* 11. Process steps --------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; }
.step .s-num { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: var(--grad); margin-bottom: 20px; box-shadow: var(--shadow-primary); }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { font-size: 0.94rem; }

/* 12. Pricing --------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; height: 100%; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan.featured { background: var(--ink); color: #fff; border-color: transparent; box-shadow: var(--shadow); position: relative; }
.plan.featured .plan-name, .plan.featured .plan-price, .plan.featured .plan-desc, .plan.featured .check-list li { color: #fff; }
.plan.featured .check-list li { color: #D7D4EA; }
.plan.featured .check-list li::before { background: rgba(196, 181, 253, 0.2); }
.plan.featured .check-list li::after { border-color: #C4B5FD; }
.plan .plan-badge { position: absolute; top: 18px; right: 18px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 5px 12px; border-radius: var(--r-pill); }
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.plan.featured .plan-name { color: #C4B5FD; }
.plan-price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.04em; color: var(--ink); margin: 14px 0 4px; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 0.94rem; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plan.featured .plan-desc { border-color: rgba(255, 255, 255, 0.14); }
.plan .check-list { margin-bottom: 28px; flex: 1; }
.plan .btn { margin-top: auto; }

/* 13. Team ------------------------------------------------------------------ */
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: var(--r-lg); margin-bottom: 18px; display: grid; place-items: center; position: relative; overflow: hidden; }
.team-photo .mono { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: #fff; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 3px; }
.team-card .role { font-size: 0.9rem; color: var(--primary); font-weight: 600; }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.quote .stars { color: #FBBF24; letter-spacing: 2px; font-size: 0.95rem; }
.quote blockquote { font-size: 1.04rem; line-height: 1.55; color: var(--text); flex: 1; }
.q-author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.q-author .who { font-weight: 600; font-size: 0.93rem; color: var(--ink); }
.q-author .role { font-size: 0.83rem; color: var(--muted); }

/* 14. FAQ ------------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color var(--t), box-shadow var(--t); }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq summary .chev::before, .faq summary .chev::after { content: ""; position: absolute; top: 10px; left: 5px; width: 12px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform var(--t); }
.faq summary .chev::after { transform: rotate(90deg); }
.faq details[open] summary .chev::after { transform: rotate(0); }
.faq details > p { padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }

/* 15. Forms ----------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.info-stack { display: grid; gap: 16px; align-content: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: border-color var(--t), box-shadow var(--t); }
.info-card:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.info-card .i-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; background: var(--grad); }
.info-card .i-ico svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.04rem; margin-bottom: 4px; }
.info-card a { color: var(--primary); font-weight: 600; }
.info-card a:hover { color: var(--ink); }
.info-card p { font-size: 0.93rem; }

.form { padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); background: #fff; color: var(--text); font-size: 0.97rem; transition: border-color var(--t), box-shadow var(--t); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236D28D9' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.field input::placeholder, .field textarea::placeholder { color: #9a9aae; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field .error-msg { font-size: 0.8rem; color: #DC2626; min-height: 1em; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12); }
.field.has-error .error-msg { display: block; }
.form-note { margin-top: 8px; font-size: 0.82rem; color: var(--muted); text-align: center; }

.form-success { display: none; text-align: center; padding: clamp(28px, 5vw, 46px) 12px; }
.form-success.is-visible { display: block; animation: pop 0.5s var(--ease) both; }
.form.is-submitted .form-body { display: none; }
.success-icon { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); box-shadow: var(--shadow-primary); }
.success-icon svg { width: 34px; height: 34px; stroke: #fff; fill: none; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { max-width: 420px; margin: 0 auto 22px; }

/* 16. CTA band -------------------------------------------------------------- */
.cta-band { position: relative; border-radius: var(--r-xl); padding: clamp(44px, 7vw, 86px) clamp(26px, 5vw, 64px); text-align: center; overflow: hidden; background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(255, 255, 255, 0.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 540px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* 17. Footer ---------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text); padding-block: clamp(56px, 7vw, 84px) 30px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -160px; right: -100px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 65%); }
.footer-top { position: relative; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.94rem; max-width: 300px; color: var(--muted); }
.footer-contact { margin-top: 20px; display: grid; gap: 8px; font-size: 0.92rem; color: var(--muted); }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: #C4B5FD; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line-2); color: var(--muted); transition: color var(--t), border-color var(--t), background-color var(--t); }
.footer-social a:hover { color: #fff; border-color: transparent; background: var(--grad); }
.footer-col h4 { font-family: var(--font); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #C4B5FD; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.94rem; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.newsletter p { font-size: 0.93rem; color: var(--muted); }
.newsletter form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.05); color: var(--text); font-size: 0.92rem; }
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { outline: none; border-color: #C4B5FD; }
.newsletter .nl-ok { font-size: 0.88rem; color: #C4B5FD; margin-top: 10px; display: none; }
.newsletter.done .nl-ok { display: block; }
.newsletter.done form { display: none; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.85rem; color: var(--muted); }
.footer-meta { display: flex; gap: 22px; }
.footer-meta a { font-size: 0.85rem; color: var(--muted); }
.footer-meta a:hover { color: var(--text); }

/* 18. Reveal + responsive --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dash { max-width: 520px; margin-inline: auto; width: 100%; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-col.newsletter { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; padding: 16px 24px 24px; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--t), transform var(--t), visibility var(--t); }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1.04rem; border-radius: var(--r-sm); }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-links a.is-active::after { display: none; }
  .nav-links a.is-active { background: var(--bg-soft); }
}
@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .float-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .float { animation: none; }
}
