/* =============================================================
   VIRTUNIZE · Shared stylesheet for all pages
   Variant C — Modern Confident · Navy + Maroon
   ============================================================= */


:root {
  /* Blue scale - primary */
  --navy-darkest: #050d1f;
  --navy-dark: #0b1e3f;
  --navy: #112a5c;
  --navy-mid: #1e3a8a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-pale: #eff4fe;
  --blue-paler: #f8fafc;

  /* Maroon scale - secondary/accent */
  --maroon-darkest: #4a0f1b;
  --maroon-dark: #5e1424;
  --maroon: #7a1d2e;
  --maroon-mid: #9a2839;
  --maroon-light: #c1485a;
  --maroon-pale: #fdf2f4;

  /* Neutrals */
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-mid: #475569;
  --ink-muted: #64748b;
  --ink-light: #94a3b8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --paper: #ffffff;
  --surface: #f8fafc;
  --surface-alt: #f1f5f9;

  --success: #059669;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,30,63,0.06), 0 1px 2px rgba(11,30,63,0.04);
  --shadow: 0 4px 12px rgba(11,30,63,0.08), 0 2px 4px rgba(11,30,63,0.05);
  --shadow-lg: 0 16px 40px rgba(11,30,63,0.12), 0 4px 12px rgba(11,30,63,0.08);
  --shadow-maroon: 0 8px 24px rgba(122,29,46,0.25);
  --shadow-blue: 0 8px 24px rgba(37,99,235,0.25);

  --font-display: 'Inter Tight', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 400; color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* Variant banner */
.variant-banner { background: var(--navy-darkest); color: white; text-align: center; padding: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; position: sticky; top: 0; z-index: 200; }
.variant-banner .accent { color: var(--maroon-light); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 58px 0; }

/* Top strip */
.top-strip { background: var(--navy-darkest); color: rgba(255,255,255,0.7); font-size: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.top-strip .container { display: flex; justify-content: space-between; align-items: center; }
.top-strip i { color: var(--maroon-light); margin-right: 6px; }

/* Nav */
.nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); padding: 12px 0; position: sticky; top: 0; z-index: 100; }
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { display: block; height: 42px; width: auto; }
.logo-mark { width: 36px; height: 36px; background: var(--navy-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 16px; font-family: var(--font-display); position: relative; box-shadow: var(--shadow-sm); }
.logo-mark::after { content: ''; position: absolute; bottom: -3px; right: -3px; width: 12px; height: 12px; background: var(--maroon); border-radius: 50%; border: 2px solid white; }
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.nav-menu { display: flex; gap: 36px; align-items: center; font-size: 14px; color: var(--ink-mid); font-weight: 500; }
.nav-menu span { cursor: pointer; transition: color 0.2s; }
.nav-menu span:hover { color: var(--navy-dark); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-size: 14px; font-weight: 600; border-radius: 10px; transition: all 0.2s; cursor: pointer; font-family: var(--font-display); letter-spacing: -0.01em; }
.btn-primary { background: var(--navy-dark); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-maroon { background: var(--maroon); color: white; box-shadow: var(--shadow-maroon); }
.btn-maroon:hover { background: var(--maroon-mid); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }
.btn-light { background: white; color: var(--navy-dark); }
.btn-light:hover { background: var(--maroon); color: white; }
.btn-outline { background: transparent; color: var(--navy-dark); border: 1.5px solid var(--line-strong); }
.btn-outline:hover { background: var(--navy-dark); color: white; border-color: var(--navy-dark); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 60%, var(--navy) 100%); color: white; padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(122,29,46,0.35) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%); pointer-events: none; }

/* subtle grid texture */
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); pointer-events: none; }

.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; background: rgba(122,29,46,0.18); border: 1px solid rgba(193,72,90,0.35); border-radius: 999px; font-size: 12px; font-weight: 500; margin-bottom: 28px; color: #f5c2cb; font-family: var(--font-mono); letter-spacing: 0.05em; }
.hero-badge .dot { width: 7px; height: 7px; background: var(--maroon-light); border-radius: 50%; box-shadow: 0 0 0 4px rgba(193,72,90,0.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.25); } }

.hero h1 { font-family: var(--font-display); font-size: clamp(44px, 5.5vw, 72px); font-weight: 800; line-height: 1.02; margin-bottom: 24px; letter-spacing: -0.035em; max-width: 720px; }
.hero h1 .highlight { color: var(--maroon-light); position: relative; }
.hero h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: var(--maroon); opacity: 0.4; z-index: -1; border-radius: 2px; }
.hero h1 .light { font-weight: 300; color: rgba(255,255,255,0.85); }

