/* ==========================================================================
   JASPR MARKETING — Shared Stylesheet
   ========================================================================== */

/* ---------- CSS RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* colors */
  --bg-main: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: #1E1E1E;
  --border-strong: #2A2A2A;
  --red: #E63946;
  --red-hover: #C1121F;
  --red-glow: rgba(230, 57, 70, 0.15);
  --red-glow-strong: rgba(230, 57, 70, 0.25);
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #BBBBBB;

  /* type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-h1: clamp(48px, 8vw, 88px);
  --fs-h2: clamp(36px, 5vw, 56px);
  --fs-h3: 22px;
  --fs-body: 16px;
  --fs-small: 13px;

  /* spacing */
  --container: 1200px;
  --pad-x: 24px;
  --section-y: 120px;

  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s;
  --t: 0.3s;
  --t-slow: 0.6s;

  /* radius */
  --r-sm: 6px;
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
}

@media (max-width: 768px) {
  :root { --section-y: 60px; --pad-x: 20px; }
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  background: var(--bg-main);
  color: var(--white);
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }
::-moz-selection { background: var(--red); color: var(--white); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; border: 2px solid var(--bg-main); }
::-webkit-scrollbar-thumb:hover { background: var(--red-hover); }
html { scrollbar-color: var(--red) var(--bg-main); scrollbar-width: thin; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { color: var(--white); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.08; }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
p { color: var(--gray-light); font-size: var(--fs-body); line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow.muted { color: var(--gray); }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-light { color: var(--gray-light); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { padding: var(--section-y) 0; position: relative; }
section.tight { padding: 60px 0; }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 20px; font-size: 18px; color: var(--gray-light); }
@media (max-width: 768px) { .section-head { margin-bottom: 40px; } .section-head p { font-size: 16px; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; font-size: 15px; font-weight: 600;
  border-radius: var(--r); border: 1px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 12px 30px var(--red-glow-strong); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform var(--t) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px; z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10, 10, 10, 0.92); }
.nav-inner {
  height: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
@media (max-width: 768px) { .nav-inner { padding: 0 20px; } }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 32px; height: 32px; border-radius: 6px; }
.nav-brand span { font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  position: relative; font-size: 14px; font-weight: 500; color: var(--gray);
  transition: color var(--t) var(--ease); padding: 4px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--red); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: currentColor;
  transition: width var(--t) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.nav-hamburger {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  position: relative; transition: all var(--t) var(--ease);
}
.nav-hamburger span::before, .nav-hamburger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--white);
  transition: all var(--t) var(--ease);
}
.nav-hamburger span::before { top: -7px; }
.nav-hamburger span::after { top: 7px; }
.nav.menu-open .nav-hamburger span { background: transparent; }
.nav.menu-open .nav-hamburger span::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .nav-hamburger span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px 40px;
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  z-index: 99;
}
.nav.menu-open .nav-mobile { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile a {
  display: block; font-size: 22px; font-weight: 600; color: var(--white);
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.nav-mobile a.active { color: var(--red); }
.nav-mobile .btn { margin-top: 24px; width: 100%; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: inline-flex; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 920px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 span { display: block; }
.hero-sub { max-width: 600px; font-size: clamp(16px, 1.6vw, 19px); color: var(--gray-light); margin-bottom: 40px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.hero-stats .label { font-size: 13px; color: var(--gray); margin-top: 2px; }
.hero-stats .divider { width: 1px; height: 36px; background: var(--border); }
@media (max-width: 640px) {
  .hero-stats .divider { display: none; }
  .hero-stats { gap: 24px; }
}

/* ---------- PAGE HERO (smaller) ---------- */
.page-hero {
  padding-top: 180px; padding-bottom: 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 24px; }
.page-hero p { font-size: clamp(16px, 1.6vw, 19px); max-width: 640px; }
@media (max-width: 768px) { .page-hero { padding-top: 130px; padding-bottom: 60px; } }

/* ---------- TRUSTED STRIP ---------- */
.trusted {
  padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray);
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.trusted-logos span {
  font-size: 17px; font-weight: 600; color: var(--gray-light);
  letter-spacing: -0.01em; opacity: 0.7;
  transition: opacity var(--t) var(--ease), color var(--t) var(--ease);
}
.trusted-logos span:hover { opacity: 1; color: var(--white); }
@media (max-width: 768px) { .trusted-logos { gap: 24px; } .trusted-logos span { font-size: 15px; } }

/* ---------- CARDS GRID ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--red-glow);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: var(--r); color: var(--red);
  margin-bottom: 24px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--gray-light); }

/* numbered service card */
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  transition: all var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--red-glow);
}
.svc-num {
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 0.2em; margin-bottom: 18px;
}
.svc-card h3 { font-size: 24px; margin-bottom: 14px; }
.svc-card p { font-size: 15px; flex-grow: 1; }
.svc-card .link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--white);
  transition: color var(--t) var(--ease);
  align-self: flex-start;
}
.svc-card .link::after {
  content: '→';
  transition: transform var(--t) var(--ease);
}
.svc-card .link:hover { color: var(--red); }
.svc-card .link:hover::after { transform: translateX(4px); }

