/* ═══════════════════════════════════════════════════════════════
   OPTIONS DIGITAL — SHARED STYLESHEET
   Used by every page (index, services, pricing, about, contact).
   Edit once here and the change applies site-wide.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:      #171717;
  --navy-2:    #2b2b2b;
  --ink:       #000000;
  --text:      #171717;
  --muted:     #4a4a4a;
  --red:       #d81f2b;
  --red-dark:  #b0101c;
  --blue:      #d81f2b;   /* repurposed to red — brand accent (black/white/red) */
  --blue-dark: #b0101c;
  --line:      #e6e6e6;
  --bg:        #ffffff;
  --soft:      #f6f6f6;
  --soft-2:    #efefef;
  --radius:    16px;
  --maxw:      1180px;
  --shadow:    0 14px 40px rgba(0,0,0,.12);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--ink); line-height: 1.14; text-wrap: balance; letter-spacing:-.3px; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14.5px; letter-spacing: .2px;
  padding: 14px 26px; border-radius: 11px; cursor: pointer; border: 1.6px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-red { background: linear-gradient(180deg, #ef2b37, var(--red-dark)); color: #fff; box-shadow: 0 8px 22px rgba(225,29,42,.30); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225,29,42,.40); }
.btn-blue { background: linear-gradient(180deg, #d81f2b, var(--blue-dark)); color: #fff; box-shadow: 0 8px 22px rgba(216,31,43,.28); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(216,31,43,.38); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ─── PILLS / EYEBROW ─── */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

/* ─── SECTION HEADERS ─── */
.section { padding: 92px 0; }
.section.soft { background: var(--soft); }
.head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.8px; margin-top: 14px; }
.head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ─── TOP ANNOUNCEMENT ─── */
.topbar { background: var(--navy); color: #cdd9e8; font-size: 13px; text-align: center; padding: 8px 16px; font-weight: 500; }
.topbar strong { color: #fff; }
.topbar a { color: #8fc0ff; font-weight: 600; }

/* ─── NAV ─── */
.nav-wrap { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s; }
.nav-wrap.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.07); border-color: var(--line); }
nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 34px; width: auto; }
.brand .wm { font-family: 'Cormorant Garamond', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: .3px; color: var(--navy); }
.brand .wm span { color: var(--blue); }
.nav-links { display: flex; gap: 4px; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: 14.5px; padding: 9px 14px; border-radius: 9px; transition: background .15s, color .15s; }
.nav-links a:hover { background: var(--soft-2); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: none; border: 0; color: var(--navy); cursor: pointer; }

/* ─── HERO ─── */
.hero { position: relative; overflow: hidden; padding: 70px 0 80px; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .54; z-index: 0; pointer-events: none; }
/* Light scrim: heavy white on the text side, lighter toward the right so the video stays visible */
.hero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 36%, rgba(255,255,255,.4) 68%, rgba(255,255,255,.24) 100%),
    linear-gradient(180deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 72%, rgba(255,255,255,.88) 100%); }
.hero::before { content: ""; position: absolute; top: -180px; right: -160px; width: 620px; height: 620px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(216,31,43,.12), transparent 62%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -220px; left: -180px; width: 560px; height: 560px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(225,29,42,.08), transparent 62%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.4px; line-height: 1.1; margin: 20px 0 0; color: #000; }
.hero h1 .g { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: #000; }
.hero .sub { font-size: 18px; color: var(--text); margin-top: 20px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-badges .b { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: var(--navy); }
.hero-badges .b svg { width: 20px; height: 20px; color: var(--blue); flex: 0 0 auto; }

/* ─── PAGE HERO (secondary pages: services/pricing/about/contact) ─── */
.page-hero { position: relative; overflow: hidden; padding: 64px 0 56px; text-align: center; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; top: -160px; right: -140px; width: 480px; height: 480px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(216,31,43,.14), transparent 62%); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; bottom: -180px; left: -140px; width: 440px; height: 440px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(225,29,42,.10), transparent 62%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -.9px; margin-top: 14px; }
.page-hero p { color: var(--muted); font-size: 17px; margin-top: 16px; }

/* hero visual mockup */
.mock { position: relative; }
.browser { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.browser .bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: var(--soft); border-bottom: 1px solid var(--line); }
.browser .bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser .url { margin-left: 10px; flex: 1; height: 20px; border-radius: 6px; background: #fff; border: 1px solid var(--line); }
.browser .screen { padding: 22px; }
.sk-hero { height: 90px; border-radius: 12px; background: linear-gradient(120deg, var(--navy), var(--blue-dark)); position: relative; overflow: hidden; }
.sk-hero::after { content: "More Leads. More Growth."; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #fff; font-family: 'Cormorant Garamond'; font-weight: 800; font-size: 15px; }
.sk-row { display: flex; gap: 12px; margin-top: 16px; }
.sk-card { flex: 1; height: 76px; border-radius: 10px; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center; }
.sk-card .ic { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; }
.sk-card .ic svg { width: 18px; height: 18px; }
.sk-card .lbl { font-family: 'Cormorant Garamond'; font-weight: 700; font-size: 11px; color: var(--ink); letter-spacing: .1px; }
.sk-card.c1 { background: rgba(216,31,43,.06); }
.sk-card.c1 .ic { background: linear-gradient(150deg,#d81f2b,#b0101c); }
.sk-card.c2 { background: rgba(0,0,0,.05); }
.sk-card.c2 .ic { background: linear-gradient(150deg,#2b2b2b,#171717); }
.sk-card.c3 { background: rgba(225,29,42,.06); }
.sk-card.c3 .ic { background: linear-gradient(150deg,#ef2b37,#c2161f); }
.sk-line { height: 10px; border-radius: 6px; background: var(--soft-2); margin-top: 12px; }
.sk-line.s { width: 60%; }
.sk-btn { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 10px; background: var(--soft); border: 1px solid var(--line); }
.sk-btn img { height: 22px; width: auto; }
.sk-btn .wm { font-family: 'Cormorant Garamond', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .2px; color: var(--navy); }
.sk-btn .wm span { color: var(--blue); }
.float-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 12px 15px; display: flex; align-items: center; gap: 11px; }
.float-card .ic { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 auto; }
.float-card .t { font-family: 'Cormorant Garamond'; font-weight: 800; font-size: 15px; color: var(--ink); line-height: 1.1; }
.float-card .s { font-size: 11.5px; color: var(--muted); }
.fc-1 { top: 26px; left: -28px; animation: floaty 4s ease-in-out infinite; }
.fc-2 { bottom: 28px; right: -22px; animation: floaty 4s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ─── TRUST STRIP ─── */
.trust { background: var(--navy); color: #dbe6f3; }
.trust .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 48px; padding: 22px 0; text-align: center; }
.trust .row span { font-family: 'Cormorant Garamond'; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 9px; }
.trust .row span b { color: #fff; }
.trust .row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* ─── PRICING ─── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price.feat { border: 2px solid var(--blue); box-shadow: 0 22px 50px rgba(216,31,43,.18); }
.price.feat::before { content: "★ Most Popular"; position: absolute; z-index: 5; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg,#ef2b37,var(--red-dark)); color: #fff; font-family: 'Cormorant Garamond'; font-weight: 700; font-size: 12px; letter-spacing: .4px; padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(225,29,42,.35); white-space: nowrap; }
.price .pname { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 22px; color: var(--ink); }
.price .pdesc { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 40px; }
.price .amt { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 44px; letter-spacing: -1px; color: var(--ink); margin: 18px 0 2px; }
.price .amt small { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; white-space: nowrap; }
.price .maint { font-size: 13px; color: var(--blue); font-weight: 600; background: rgba(216,31,43,.08); border: 1px solid rgba(216,31,43,.18); padding: 5px 11px; border-radius: 999px; align-self: flex-start; }
.price .maint-hst { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 5px; }
.price ul { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 11px; }
.price li { display: flex; gap: 10px; font-size: 14.3px; color: var(--text); }
.price li svg { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; margin-top: 2px; }
.price .bestfor { border-top: 1px dashed var(--line); padding-top: 16px; margin-top: 4px; }
.price .bestfor .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: 12px; font-weight: 600; color: var(--navy); background: var(--soft-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.price .btn { margin-top: 22px; width: 100%; }

/* ─── ADD-ONS (photo cards) ─── */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.addon { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s, border-color .16s; display: flex; flex-direction: column; }
.addon:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(216,31,43,.35); }
.addon-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.addon-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.addon:hover .addon-img img { transform: scale(1.06); }
.addon-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.28)); }
.addon-body { display: flex; align-items: center; gap: 13px; padding: 16px 18px; }
.addon-body .txt { flex: 1; min-width: 0; }
.addon .ic { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 auto; }
.addon h4 { font-size: 15px; font-weight: 700; line-height: 1.2; }
.addon .cost { font-family: 'Cormorant Garamond'; font-weight: 800; color: var(--gold); font-size: 18px; flex: 0 0 auto; white-space: nowrap; }

/* ─── WHY US / SERVICES GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.why:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why .ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.why h4 { font-size: 16px; font-weight: 700; }
.why p { font-size: 13.5px; color: var(--muted); }

/* ─── SERVICES (detailed) ─── */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card .ic { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card > p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card li { display: flex; gap: 9px; font-size: 14px; color: var(--text); }
.service-card li svg { width: 17px; height: 17px; color: var(--blue); flex: 0 0 auto; margin-top: 2px; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi .stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.testi .stars .g-mark { width: 18px; height: 18px; letter-spacing: normal; flex: 0 0 auto; }
.testi p { font-size: 15.5px; color: var(--ink); margin: 14px 0 20px; font-weight: 500; }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond'; font-weight: 800; font-size: 16px; flex: 0 0 auto; }
.testi .nm { font-family: 'Cormorant Garamond'; font-weight: 700; color: var(--ink); font-size: 14.5px; }
.testi .rl { font-size: 12.5px; color: var(--muted); }

/* ─── LEAD CAPTURE ─── */
.lead { background: linear-gradient(135deg, var(--navy), #0a1c33); color: #fff; position: relative; overflow: hidden; }
.lead::before { content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(216,31,43,.35), transparent 60%); }
.lead::after { content: ""; position: absolute; bottom: -160px; left: -60px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(225,29,42,.22), transparent 60%); }
.lead-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.lead h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.8px; }
.lead .ls { color: #b9c8da; margin-top: 16px; font-size: 16.5px; }
.lead-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.lead-list li { display: flex; gap: 11px; align-items: center; color: #dbe6f3; font-weight: 500; }
.lead-list li svg { width: 20px; height: 20px; color: #4da3ff; flex: 0 0 auto; }
.form-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.form-card h3 { color: var(--ink); font-size: 21px; font-weight: 800; }
.form-card .fc-sub { color: var(--muted); font-size: 14px; margin: 6px 0 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(216,31,43,.14); }
.field textarea { resize: vertical; min-height: 84px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-ok { display: none; background: rgba(33,160,90,.1); border: 1px solid rgba(33,160,90,.35); color: #1e7a45; padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.form-err { display: none; background: rgba(225,29,42,.08); border: 1px solid rgba(225,29,42,.35); color: #c41e2a; padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.form-err a { color: #c41e2a; text-decoration: underline; }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: 'Cormorant Garamond'; font-weight: 700; font-size: 16.5px; color: var(--ink); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic { width: 26px; height: 26px; border-radius: 7px; background: var(--soft-2); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: transform .25s, background .2s; flex: 0 0 auto; }
details[open] .faq-q .ic { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { padding: 0 24px 22px; color: var(--text); font-size: 15px; max-width: 72ch; }

/* ─── FINAL CTA ─── */
.final { text-align: center; background: var(--soft); }
.final-card { background: linear-gradient(135deg, var(--navy), #102a4a); border-radius: 26px; padding: 64px 30px; color: #fff; position: relative; overflow: hidden; }
.final-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(216,31,43,.4), transparent 60%); }
.final-card > * { position: relative; }
.final-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; }
.final-card p { color: #c2d2e4; max-width: 56ch; margin: 16px auto 0; font-size: 17px; }
.final-cta { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.final-card .email { margin-top: 22px; font-size: 14px; color: #9fb6cf; }
.final-card .email a { color: #8fc0ff; font-weight: 600; }

/* ─── FOOTER ─── */
footer { background: #081628; color: #9fb0c4; padding: 60px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr 1.2fr; gap: 30px; }
.foot-brand .wm { font-family: 'Cormorant Garamond'; font-weight: 800; font-size: 19px; color: #fff; }
.foot-brand .wm span { color: #4da3ff; }
.foot-brand .tagline { color: #6f8298; font-size: 13px; margin-top: 4px; font-weight: 600; letter-spacing: .3px; }
.foot-brand p { font-size: 13.5px; margin-top: 14px; max-width: 30ch; }
.foot-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 15px; font-family: 'Cormorant Garamond'; }
.foot-col a, .foot-col span { display: block; color: #9fb0c4; font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 22px; font-size: 13px; color: #6f8298; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ─── REVEAL ANIM (progressive enhancement: only hides when JS is active) ─── */
.reveal { transition: opacity .6s ease, transform .6s ease; }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ─── FOCUS VISIBILITY (keyboard nav) ─── */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
  .float-card { animation: none; }
}

/* ─── CHATBOT ─── */
.chat-fab { position: fixed; bottom: 22px; right: 22px; z-index: 120; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(150deg, var(--blue), var(--navy)); border: none; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .18s; }
.chat-fab:hover { transform: scale(1.06); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab .ping { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; background: var(--red); border: 2px solid #fff; border-radius: 50%; }
.chat-panel { position: fixed; bottom: 96px; right: 22px; z-index: 121; width: 380px; max-width: calc(100vw - 32px); height: 580px; max-height: calc(100vh - 130px);
  background: rgba(255,255,255,.55); -webkit-backdrop-filter: blur(26px) saturate(160%); backdrop-filter: blur(26px) saturate(160%);
  border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.55);
  display: none; flex-direction: column; overflow: hidden; }
.chat-panel.open { display: flex; animation: chatIn .28s cubic-bezier(.16,1,.3,1); }
@keyframes chatIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.chat-head { background: linear-gradient(150deg, rgba(11,28,51,.92), rgba(10,28,51,.78)); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.chat-head .logo { width: 40px; height: 40px; border-radius: 11px; background: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.chat-head .logo img { width: 30px; }
.chat-head .nm { font-family: 'Cormorant Garamond'; font-weight: 800; font-size: 15px; line-height: 1.2; }
.chat-head .st { font-size: 12px; color: #9fd0a8; display: flex; align-items: center; gap: 6px; }
.chat-head .st::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #36d97c; display: inline-block; }
.chat-head .x { margin-left: auto; background: rgba(255,255,255,.12); border: none; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-size: 16px; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; background: transparent; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; font-size: 14px; line-height: 1.5; padding: 11px 14px; border-radius: 14px; }
.msg.bot { align-self: flex-start; background: rgba(255,255,255,.78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 4px 14px rgba(0,0,0,.08); color: var(--ink); border-bottom-left-radius: 5px; }
.msg.user { align-self: flex-end; background: linear-gradient(180deg,#d81f2b,var(--blue-dark)); color: #fff; border-bottom-right-radius: 5px; }
.msg.bot b { color: var(--navy); }
.msg.typing { display: flex; align-items: center; gap: 5px; padding: 14px 16px; width: fit-content; }
.msg.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); opacity: .5; animation: typingBounce 1.2s infinite ease-in-out; }
.msg.typing span:nth-child(2) { animation-delay: .15s; }
.msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }
.chat-body .msg a { color: var(--blue); text-decoration: underline; font-weight: 700; }
.msg .pkg { margin-top: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.msg .pkg .pn { font-family: 'Cormorant Garamond'; font-weight: 800; color: var(--ink); }
.msg .pkg .pp { color: var(--red); font-weight: 800; }
.quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; background: transparent; }
.quick button { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--blue); background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1.4px solid rgba(216,31,43,.35); padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: background .14s, color .14s; }
.quick button:hover { background: var(--blue); color: #fff; }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.chat-input input { flex: 1; border: 1.5px solid rgba(0,0,0,.12); border-radius: 10px; padding: 11px 13px; font-family: inherit; font-size: 14px; background: rgba(255,255,255,.75); }
.chat-input input:focus { outline: none; border-color: var(--blue); }
.chat-input button { background: linear-gradient(180deg,#d81f2b,var(--blue-dark)); border: none; color: #fff; width: 42px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.chat-form { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-top: 4px; }
.chat-form .field { margin-bottom: 9px; }
.chat-form label { font-size: 12px; }
.chat-form input, .chat-form select, .chat-form textarea { padding: 9px 11px; font-size: 13.5px; }
.chat-form textarea { min-height: 56px; }
.chat-form .btn { width: 100%; padding: 11px; font-size: 14px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .addon-grid, .why-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mock { max-width: 460px; margin: 0 auto; }
  .price-grid, .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price.feat { order: -1; }
  .lead-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 62px; left: 12px; right: 12px; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; box-shadow: var(--shadow); }
  .hamburger { display: inline-flex; }
  .nav-cta .btn:not(.hamburger) { display: none; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .addon-grid, .why-grid, .foot-grid, .service-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ AGGRESSIVE DARK THEME (premium overlay) ═══════════════ */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

:root{
  --bg:#ffffff; --bg-2:#f6f6f6; --navy:#171717; --navy-2:#2b2b2b;
  --ink:#000000; --text:#171717; --muted:#4a4a4a;
  --red:#d81f2b; --red-dark:#b0101c; --blue:#d81f2b; --blue-dark:#b0101c;
  --gold:#d81f2b; --gold-2:#e63946;
  --line:#e6e6e6; --soft:#f6f6f6; --soft-2:#efefef;
  --surface:#ffffff; --surface-2:#fafafa;
  --shadow:0 22px 54px rgba(0,0,0,.10); --shadow-sm:0 8px 24px rgba(0,0,0,.06);
}

/* Base */
html,body{ background:var(--bg); color:var(--text); }
body{
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(216,31,43,.05), transparent 60%),
    radial-gradient(900px 600px at -8% 18%, rgba(216,31,43,.06), transparent 60%),
    var(--bg);
  background-attachment:fixed;
}
::selection{ background:rgba(216,31,43,.16); color:var(--ink); }

/* Custom scrollbar */
::-webkit-scrollbar{ width:11px; height:11px; }
::-webkit-scrollbar-track{ background:var(--bg-2); }
::-webkit-scrollbar-thumb{ background:linear-gradient(180deg,var(--navy-2),var(--gold)); border-radius:8px; border:2px solid var(--bg-2); }

/* Scroll progress + hero spotlight (JS-injected) */
#scrollProgress{ position:fixed; top:0; left:0; height:3px; width:0; z-index:200;
  background:linear-gradient(90deg,var(--blue),var(--gold)); box-shadow:0 0 10px rgba(216,31,43,.35); transition:width .08s linear; }
.hero-spot{ position:absolute; inset:0; z-index:1; pointer-events:none; opacity:0; transition:opacity .35s;
  background:radial-gradient(440px circle at var(--mx,50%) var(--my,50%), rgba(216,31,43,.10), transparent 60%); }

/* Top bar — slim elegant navy */
.topbar{ background:var(--navy); color:#dfe6f0; border-bottom:1px solid rgba(255,255,255,.06); letter-spacing:.2px; }
.topbar strong{ color:#fff; }
.topbar a{ color:var(--gold-2); }

/* Nav */
.nav-wrap{ background:rgba(255,255,255,.82); -webkit-backdrop-filter:blur(14px) saturate(140%); backdrop-filter:blur(14px) saturate(140%); border-bottom:1px solid transparent; }
.nav-wrap.scrolled{ box-shadow:0 8px 26px rgba(0,0,0,.08); border-color:var(--line); }
.brand .wm{ color:var(--navy); }
.nav-links a{ color:var(--navy); position:relative; }
.nav-links a:hover{ background:transparent; color:var(--blue); }
.nav-links a::after{ content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px; transform:scaleX(0); transform-origin:left;
  background:linear-gradient(90deg,var(--blue),var(--gold)); transition:transform .26s ease; }
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--blue); }
.nav-links a.active::after{ transform:scaleX(1); }
.nav-links.open{ background:var(--surface); border-color:var(--line); box-shadow:var(--shadow); }
.hamburger{ color:var(--navy); }

/* Buttons */
.btn-outline{ background:#fff; border-color:var(--line); color:var(--navy); box-shadow:var(--shadow-sm); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); background:#fff; }
.nav-cta .btn-red, .hero-cta .btn-red, .final-cta .btn-red{ animation:pulseRed 3.2s ease-in-out infinite; }
@keyframes pulseRed{ 0%,100%{ box-shadow:0 8px 22px rgba(201,66,85,.24);} 50%{ box-shadow:0 12px 32px rgba(201,66,85,.38);} }

/* Hero — bright, airy ivory scrim over the photo */
.hero-bg{ opacity:.5; }
.hero-veil{ background:
  linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 36%, rgba(255,255,255,.44) 68%, rgba(255,255,255,.26) 100%),
  linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 70%, rgba(255,255,255,.94) 100%); }
.hero::before{ background:radial-gradient(circle, rgba(216,31,43,.12), transparent 62%); animation:drift 18s ease-in-out infinite alternate; }
.hero::after{ background:radial-gradient(circle, rgba(216,31,43,.12), transparent 62%); animation:drift 21s ease-in-out infinite alternate-reverse; }
@keyframes drift{ from{ transform:translate(0,0);} to{ transform:translate(36px,26px);} }
.hero h1{ color:var(--ink); text-shadow:none; }
.hero h1 .g{ color:transparent; -webkit-text-fill-color:transparent;
  background:linear-gradient(100deg,var(--navy),var(--blue) 55%,var(--gold));
  -webkit-background-clip:text; background-clip:text; }
@keyframes hueShift{ to{ background-position:300% 0; } }
.hero-badges .b{ color:var(--navy); }

/* Page hero (secondary pages) — light */
.page-hero{ border-bottom:1px solid var(--line); background:var(--bg-2); }
.page-hero::before{ background:radial-gradient(circle, rgba(216,31,43,.12), transparent 62%); }
.page-hero::after{ background:radial-gradient(circle, rgba(216,31,43,.12), transparent 62%); }
.page-hero h1{ color:var(--ink); }

/* Hero mockup → clean light card */
.browser{ background:var(--surface); border-color:var(--line); box-shadow:var(--shadow); }
.browser .bar{ background:var(--soft); border-color:var(--line); }
.browser .url{ background:#fff; border-color:var(--line); }
.sk-card{ border-color:var(--line); }
.sk-line{ background:var(--soft-2); }
.sk-btn{ background:var(--soft); border-color:var(--line); }
.sk-btn .wm{ color:var(--navy); }
.float-card{ background:#fff; border-color:var(--line); box-shadow:var(--shadow); }
.float-card .t{ color:var(--ink); }

/* Trust strip — light & airy */
.trust{ background:#fff; color:var(--muted); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust .row span b{ color:var(--navy); }
.trust .row .dot{ background:var(--gold); }

/* Sections / surfaces */
.section.soft{ background:var(--bg-2); }

/* Why-Us section — team photo behind cards, soft ivory overlay keeps it airy */
#why{ position:relative;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 42%, rgba(246,246,246,.78) 64%, rgba(255,255,255,.94) 100%),
    url('../ai/people-why.jpg');
  background-position:center, center 28%;
  background-size:cover, cover;
  background-repeat:no-repeat, no-repeat; }
@media (max-width:760px){ #why{ background-attachment:scroll; } }
.price, .addon, .why, .testi, .faq-item, .service-card{ background:var(--surface); border-color:var(--line); box-shadow:var(--shadow-sm); }
.price:hover, .addon:hover, .why:hover, .testi:hover, .service-card:hover{ border-color:rgba(216,31,43,.35);
  box-shadow:0 24px 50px rgba(0,0,0,.12); }
.addon:hover{ border-color:rgba(216,31,43,.45); box-shadow:0 24px 50px rgba(0,0,0,.12); }
.tag{ background:var(--soft-2); border-color:var(--line); color:var(--navy); }

/* Featured pricing card — refined blue frame + gold badge */
.price.feat{ border:1.5px solid var(--blue); background:var(--surface); z-index:2; box-shadow:0 26px 58px rgba(216,31,43,.16); }
.price.feat::after{ display:none; }
.price.feat::before{ background:linear-gradient(180deg,var(--gold-2),var(--gold)); box-shadow:0 6px 16px rgba(216,31,43,.35); }
@keyframes spin{ to{ --angle:360deg; } }

/* Forms → light */
.form-card{ background:#fff; box-shadow:var(--shadow); border:1px solid var(--line); }
.field label{ color:var(--navy); }
.field input, .field textarea, .field select{ background:#fff; border-color:var(--line); color:var(--ink); }
.field input::placeholder, .field textarea::placeholder{ color:#a7afbd; }

/* FAQ */
.faq-q .ic{ background:var(--soft-2); }

/* Footer — deep navy anchor */
footer{ background:var(--navy); color:#b7c1d2; }
.foot-brand .wm span{ color:var(--gold-2); }
.foot-col a:hover{ color:#fff; }

/* Chatbot → light frosted glass */
.chat-panel{ background:rgba(255,255,255,.72); -webkit-backdrop-filter:blur(28px) saturate(150%); backdrop-filter:blur(28px) saturate(150%); border-color:rgba(255,255,255,.7); box-shadow:0 30px 80px rgba(0,0,0,.22); }
.chat-head{ background:linear-gradient(150deg, var(--navy), var(--navy-2)); border-bottom:1px solid rgba(255,255,255,.12); }
.chat-body{ background:transparent; }
.chat-input{ background:rgba(255,255,255,.55); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); border-top:1px solid var(--line); }
.chat-input input{ background:#fff; border-color:var(--line); color:var(--ink); }
.msg.bot{ background:rgba(255,255,255,.85); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); border:1px solid var(--line); box-shadow:0 4px 14px rgba(0,0,0,.08); color:var(--ink); }
.msg.bot b{ color:var(--navy); }
.msg .pkg{ background:var(--soft); border-color:var(--line); }
.quick{ background:transparent; }
.quick button{ background:rgba(255,255,255,.8); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); border-color:rgba(216,31,43,.35); color:var(--blue); }
.quick button:hover{ background:var(--blue); color:#fff; }
.chat-form{ background:#fff; border-color:var(--line); }

/* Reveal: add a little scale for snappier entrances */
html.js .reveal{ transform:translateY(28px) scale(.99); }
html.js .reveal.in{ transform:none; }

/* ─── AI-Powered Growth feature band (AI imagery) ─── */
.ai-band{ position:relative; overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(216,31,43,.09), transparent 60%),
    radial-gradient(820px 520px at 4% 96%, rgba(216,31,43,.09), transparent 60%),
    var(--bg-2); }
.ai-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:56px; align-items:center; }
.ai-copy .eyebrow{ color:#ff9ba1; }
.ai-copy h2{ margin:12px 0 14px; }
.ai-band h2 .g{ -webkit-text-fill-color:transparent; color:transparent;
  background:linear-gradient(100deg,var(--navy),var(--blue) 55%,var(--gold));
  -webkit-background-clip:text; background-clip:text; }
.ai-copy > p{ color:var(--text); max-width:52ch; font-size:16.5px; }
.ai-points{ list-style:none; margin:24px 0 30px; display:grid; gap:15px; }
.ai-points li{ display:flex; align-items:flex-start; gap:13px; color:var(--ink); font-size:16px; line-height:1.45; }
.ai-points .ck{ flex:0 0 auto; width:27px; height:27px; border-radius:8px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg,#1f8a4d,#13532f); color:#fff; box-shadow:0 5px 16px rgba(30,122,69,.42); margin-top:1px; }
.ai-points .ck svg{ width:15px; height:15px; }

.ai-visual{ position:relative; }
.ai-frame{ position:relative; border-radius:18px; overflow:hidden; border:1px solid var(--line);
  box-shadow:0 30px 70px rgba(0,0,0,.16); background:linear-gradient(180deg, rgba(216,31,43,.06), rgba(216,31,43,.05)); }
.ai-frame img{ display:block; width:100%; height:auto; }
.ai-frame::after{ content:""; position:absolute; inset:0; border-radius:18px; pointer-events:none; box-shadow:inset 0 0 60px rgba(0,0,0,.06); }
.ai-mini{ position:absolute; left:-26px; bottom:-26px; width:46%; border-radius:14px; overflow:hidden; z-index:2;
  border:3px solid #fff; box-shadow:0 24px 54px rgba(0,0,0,.20); background:#fff; }
.ai-mini img{ display:block; width:100%; height:auto; }
.ai-mini::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,.12)); }
.ai-badge{ position:absolute; right:-16px; top:-20px; z-index:3; }

/* ─── AI background accent on the final CTA ─── */
.section.final{ position:relative; overflow:hidden; background:var(--bg-2); }
.section.final::before{ content:""; position:absolute; inset:0; z-index:0;
  background:url('../ai/ai-cta-bg.jpg') center/cover no-repeat; opacity:.12; }
.section.final::after{ content:""; position:absolute; inset:0; z-index:0;
  background:linear-gradient(180deg, var(--bg-2) 0%, rgba(246,246,246,.7) 48%, var(--bg-2) 100%); }
.section.final .container{ position:relative; z-index:1; }

/* Final CTA card → light elegant */
.final-card{ background:linear-gradient(135deg,#ffffff,#f6f6f6); color:var(--ink); border:1px solid var(--line); box-shadow:var(--shadow); }
.final-card::before{ background:radial-gradient(ellipse 60% 90% at 50% 0%, rgba(216,31,43,.10), transparent 60%); }
.final-card h2{ color:var(--ink); }
.final-card p{ color:var(--muted); }
.final-card .email{ color:var(--muted); }
.final-card .email a{ color:var(--blue); }
.final-cta .btn-ghost-light{ background:#fff; border-color:var(--line); color:var(--navy); box-shadow:var(--shadow-sm); }
.final-cta .btn-ghost-light:hover{ border-color:var(--blue); color:var(--blue); background:#fff; }

/* Honeypot anti-spam field — kept off-screen (not display:none, so bots still fill it) */
.hp-field { position:absolute !important; left:-9999px !important; top:-9999px !important; width:1px; height:1px; overflow:hidden; }

/* ─── How It Works (process) ─── */
.proc-band{ position:relative; background-color:var(--bg-2);
  background-image: radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px); background-size:22px 22px;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.proc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:18px; position:relative; }
.proc-grid::before{ content:""; position:absolute; top:47px; left:12%; right:12%; height:2px; z-index:0;
  background:linear-gradient(90deg, transparent, rgba(216,31,43,.35), rgba(216,31,43,.35), transparent); }
.step{ position:relative; z-index:1; background:var(--surface); border:1px solid var(--line); border-radius:16px;
  padding:28px 22px; text-align:center; box-shadow:var(--shadow-sm); transition:transform .18s, box-shadow .18s, border-color .18s; }
.step:hover{ transform:translateY(-6px); border-color:rgba(216,31,43,.35); box-shadow:0 24px 50px rgba(0,0,0,.12); }
.step .num{ width:58px; height:58px; margin:0 auto 16px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond'; font-weight:800; font-size:22px; color:#fff;
  background:linear-gradient(150deg,var(--blue),var(--navy)); box-shadow:0 10px 24px rgba(216,31,43,.32); border:4px solid var(--surface); }
.step:nth-child(even) .num{ background:linear-gradient(150deg,var(--gold-2),var(--gold)); box-shadow:0 10px 24px rgba(216,31,43,.32); }
.step h4{ font-family:'Cormorant Garamond'; color:var(--ink); font-size:16.5px; font-weight:700; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:13.5px; line-height:1.55; }
@media (max-width:860px){ .proc-grid{ grid-template-columns:1fr 1fr; gap:16px; } .proc-grid::before{ display:none; } }
@media (max-width:480px){ .proc-grid{ grid-template-columns:1fr; } }

/* ─── Testimonial polish: quote watermark, top accent, smooth hover lift ─── */
.testi{ position:relative; overflow:hidden; transition:transform .18s, box-shadow .18s, border-color .18s; }
.testi > *{ position:relative; z-index:1; }
.testi::before{ content:"\201C"; position:absolute; top:0; right:18px; z-index:0; font-family:'Cormorant Garamond'; font-weight:700;
  font-size:110px; line-height:1; color:rgba(216,31,43,.14); pointer-events:none; }
.testi::after{ content:""; position:absolute; top:0; left:0; right:0; height:3px; z-index:0; background:linear-gradient(90deg,var(--blue),var(--gold)); }
.testi:hover{ transform:translateY(-6px); }

@media (max-width:860px){
  .ai-grid{ grid-template-columns:1fr; gap:40px; }
  .ai-mini{ width:42%; left:-10px; bottom:-16px; }
  .ai-badge{ right:6px; top:-14px; }
  .service-grid{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  .price.feat::after, .hero h1 .g, .ai-band h2 .g, .nav-cta .btn-red, .hero-cta .btn-red, .final-cta .btn-red, .hero::before, .hero::after{ animation:none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — brighten all text to white so every link is clearly visible
   ═══════════════════════════════════════════════════════════════════ */
footer{ color:#ffffff; }
footer .foot-brand p{ color:#eef3fa; }
footer .foot-brand .tagline{ color:#cf6b73; }
footer .foot-col a,
footer .foot-col span{ color:#ffffff; opacity:.94; }
footer .foot-col a:hover{ color:#ffffff; opacity:1; text-decoration:underline; }
footer .foot-bottom{ color:#e3eaf4; }
footer .foot-bottom span{ color:#e3eaf4; }

/* Email shown as plain text (no mail-app link) under the contact card */
.contact-mail{ display:block; margin-top:8px; font-weight:700; color:var(--ink); font-size:14px; letter-spacing:.2px; }

/* ═══════════════════════════════════════════════════════════════════
   SOLID COLOUR ICON TILES — inner pages (Services / About / Pricing)
   Adds vibrant, on-brand colour to the plainer black icon tiles.
   ═══════════════════════════════════════════════════════════════════ */
body[data-page="services"] .service-card:nth-child(1) .ic{ background:#1d6fe0 !important; }
body[data-page="services"] .service-card:nth-child(2) .ic{ background:#e11d2a !important; }
body[data-page="services"] .service-card:nth-child(3) .ic{ background:#12b76a !important; }
body[data-page="services"] .service-card:nth-child(4) .ic{ background:#f59e0b !important; }
body[data-page="services"] .service-card:nth-child(5) .ic{ background:#0c2340 !important; }

body[data-page="about"] .why:nth-child(1) .ic{ background:#1d6fe0 !important; }
body[data-page="about"] .why:nth-child(2) .ic{ background:#e11d2a !important; }
body[data-page="about"] .why:nth-child(3) .ic{ background:#12b76a !important; }
body[data-page="about"] .why:nth-child(4) .ic{ background:#f59e0b !important; }

body[data-page="pricing"] .addon:nth-child(5n+1) .ic{ background:#1d6fe0 !important; }
body[data-page="pricing"] .addon:nth-child(5n+2) .ic{ background:#e11d2a !important; }
body[data-page="pricing"] .addon:nth-child(5n+3) .ic{ background:#12b76a !important; }
body[data-page="pricing"] .addon:nth-child(5n+4) .ic{ background:#f59e0b !important; }
body[data-page="pricing"] .addon:nth-child(5n) .ic{ background:#0c2340 !important; }

/* ═══════════════════════════════════════════════════════════════════
   FUTURISTIC AMBIENT FX — hero "AI signal" constellation + aurora drift
   (all motion is disabled automatically for prefers-reduced-motion)
   ═══════════════════════════════════════════════════════════════════ */
.hero-net{
  position:absolute; inset:0; width:100%; height:100%; z-index:1; display:block;
  pointer-events:none; opacity:.62;
  -webkit-mask-image:linear-gradient(180deg,#000 62%,transparent 100%);
  mask-image:linear-gradient(180deg,#000 62%,transparent 100%);
}

@media (prefers-reduced-motion: no-preference){
  /* Inner-page headers: two brand-tinted orbs slowly drifting = ambient depth */
  .page-hero::before{ animation:auroraDriftA 24s ease-in-out infinite alternate; }
  .page-hero::after{  animation:auroraDriftB 30s ease-in-out infinite alternate; }
  @keyframes auroraDriftA{ from{ transform:translate(0,0) scale(1); }   to{ transform:translate(-46px,34px) scale(1.16); } }
  @keyframes auroraDriftB{ from{ transform:translate(0,0) scale(1); }   to{ transform:translate(52px,-28px) scale(1.12); } }

  /* Final CTA card: the red glow breathes + a faint tech grid pans across */
  .final-card::before{ animation:ctaGlow 9s ease-in-out infinite alternate; }
  @keyframes ctaGlow{ from{ opacity:.75; transform:scale(1); } to{ opacity:1; transform:scale(1.08); } }
  .final-card::after{
    content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
    background-image:
      linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:36px 36px;
    -webkit-mask-image:radial-gradient(ellipse 72% 82% at 50% 42%, #000, transparent 74%);
    mask-image:radial-gradient(ellipse 72% 82% at 50% 42%, #000, transparent 74%);
    animation:gridPan 26s linear infinite;
  }
  @keyframes gridPan{ from{ background-position:0 0, 0 0; } to{ background-position:36px 36px, 36px 36px; } }
}
/* Keep CTA text crisply above the animated grid */
.final-card > *{ position:relative; z-index:1; }