.hero p.lead { font-size: 19px; font-weight: 300; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 560px; line-height: 1.6; }
.hero p.lead strong { font-weight: 500; color: white; }

.hero-cta { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust-label { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.hero-trust-logos { display: flex; gap: 20px; opacity: 0.6; }
.hero-trust-logos span { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; }
.hero-sig { margin-top: 20px; font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.01em; color: rgba(255,255,255,0.72); }
.hero-sig span { color: var(--maroon-light); }

/* Live metric card */
.metric-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(20px); position: relative; }
.metric-card::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 40%); border-radius: var(--radius-lg); pointer-events: none; opacity: 0.5; }
.metric-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.live { display: flex; align-items: center; gap: 6px; color: var(--success); }
.live .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; animation: pulse 1.5s infinite; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 18px; transition: all 0.3s; }
.metric:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.metric-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-bottom: 8px; font-weight: 500; }
.metric-value { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.metric-value sup { font-size: 18px; color: var(--maroon-light); font-weight: 700; margin-left: 2px; vertical-align: top; }
.metric-trend { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--success); margin-top: 8px; font-weight: 500; }

/* Trust logos */
.logos { background: var(--paper); padding: 48px 0; border-bottom: 1px solid var(--line); }
.logos .label { text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.16em; }
.logo-row { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px; opacity: 0.6; }
.logo-row span { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.05em; transition: all 0.2s; }
.logo-row span:hover { color: var(--navy-dark); opacity: 1; }

/* Section heads */
.section-head { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--maroon-pale); color: var(--maroon); border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 20px; font-family: var(--font-mono); letter-spacing: 0.05em; }
.eyebrow.blue { background: var(--blue-pale); color: var(--blue); }
.eyebrow .dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; color: var(--ink); }
.section-head h2 .highlight { color: var(--maroon); }
.section-head h2 .light { font-weight: 300; color: var(--ink-soft); }
.section-head .sub { font-size: 18px; font-weight: 300; color: var(--ink-mid); line-height: 1.6; }
.section-head .sub strong { font-weight: 500; color: var(--ink); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.service::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--navy-dark); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy-dark); }
.service:hover::before { transform: scaleY(1); }
.service:nth-child(2)::before, .service:nth-child(4)::before, .service:nth-child(6)::before { background: var(--maroon); }
.service-icon { width: 56px; height: 56px; background: var(--blue-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; transition: all 0.3s; }
.service:nth-child(2) .service-icon, .service:nth-child(4) .service-icon, .service:nth-child(6) .service-icon { background: var(--maroon-pale); }
.service:hover .service-icon { transform: scale(1.05); }
.service h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.service p { font-size: 14px; font-weight: 400; color: var(--ink-mid); line-height: 1.6; margin-bottom: 20px; }
.service-pricing { padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; }
.service-price { font-family: var(--font-display); font-weight: 700; color: var(--navy-dark); font-size: 18px; letter-spacing: -0.02em; }
.service-meta { font-size: 11px; color: var(--ink-muted); font-family: var(--font-mono); }
.service-link { color: var(--maroon); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; transition: gap 0.2s; }
.service:hover .service-link { gap: 8px; }

/* Stats strip */
.stats { background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 100%); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 50%, rgba(122,29,46,0.2) 0%, transparent 60%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 2; }
.stat { text-align: left; padding: 0 8px; }
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 32px; }
.stat-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.stat-num sup { font-size: 28px; color: var(--maroon-light); font-weight: 700; margin-left: 2px; }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.85); margin-top: 14px; font-weight: 500; }
.stat-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-family: var(--font-mono); }

/* Industries */
.industries-section { background: var(--surface); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; cursor: pointer; }
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--maroon); }
.industry:hover .industry-icon { background: var(--maroon); color: white; }
.industry-icon { width: 48px; height: 48px; background: var(--blue-pale); color: var(--blue); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; transition: all 0.3s; }
.industry h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.industry p { font-size: 13px; font-weight: 400; color: var(--ink-muted); line-height: 1.5; }