/* ---------- STATS FUNNEL ---------- */
.funnel {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.funnel-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all var(--t) var(--ease);
}
.funnel-box.highlight {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 20px 60px var(--red-glow-strong);
}
.funnel-box .num {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 8px;
}
.funnel-box .label { font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.funnel-box.highlight .label { color: rgba(255,255,255,0.85); }
.funnel-arrow {
  position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
  width: 16px; height: 1px; background: var(--border-strong);
  z-index: 1;
}
.funnel-arrow::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--border-strong);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@media (max-width: 900px) { .funnel { grid-template-columns: repeat(2, 1fr); } .funnel-arrow { display: none; } }
@media (max-width: 480px) { .funnel { grid-template-columns: 1fr; } }

.roi-big {
  text-align: center; margin-top: 24px;
}
.roi-big .num {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800; color: var(--red);
  letter-spacing: -0.03em; line-height: 1;
}
.roi-big .label {
  display: block; margin-top: 16px;
  font-size: 14px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.roi-big .caption {
  display: block; margin-top: 12px;
  font-size: 13px; color: var(--gray);
}

/* ---------- TEASER (case study teaser) ---------- */
.teaser-inner {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
}
.teaser-inner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.teaser-inner > * { position: relative; z-index: 1; }
.teaser-inner h2 { max-width: 640px; margin: 0 auto 16px; }
.teaser-inner p { max-width: 560px; margin: 0 auto 32px; font-size: 18px; }
@media (max-width: 768px) { .teaser-inner { padding: 48px 24px; } .teaser-inner p { font-size: 16px; } }

/* ---------- FINAL CTA ---------- */
.cta-final {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 900px; height: 500px;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final h2 { margin-bottom: 20px; }
.cta-final p { font-size: 18px; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---------- ALTERNATING SERVICE BLOCKS ---------- */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.svc-block:first-of-type { border-top: none; padding-top: 60px; }
.svc-block.reverse .svc-text { order: 2; }
.svc-block.reverse .svc-visual { order: 1; }
.svc-text h2 { margin-bottom: 20px; }
.svc-text p { font-size: 17px; margin-bottom: 28px; }
.svc-bullets { margin-top: 28px; }
.svc-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; font-size: 15px; color: var(--gray-light);
}
.svc-bullets li svg {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--red); margin-top: 1px;
}
@media (max-width: 900px) {
  .svc-block { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .svc-block.reverse .svc-text, .svc-block.reverse .svc-visual { order: initial; }
}

/* ---------- MOCKUPS ---------- */
.mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative; overflow: hidden;
  min-height: 360px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.mockup::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.mockup-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.mockup-head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-head .dot.red { background: var(--red); }
.mockup-head .label {
  margin-left: 8px; font-size: 12px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.mockup-body { position: relative; z-index: 1; }

/* Ad creative mockup */
.ad-mockup {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: var(--r); padding: 24px;
  border: 1px solid var(--border);
}
.ad-mockup .badge {
  display: inline-block; padding: 4px 10px; background: var(--red);
  color: var(--white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; border-radius: 4px;
  margin-bottom: 16px;
}
.ad-mockup h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.ad-mockup p { font-size: 14px; color: var(--gray-light); margin-bottom: 16px; }
.ad-mockup .ad-cta {
  display: inline-block; padding: 8px 16px; background: var(--white);
  color: #000; font-size: 13px; font-weight: 700; border-radius: 4px;
}

/* Phone call mockup */
.call-mockup { text-align: center; padding: 24px 0; }
.call-mockup .ring {
  width: 80px; height: 80px;
  background: rgba(230, 57, 70, 0.1);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
  animation: pulse 2s infinite;
}
.call-mockup .ring svg { width: 32px; height: 32px; }
.call-mockup .caller {
  font-size: 12px; color: var(--gray); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 6px;
}
.call-mockup .number {
  font-size: 22px; font-weight: 700; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.call-mockup .status { font-size: 13px; color: var(--gray-light); margin-bottom: 24px; }
.call-mockup .actions { display: flex; gap: 12px; justify-content: center; }
.call-mockup .btn-accept {
  width: 44px; height: 44px; border-radius: 50%;
  background: #22c55e; color: white;
  display: inline-flex; align-items: center; justify-content: center;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow-strong); }
  50% { box-shadow: 0 0 0 14px transparent; }
}

/* SMS mockup */
.sms-mockup { display: flex; flex-direction: column; gap: 12px; }
.sms-bubble {
  padding: 12px 16px; border-radius: 16px;
  max-width: 80%; font-size: 14px; line-height: 1.5;
}
.sms-bubble.in {
  background: #1a1a1a; border: 1px solid var(--border);
  color: var(--gray-light); border-top-left-radius: 4px;
  align-self: flex-start;
}
.sms-bubble.out {
  background: var(--red); color: var(--white);
  border-top-right-radius: 4px;
  align-self: flex-end;
}
.sms-time {
  font-size: 11px; color: var(--gray);
  text-align: center; margin: 4px 0;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Website mockup */
.web-mockup .browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.web-mockup .browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.web-mockup .url {
  flex: 1; margin-left: 12px; padding: 6px 12px;
  background: #1a1a1a; border-radius: 6px;
  font-size: 12px; color: var(--gray); font-family: monospace;
}
.web-mockup h4 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.web-mockup h4 .text-red { color: var(--red); }
.web-mockup .sub { font-size: 13px; color: var(--gray-light); margin-bottom: 16px; }
.web-mockup .form-fake {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}
.web-mockup .input-fake {
  padding: 12px 14px; background: #0a0a0a;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; color: var(--gray);
}
.web-mockup .input-fake.filled { color: var(--white); border-color: var(--border-strong); }
.web-mockup .btn-fake {
  padding: 12px; background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; text-align: center;
  border-radius: 6px; margin-top: 4px;
}

/* ---------- PRICING ---------- */
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.pricing-card > * { position: relative; z-index: 1; }
.pricing-price {
  font-size: clamp(40px, 6vw, 56px); font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px;
}
.pricing-price .small { font-size: 18px; color: var(--gray); font-weight: 500; margin-left: 6px; }
.pricing-sub { color: var(--gray); margin-bottom: 32px; font-size: 15px; }
.pricing-features {
  text-align: left; margin: 32px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--gray-light);
}
.pricing-features svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
.pricing-caption {
  display: block; text-align: center;
  margin-top: 24px; font-size: 13px; color: var(--gray);
}
@media (max-width: 768px) { .pricing-card { padding: 36px 24px; } }

/* ---------- OVERVIEW STATS (3 col) ---------- */
.overview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 60px 0;
}
.overview .stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.overview .stat-box:hover { border-color: var(--border-strong); box-shadow: 0 0 40px var(--red-glow); }
.overview .stat-box .num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800; color: var(--red);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px;
}
.overview .stat-box .label {
  font-size: 14px; color: var(--gray-light); font-weight: 500;
}
@media (max-width: 768px) { .overview { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; } }

/* ---------- LIVE DEMO CARD ---------- */
.demo-card {
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.demo-card::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.demo-card > * { position: relative; z-index: 1; }
.demo-card h2 { margin-bottom: 16px; }
.demo-card p { font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .demo-card { padding: 48px 24px; } }

/* ---------- CONTACT CARDS ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 36px;
  text-align: center;
  transition: all var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.contact-card.primary { border-color: var(--red); }
.contact-card.primary:hover { box-shadow: 0 0 60px var(--red-glow-strong); }
.contact-card:hover { transform: translateY(-4px); }
.contact-card .icon {
  width: 64px; height: 64px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin: 0 auto 24px;
}
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 24px; margin-bottom: 12px; }
.contact-card p { font-size: 15px; color: var(--gray-light); margin-bottom: 32px; flex-grow: 1; }
.contact-card .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; padding: 28px 0;
  font-size: 18px; font-weight: 600; color: var(--white);
  text-align: left;
  transition: color var(--t) var(--ease);
}
.faq-q:hover { color: var(--red); }
.faq-q .icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--border-strong); border-radius: 50%;
  position: relative;
  transition: all var(--t) var(--ease);
}
.faq-q .icon::before, .faq-q .icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.faq-q .icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .icon { background: var(--red); border-color: var(--red); }
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q .icon::before { background: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px; color: var(--gray-light); line-height: 1.75;
  max-width: 640px;
}
@media (max-width: 768px) { .faq-q { font-size: 16px; padding: 22px 0; } }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 8px; }
.footer-brand span { font-size: 17px; font-weight: 700; color: var(--white); }
.footer-tag {
  font-size: 15px; color: var(--gray-light);
  line-height: 1.6; max-width: 320px;
  margin-bottom: 12px;
}
.footer-about { font-size: 13px; color: var(--gray); max-width: 320px; }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 15px; color: var(--gray-light);
  transition: color var(--t) var(--ease);
  position: relative; display: inline-block;
}
.footer-col a:hover { color: var(--white); }
.footer-col .wa-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-col .wa-row .btn { padding: 10px 18px; font-size: 14px; }
.footer-email {
  font-size: 14px; color: var(--gray-light);
  transition: color var(--t) var(--ease);
}
.footer-email:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--gray);
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom .made { font-size: 13px; color: var(--gray); }

/* ---------- ANIMATIONS ---------- */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.fade.d-1 { transition-delay: 0.08s; }
.fade.d-2 { transition-delay: 0.16s; }
.fade.d-3 { transition-delay: 0.24s; }
.fade.d-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .fade { opacity: 1; transform: none; }
}

/* ---------- UTILITIES ---------- */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   ADDITIONS — WhatsApp float, Instagram, Before/After, Contact Form, Quote CTA
   ========================================================================== */

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 9000;
  animation: waBounce 2.8s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  text-decoration: none;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 36px rgba(37,211,102,0.65);
  animation: none;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateY(0) translateX(-50%); }