/* Process */
.process-section { background: white; }
.process-wrap { position: relative; padding: 32px 0; }
.process-line { position: absolute; top: 56px; left: 6%; right: 6%; height: 2px; background: var(--line); }
.process-line-fill { position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(90deg, var(--navy-dark), var(--maroon)); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; z-index: 2; }
.process-step { text-align: center; padding: 0 16px; }
.process-num { width: 72px; height: 72px; margin: 0 auto 24px; background: white; border: 2px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink-light); transition: all 0.3s; position: relative; box-shadow: var(--shadow-sm); }
.process-step.done .process-num { background: var(--navy-dark); border-color: var(--navy-dark); color: white; box-shadow: var(--shadow); }
.process-step.active .process-num { background: var(--maroon); border-color: var(--maroon); color: white; box-shadow: var(--shadow-maroon); transform: scale(1.1); }
.process-step h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.process-step p { font-size: 13px; font-weight: 400; color: var(--ink-muted); line-height: 1.5; }

/* Testimonials */
.testi-section { background: var(--surface); }
.testi-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.testi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; position: relative; }
.testi::before { content: '"'; position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-size: 80px; color: var(--maroon); opacity: 0.15; line-height: 1; font-weight: 800; }
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--maroon-light); }
.testi-stars { color: var(--maroon); margin-bottom: 16px; font-size: 14px; letter-spacing: 2px; }
.testi-text { font-size: 16px; font-weight: 400; line-height: 1.65; margin-bottom: 24px; color: var(--ink-soft); }
.testi:first-child .testi-text { font-size: 18px; font-weight: 500; color: var(--ink); }
.testi-foot { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-family: var(--font-display); font-size: 14px; }
.av-1 { background: var(--navy-dark); }
.av-2 { background: var(--maroon); }
.av-3 { background: var(--blue); }
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
.testi-role { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

/* Featured case study */
.case-section { background: white; }
.case { background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 100%); color: white; border-radius: var(--radius-xl); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.case::before { content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(122,29,46,0.4) 0%, transparent 65%); }
.case-content { position: relative; z-index: 2; }
.case-tag { display: inline-block; padding: 5px 12px; background: rgba(193,72,90,0.2); color: #f5c2cb; border-radius: 999px; font-size: 11px; font-weight: 600; margin-bottom: 18px; font-family: var(--font-mono); letter-spacing: 0.05em; }
.case h3 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15; }
.case h3 .light { font-weight: 300; color: rgba(255,255,255,0.75); }
.case p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 28px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 2; }
.case-metric { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; backdrop-filter: blur(10px); }
.case-metric-value { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.case-metric-value sup { font-size: 18px; color: var(--maroon-light); }
.case-metric-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 8px; font-weight: 500; }

/* Pricing */
.pricing-section { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.price-card { background: white; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; transition: all 0.3s; position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy-dark); }
.price-card.featured { background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 100%); color: white; border-color: transparent; transform: scale(1.04); box-shadow: var(--shadow-lg); }
.price-card.featured::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(122,29,46,0.35) 0%, transparent 60%); border-radius: 0 var(--radius-lg) 0 0; }
.price-card .badge-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--maroon); color: white; padding: 6px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.05em; box-shadow: var(--shadow-maroon); }
.price-card .tag { display: inline-block; padding: 4px 12px; background: var(--blue-pale); color: var(--blue); border-radius: 999px; font-size: 11px; font-weight: 600; margin-bottom: 16px; font-family: var(--font-mono); letter-spacing: 0.05em; position: relative; }
.price-card.featured .tag { background: rgba(193,72,90,0.2); color: #f5c2cb; }
.price-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.025em; position: relative; }
.price-card .price { font-family: var(--font-display); font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; letter-spacing: -0.04em; position: relative; }
.price-card .price sub { font-size: 14px; color: var(--ink-muted); font-weight: 500; vertical-align: baseline; }
.price-card.featured .price sub { color: rgba(255,255,255,0.65); }
.price-card .desc { font-size: 13px; font-weight: 400; color: var(--ink-muted); margin-bottom: 28px; min-height: 44px; position: relative; line-height: 1.55; }
.price-card.featured .desc { color: rgba(255,255,255,0.75); }
.price-card ul { list-style: none; margin-bottom: 28px; position: relative; }
.price-card li { font-size: 14px; font-weight: 400; padding: 9px 0 9px 28px; position: relative; color: var(--ink-soft); }
.price-card.featured li { color: rgba(255,255,255,0.9); }
.price-card li::before { content: '✓'; position: absolute; left: 0; top: 9px; width: 18px; height: 18px; background: var(--maroon-pale); color: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.price-card.featured li::before { background: rgba(193,72,90,0.25); color: white; }
.price-card .btn { width: 100%; justify-content: center; position: relative; }

/* CTA banner */
.cta-banner { background-color: var(--maroon-darkest); background-image: linear-gradient(135deg, rgba(74,15,27,0.90) 0%, rgba(122,29,46,0.80) 50%, rgba(154,40,57,0.86) 100%), var(--cta-img, none); background-size: cover; background-position: center; color: white; padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 50%); }
.cta-banner::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); opacity: 0.5; }
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 52px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; line-height: 1.05; }
.cta-banner h2 .light { font-weight: 300; color: rgba(255,255,255,0.85); }
.cta-banner p { font-size: 18px; font-weight: 300; opacity: 0.95; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 44px; font-weight: 800; margin: 18px 0 16px; letter-spacing: -0.03em; line-height: 1.05; }
.contact-info h2 .highlight { color: var(--maroon); }
.contact-info > p { font-size: 16px; font-weight: 300; color: var(--ink-mid); margin-bottom: 36px; line-height: 1.6; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; gap: 16px; align-items: center; transition: all 0.3s; cursor: pointer; }
.contact-card:hover { background: white; box-shadow: var(--shadow); transform: translateX(4px); border-color: var(--maroon-light); }
.contact-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; }
.ci-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.ci-call { background: var(--navy-dark); }
.ci-mail { background: var(--maroon); }
.ci-loc { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.contact-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.contact-card p { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }

.form-wrap { background: white; border: 1.5px solid var(--line); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.form-wrap h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.form-wrap .form-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 28px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14px; transition: all 0.2s; background: white; color: var(--ink); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-light); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(122,29,46,0.1); }
.form-field.full { grid-column: span 2; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-foot button { width: 100%; justify-content: center; padding: 16px; }
.form-foot p { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 14px; }
.form-foot p i { color: var(--success); }

/* Footer */
.footer { background: var(--navy-darkest); color: rgba(255,255,255,0.65); padding: 72px 0 48px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--maroon), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; font-weight: 300; line-height: 1.7; margin: 20px 0; max-width: 280px; }
.footer-brand .footer-tag { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin: 20px 0 4px; }
.footer-brand .footer-tag span { color: var(--maroon-light); }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.2s; font-size: 14px; }
.social a:hover { background: var(--maroon); transform: translateY(-2px); }
.footer-col h5 { color: white; font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.01em; }
.footer-col a { display: block; padding: 6px 0; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--maroon-light); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--maroon-light); }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 154px; right: 24px; z-index: 1000; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.12); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s, visibility .3s, transform .3s, background .2s; }
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--maroon); transform: translateY(-3px); }

/* Floating */
.floating-cta { position: fixed; bottom: 88px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab-wa { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white; padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(37,211,102,0.35); cursor: pointer; transition: transform 0.2s; font-family: var(--font-display); }
.fab-wa:hover { transform: translateY(-3px) scale(1.02); }
.fab-wa i { font-size: 20px; }
.fab-chat { background: white; color: var(--ink); padding: 11px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; box-shadow: var(--shadow); cursor: pointer; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); font-family: var(--font-display); }
.fab-chat .online-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
.sticky-quote { position: fixed; bottom: 88px; left: 24px; z-index: 1000; background: var(--maroon); color: white; padding: 13px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-maroon); cursor: pointer; display: flex; align-items: center; gap: 8px; font-family: var(--font-display); }

/* =============================================================
   MOBILE NAV — hamburger button + slide-down drawer
   ============================================================= */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: white; border-bottom: 1px solid var(--line); padding: 0 24px; box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.mobile-menu.is-open { max-height: calc(100vh - 68px); padding: 16px 24px 20px; overflow-y: auto; }