.wa-float-tooltip {
  position: absolute;
  bottom: 72px; left: 50%;
  transform: translateY(8px) translateX(-50%);
  background: var(--white); color: #111;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  45%       { transform: translateY(-10px); }
  55%       { transform: translateY(-8px); }
}

/* ---------- INSTAGRAM NAV ICON ---------- */
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  color: var(--gray);
  transition: color 0.25s ease, background 0.3s ease;
  flex-shrink: 0;
}
.nav-ig svg { width: 18px; height: 18px; }
.nav-ig:hover {
  color: #fff;
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Instagram in mobile nav */
.nav-mobile .nav-ig-mobile {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 600; color: var(--white);
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.nav-mobile .nav-ig-mobile svg { width: 22px; height: 22px; }

/* ---------- FOOTER SOCIAL ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--gray);
  transition: color 0.25s ease, background 0.3s ease, border-color 0.25s ease;
}
.footer-ig svg { width: 16px; height: 16px; }
.footer-ig:hover {
  color: #fff; border-color: transparent;
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.footer-ig-link {
  font-size: 13px; color: var(--gray);
  transition: color 0.25s ease;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
}
.footer-ig-link:hover { color: var(--white); }

/* ---------- BEFORE / AFTER SECTION ---------- */
#before-after { padding: var(--section-y) 0; }

.ba-stack { display: flex; flex-direction: column; gap: 40px; }

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.ba-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}
.ba-card-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gray);
  margin-bottom: 24px;
}