.mobile-menu a { display: block; padding: 12px 4px; font-size: 15px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobile-menu a.active { color: var(--maroon); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { display: inline-flex; width: 100%; padding: 11px 18px; font-size: 14px; border-bottom: none !important; }

/* Helper grids used inline on services page and others */
.responsive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.responsive-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* =============================================================
   RESPONSIVE — Tablet (≤960px)
   ============================================================= */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section { padding: 44px 0; }
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid, .case { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .responsive-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
  .process-line { display: none; }
  .stat:not(:last-child) { border-right: none; padding-right: 0; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-quote { display: none; }
  .case { padding: 40px 28px; }
  .hero-trust { flex-wrap: wrap; gap: 14px; }
  .price-card.featured { transform: none; }
}

/* =============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================= */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 34px 0; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); margin-bottom: 18px; }
  .hero p.lead { font-size: 16px; margin-bottom: 28px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .hero-trust { padding-top: 22px; }

  /* Top strip stacks vertically with smaller text */
  .top-strip { font-size: 11px; padding: 6px 0; }
  .top-strip .container { flex-direction: column; gap: 4px; text-align: center; }
  .top-strip .container span:last-child { display: none; }

  .nav { padding: 12px 0; }
  .logo-text { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; font-size: 14px; }

  .mobile-menu { top: 60px; max-height: 0; }
  .mobile-menu.is-open { max-height: calc(100vh - 60px); }

  /* Section heads */
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(28px, 7.5vw, 36px); }
  .section-head .sub { font-size: 16px; }

  /* Services / industries / pricing / responsive grids stack */
  .services-grid, .industries-grid, .pricing-grid, .responsive-grid, .responsive-grid-3 { grid-template-columns: 1fr; }
  .service { padding: 24px; }
  .industry { padding: 22px 20px; }
  .price-card { padding: 28px 24px; }

  /* Stats: 2 cols looks cramped, go single col with smaller numbers */
  .stats { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 44px; }
  .stat-num sup { font-size: 20px; }
  .stat-label { font-size: 13px; margin-top: 10px; }
  .stat-sub { font-size: 11px; }

  /* Process steps stacked */
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-step { padding: 0; }
  .process-num { width: 60px; height: 60px; font-size: 18px; margin-bottom: 16px; }

  /* Testimonials */
  .testi { padding: 24px; }
  .testi-text { font-size: 14px; }
  .testi:first-child .testi-text { font-size: 15px; }

  /* Case study */
  .case { padding: 32px 22px; border-radius: var(--radius-lg); }
  .case h3 { font-size: 24px; }
  .case-metrics { grid-template-columns: 1fr; gap: 12px; }
  .case-metric-value { font-size: 28px; }

  /* CTA banner */
  .cta-banner { padding: 64px 0; }
  .cta-banner h2 { font-size: clamp(26px, 7.5vw, 36px); }
  .cta-banner p { font-size: 15px; margin-bottom: 28px; }
  .cta-banner-buttons { flex-direction: column; gap: 10px; }
  .cta-banner-buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 56px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom .links { gap: 16px; }

  /* Page header for inner pages */
  .page-header { padding: 64px 0 56px; }
  .page-header h1 { font-size: clamp(30px, 7.5vw, 40px); }
  .page-header p, .page-header-sub { font-size: 15px; }

  /* Metric card on hero */
  .metric-card { padding: 20px; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metric { padding: 14px; }
  .metric-value { font-size: 28px; }
  .metric-value sup { font-size: 14px; }

  /* Buttons sized for thumbs */
  .btn { padding: 12px 18px; font-size: 13px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }

  /* Floating WhatsApp — single button, smaller, less intrusive */
  .floating-cta { bottom: 76px; right: 16px; gap: 8px; }
  .fab-wa { padding: 12px 16px; font-size: 13px; }
  .fab-wa i { font-size: 16px; }
  .fab-chat { display: none; }

  /* Prose readability */
  .prose h2 { font-size: 24px; margin: 36px 0 12px; }
  .prose h3 { font-size: 19px; }
  .prose p, .prose li { font-size: 15px; }

  /* Container-narrow uses less padding on phones */
  .container-narrow { padding: 0 20px; }

  /* Breadcrumb readability */
  .breadcrumb { font-size: 12px; padding: 12px 0; }
}

/* =============================================================
   RESPONSIVE — Small phones (≤380px)
   ============================================================= */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .top-strip { font-size: 10px; }
  .hero h1 { font-size: 30px; }
  .section-head h2 { font-size: 26px; }
  .floating-cta .fab-wa { padding: 10px 14px; font-size: 12px; }
  .floating-cta .fab-wa i { font-size: 14px; }
  .stat-num { font-size: 36px; }
}


/* =============================================================
   Inner-page-specific styles (added on top of Variant C base)
   ============================================================= */

.container-narrow {
  max-width: 880px; margin: 0 auto; padding: 0 32px;
}

.section-sm {
  padding: 38px 0;
}

.page-header {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 100%); color: white; padding: 100px 0 80px; position: relative; overflow: hidden;
}

.page-header::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(122,29,46,0.3) 0%, transparent 65%); pointer-events: none;
}