.ba-cols {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
}
.ba-side {
  padding: 24px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.ba-before-side {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.ba-after-side {
  background: rgba(230,57,70,0.04);
  border: 1px solid rgba(230,57,70,0.25);
}
.ba-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: 20px;
  align-self: flex-start;
}
.ba-tag-before { background: rgba(255,255,255,0.08); color: var(--gray); }
.ba-tag-after  { background: rgba(230,57,70,0.15);  color: var(--red); }

.ba-vs {
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--gray); writing-mode: horizontal-tb;
}

.ba-verdict {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding-top: 14px; margin-top: auto;
  border-top: 1px solid var(--border);
}
.ba-verdict-bad  { color: var(--gray); }
.ba-verdict-good { color: #22c55e; border-top-color: rgba(34,197,94,0.2); }

/* Fake Facebook post (Before) */
.ba-fb {
  background: #242526; border-radius: var(--r); padding: 16px;
  border: 1px solid #3a3b3c; flex: 1;
}
.ba-fb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ba-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #3a3b3c; flex-shrink: 0;
}
.ba-avatar--red { background: var(--red); }
.ba-fb-name { font-size: 13px; font-weight: 600; color: #e4e6ea; }
.ba-fb-sub  { font-size: 11px; color: #b0b3b8; }
.ba-fb-body { font-size: 13px; color: #e4e6ea; margin-bottom: 12px; line-height: 1.5; }
.ba-img-placeholder {
  height: 80px; border-radius: 4px;
  background: #3a3b3c; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #666;
}
.ba-fb-foot { display: flex; gap: 16px; font-size: 11px; color: #b0b3b8; border-top: 1px solid #3a3b3c; padding-top: 10px; }

/* Pro ad (After) */
.ba-ad-pro {
  background: linear-gradient(135deg,#1a0a0b,#0d0d0d);
  border-radius: var(--r); padding: 16px;
  border: 1px solid var(--border); flex: 1;
}
.ba-ad-badge {
  display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 0.15em;
  background: var(--red); color: #fff; padding: 3px 7px; border-radius: 3px;
  margin-bottom: 10px;
}
.ba-ad-headline { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.25; }
.ba-ad-sub { font-size: 12px; color: var(--gray-light); margin-bottom: 12px; }
.ba-ad-cta {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 4px;
}
.ba-ad-foot { display: flex; gap: 16px; font-size: 11px; color: #b0b3b8; border-top: 1px solid #3a3b3c; padding-top: 10px; margin-top: 10px; }

/* Google Business (Before) */
.ba-gmb { flex: 1; }
.ba-gmb-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ba-stars { font-size: 13px; margin-bottom: 12px; }
.ba-stars-low  { color: var(--gray); }
.ba-stars-high { color: #fbbf24; }
.ba-photos { display: flex; gap: 6px; margin-bottom: 12px; }
.ba-photo {
  flex: 1; height: 52px; border-radius: 4px; background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #555;
}
.ba-photo--pro { background: linear-gradient(135deg,#1c1c1c,#2a1215); border: 1px solid rgba(230,57,70,0.2); color: var(--gray); }
.ba-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ba-chip {
  font-size: 11px; font-weight: 500; padding: 4px 8px;
  border-radius: 4px; white-space: nowrap;
}
.ba-chip--muted { background: #1a1a1a; color: #555; }
.ba-chip--pro   { background: rgba(230,57,70,0.12); color: var(--red); border: 1px solid rgba(230,57,70,0.2); }

/* Flow steps (Response time) */
.ba-flow { display: flex; flex-direction: column; gap: 0; flex: 1; }
.ba-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
}
.ba-step-bad  { background: rgba(255,255,255,0.03); color: var(--gray); }
.ba-step-good { background: rgba(34,197,94,0.06);  color: #86efac; border-left: 2px solid #22c55e; }
.ba-flow-arrow {
  font-size: 16px; color: var(--border-strong);
  text-align: center; padding: 2px 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .ba-cols { grid-template-columns: 1fr; }
  .ba-vs { writing-mode: horizontal-tb; padding: 8px 0; }
  .ba-card { padding: 24px 18px; }
}

/* ---------- CONTACT FORM ---------- */
.contact-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .contact-two-col { grid-template-columns: 1fr; }
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
@media (max-width: 640px) { .contact-form-wrap { padding: 28px 20px; } }

.contact-form-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-form-sub   { font-size: 15px; color: var(--gray-light); margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 14px; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em;
}
.form-input {
  background: var(--bg-main);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 15px; color: var(--white);
  font-family: var(--font-sans);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.form-input::placeholder { color: var(--gray); }
.form-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}

.form-radio-group { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 500px) {
  .form-radio-group--row { flex-direction: row; flex-wrap: wrap; gap: 10px; }
}
.form-radio {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 14px; color: var(--gray-light);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
}
.form-radio input[type="radio"] { display: none; }
.form-radio::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-radio:has(input:checked) {
  border-color: var(--red);
  background: rgba(230,57,70,0.06);
  color: var(--white);
}
.form-radio:has(input:checked)::before {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px var(--bg-main);
}
.form-radio:hover { border-color: var(--border-strong); }

.form-submit-note {
  font-size: 12px; color: var(--gray);
  text-align: center; margin-top: 4px;
}

/* WhatsApp CTA column */
.contact-wa-card {
  background: var(--bg-card);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 100px;
}
.contact-wa-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #25D366;
}
.contact-wa-icon svg { width: 28px; height: 28px; }
.contact-wa-card h3 { font-size: 20px; }
.contact-wa-card p  { font-size: 14px; color: var(--gray-light); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px; font-size: 15px; font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  background: #25D366; color: #fff;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  text-align: center;
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.contact-wa-extras { display: flex; flex-direction: column; gap: 8px; }
.cwe-item { font-size: 13px; color: var(--gray-light); display: flex; align-items: center; gap: 8px; }

/* ---------- QUOTE CTA (replaces pricing on services page) ---------- */
.quote-cta-card {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.quote-cta-card::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, var(--red-glow) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.quote-cta-card > * { position: relative; z-index: 1; }
.quote-cta-card h2 { margin-bottom: 16px; }
.quote-cta-card > p { font-size: 17px; color: var(--gray-light); max-width: 540px; margin: 0 auto 36px; }
.quote-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 32px 0;
  text-align: left;
}
@media (max-width: 640px) { .quote-features { grid-template-columns: 1fr; } }
.qf-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-light);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
}
.qf-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--red); margin-top: 1px; }
.quote-cta-card .quote-caption { font-size: 13px; color: var(--gray); margin-top: 16px; }
@media (max-width: 768px) { .quote-cta-card { padding: 36px 24px; } }

/* ---------- CONTACT FORM HEADER ---------- */
.contact-form-header { margin-bottom: 32px; }
.contact-form-header h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-header p  { font-size: 15px; color: var(--gray-light); }

/* ---------- CONTACT WA CARD INNER ---------- */
.contact-wa-inner { display: flex; flex-direction: column; gap: 16px; }

.contact-wa-sub {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #25D366; margin-top: -8px;
}
.contact-wa-desc { font-size: 14px; color: var(--gray-light); line-height: 1.65; }

.contact-wa-features {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: 4px;
}
.contact-wa-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-light);
}
.feat-icon { font-size: 16px; flex-shrink: 0; width: 24px; text-align: center; }

/* ==========================================================================
   THANK-YOU PAGE
   ========================================================================== */

.ty-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}

.ty-wrap {
  max-width: 600px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

/* Animated SVG checkmark */
.ty-icon-wrap {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: tyIconPop 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
}
@keyframes tyIconPop {
  from { opacity:0; transform:scale(0.4); }
  to   { opacity:1; transform:scale(1); }
}
.ty-check { width: 56px; height: 56px; }
.ty-check-circle {
  fill: none; stroke: var(--red); stroke-width: 2;
  stroke-dasharray: 157; stroke-dashoffset: 157;
  stroke-miterlimit: 10;
  animation: strokeDraw 0.7s cubic-bezier(0.65,0,0.45,1) 0.4s forwards;
}
.ty-check-mark {
  fill: none; stroke: var(--red); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 50; stroke-dashoffset: 50;
  animation: strokeDraw 0.35s cubic-bezier(0.65,0,0.45,1) 1s forwards;
}
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }

.ty-wrap h1 {
  font-size: clamp(28px,5vw,42px);
  animation: tyFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.ty-wrap > p {
  font-size: 17px; color: var(--gray-light); max-width: 480px; line-height: 1.7;
  animation: tyFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.65s both;
}
@keyframes tyFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.ty-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: tyFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

/* What happens next */
.ty-next {
  margin-top: 20px; padding: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); text-align: left; width: 100%;
  animation: tyFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.95s both;
}
.ty-next h3 { font-size: 16px; margin-bottom: 20px; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; }
.ty-steps { display: flex; flex-direction: column; gap: 16px; }
.ty-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.ty-step:last-child { padding-bottom: 0; border-bottom: none; }
.ty-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.25);
  color: var(--red); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ty-step-text { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.ty-step-text strong { font-size: 15px; color: var(--white); }
.ty-step-text span   { font-size: 13px; color: var(--gray); }

@media (max-width: 640px) {
  .ty-actions { flex-direction: column; width: 100%; }
  .ty-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .ty-next { padding: 24px 20px; }
}