.page-header-grid-bg {
  position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); pointer-events: none;
}

.page-header .container {
  position: relative; z-index: 2;
}

.page-header-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(122,29,46,0.18); border: 1px solid rgba(193,72,90,0.35); color: #f5c2cb; border-radius: 999px; font-size: 12px; font-weight: 500; margin-bottom: 24px; font-family: var(--font-mono); letter-spacing: 0.05em;
}

.page-header-eyebrow .dot {
  width: 6px; height: 6px; background: var(--maroon-light); border-radius: 50%;
}

.page-header h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; max-width: 800px;
}

.page-header h1 .highlight {
  color: var(--maroon-light);
}

.page-header h1 .light {
  font-weight: 300; color: rgba(255,255,255,0.85);
}

.page-header p {
  font-size: 19px; font-weight: 300; color: rgba(255,255,255,0.8); max-width: 640px; line-height: 1.6;
}

.breadcrumb {
  background: var(--surface); padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--ink-muted);
}

.breadcrumb a {
  color: var(--maroon); font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  margin: 0 8px; font-size: 9px; color: var(--ink-light);
}

.prose {
  max-width: 800px;
}

.prose h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 48px 0 16px; color: var(--ink);
}

.prose h3 {
  font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 32px 0 12px; color: var(--ink);
}

.prose h4 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--ink);
}

.prose p {
  font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px;
}

.prose ul, .prose ol {
  margin: 0 0 18px 24px;
}

.prose li {
  font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 8px;
}

.prose strong {
  font-weight: 600; color: var(--ink);
}

.prose a {
  color: var(--maroon); font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.prose blockquote {
  border-left: 4px solid var(--maroon); padding: 12px 0 12px 24px; margin: 24px 0; font-size: 17px; color: var(--ink-soft); font-style: italic;
}

.prose code {
  font-family: var(--font-mono); font-size: 14px; background: var(--surface); padding: 2px 6px; border-radius: 4px; color: var(--maroon);
}

.feature-list {
  display: grid; gap: 18px;
}

.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
}

.feature-tick {
  width: 28px; height: 28px; background: var(--maroon-pale); color: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}

.feature-item h4 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px; color: var(--ink-mid); line-height: 1.6;
}

.legal-body {
  font-family: var(--font-body);
}

.legal-body .legal-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.015em;
}

.legal-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--maroon);
  font-weight: 500;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body strong {
  color: var(--ink); font-weight: 600;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--maroon-light); box-shadow: var(--shadow);
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}


/* =============================================================
   Additional inner-page utilities
   ============================================================= */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.page-header-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-header-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-top: 20px;
}
.page-header-sub strong {
  font-weight: 500;
  color: white;
}

/* =============================================================
   Mobile layout fixes — About / single-service / Contact
   (override the inline grid styles below 768px)
   ============================================================= */
/* carousel nav is mobile-only — hidden on the desktop grid layout (declared
   before the media query so the mobile display:flex wins by source order) */
.m-carousel-nav { display: none; }

@media (max-width: 768px) {
  /* About — story text + "By the numbers" card stack vertically */
  .m-stack { grid-template-columns: 1fr !important; gap: 36px !important; }
  .m-stack > div[style*="sticky"] { position: static !important; top: auto !important; }

  /* About — "Six promises" two per row */
  .m-2col { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Single service — "Everything you need" cards: full width + icon on top */
  .m-stack-1 { grid-template-columns: 1fr !important; }
  .m-icontop { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }

  /* Contact — form drops below the "Whichever works for you" channels */
  .m-contact { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Swipeable carousel (team members / pricing tiers) */
  .m-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 16px 0;
    scrollbar-width: none;
  }
  .m-carousel::-webkit-scrollbar { display: none; }
  .m-carousel > * {
    flex: 0 0 100% !important;     /* one full item per view */
    scroll-snap-align: center;
    transform: none !important;    /* reset the featured pricing card's scale in the carousel */
  }

  /* nav: ‹  • • •  › below the carousel */
  .m-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }
  .m-carousel-arrow {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s, color .2s, border-color .2s;
  }
  .m-carousel-arrow:active { background: var(--navy-dark); color: #fff; border-color: transparent; }
  .m-carousel-dots { display: flex; align-items: center; gap: 8px; }
  .m-carousel-dot {
    width: 8px; height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: background .25s, width .25s;
  }
  .m-carousel-dot.is-active { width: 22px; border-radius: 5px; background: var(--maroon, #c1485a); }
}
