:root {
  /* Brand colors — exact HEX */
  --madras-blue: #004ebc;
  --madras-blue-dark: #003a8f;
  --madras-orange: #ff5a00;
  --madras-orange-dark: #d94900;
  --madras-yellow: #ffd600;
  --madras-cream: #fefcf0;
  --madras-red: #ff304f;

  /* Google brand colors (for the "Google" wordmark in trust badges) */
  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-yellow: #fbbc05;
  --g-green: #34a853;

  --ink: #050708;
  --muted: #555b66;
  --paper: #ffffff;
  --soft-blue: #eaf2ff;
  --soft-yellow: #fff6bf;
  --soft-orange: #fff0e8;
  --soft-cream: #fdf8e3;
  --line: rgba(5, 7, 8, 0.12);
  --surface: #ffffff;
  --shadow-soft: 0 18px 44px rgba(0, 78, 188, 0.12);
  --shadow-color: 0 22px 52px rgba(255, 90, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 90% -120px, rgba(255, 214, 0, 0.18), transparent 70%),
    radial-gradient(900px 500px at -10% 200px, rgba(0, 78, 188, 0.08), transparent 70%),
    var(--madras-cream);
  font-family:
    "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ==========================
   HEADER
   ========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(254, 252, 240, 0.94);
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-yellow), var(--madras-orange));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: transparent;
  background:
    linear-gradient(90deg, var(--madras-blue) 0 28%, var(--madras-yellow) 28% 48%, var(--madras-orange) 48% 68%, var(--madras-blue) 68% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 8px;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.brand-mark::after {
  content: "✦";
  position: absolute;
  top: -12px;
  right: -10px;
  color: var(--madras-yellow);
  font-size: 1.4rem;
  text-shadow: 0 0 12px rgba(255, 214, 0, 0.8);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #4f5663;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 0.95;
}

.brand small {
  margin-top: 4px;
  color: var(--madras-red);
  font-size: 0.74rem;
  font-weight: 900;
}

/* ==========================
   GOOGLE TRUST BADGE (header)
   ========================== */
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 9px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.g-badge:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
}

.g-avatars {
  display: inline-flex;
}

.g-avatar {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: -7px;
  color: #fff;
  background: var(--madras-blue);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.g-avatar:first-child {
  margin-left: 0;
}

.a-blue { background: var(--madras-blue); }
.a-orange { background: var(--madras-orange); }
.a-yellow { background: var(--madras-yellow); color: var(--madras-blue); }
.a-more {
  background: #f1f3f6;
  color: #1f2330;
  font-size: 0.58rem;
}

.g-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.g-stars {
  color: #fbbc05;
  font-size: 0.92rem;
  letter-spacing: 1px;
}

.g-text {
  margin-top: 2px;
  color: #1f2330;
  font-size: 0.78rem;
  font-weight: 600;
}

.g-text strong {
  font-weight: 900;
}

.g-word {
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.g-b { color: var(--g-blue); }
.g-r { color: var(--g-red); }
.g-y { color: var(--g-yellow); }
.g-bb { color: var(--g-blue); }
.g-g { color: var(--g-green); }
.g-rr { color: var(--g-red); }

/* ==========================
   NAV + HEADER CTA
   ========================== */
.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--madras-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:first-child,
.nav a:hover {
  color: var(--madras-blue);
}

.nav a:first-child::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--surface);
  background: var(--madras-orange);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(255, 90, 0, 0.25);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--madras-orange-dark);
  box-shadow: 0 14px 30px rgba(255, 90, 0, 0.32);
}

/* ==========================
   HERO
   ========================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  grid-template-areas:
    "content media"
    "content insight";
  column-gap: clamp(22px, 4vw, 56px);
  row-gap: 18px;
  align-items: start;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) 0 44px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 34px;
  right: -4vw;
  z-index: -1;
  width: 54vw;
  max-width: 720px;
  aspect-ratio: 1.5;
  background:
    linear-gradient(135deg, rgba(255, 214, 0, 0.55), rgba(255, 90, 0, 0.25)),
    var(--soft-yellow);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero::after {
  content: "★";
  position: absolute;
  top: 68px;
  left: -8px;
  color: var(--madras-blue);
  font-size: 2.2rem;
}

.hero-media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  border: 5px solid var(--surface);
  border-bottom: 8px solid var(--madras-yellow);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 78, 188, 0.08), rgba(255, 90, 0, 0.12));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-overlay {
  display: none;
}

.hero-content {
  grid-area: content;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--madras-orange);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  display: block;
  width: 78px;
  height: 6px;
  margin-top: 9px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-yellow), var(--madras-orange));
  border-radius: 8px;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  max-width: 980px;
  color: var(--ink);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 720px;
  font-size: 5rem;
}

.hero h1::first-line {
  color: var(--madras-blue);
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #202530;
  font-size: 1.2rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Hero trust strip (under CTAs) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #2a313d;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust li span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--surface);
  background: var(--madras-blue);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 950;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--surface);
  background: var(--madras-orange);
  box-shadow: var(--shadow-color);
}

.btn-primary::before {
  content: "✚";
  margin-right: 8px;
  font-size: 0.92rem;
}

.btn-primary:hover {
  background: var(--madras-orange-dark);
}

.btn-secondary {
  color: var(--surface);
  background: var(--madras-blue);
  box-shadow: 0 14px 28px rgba(0, 78, 188, 0.2);
}

.btn-secondary::before {
  content: "▣";
  margin-right: 8px;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: var(--madras-blue-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 690px;
  margin: 26px 0 0;
}

.hero-facts div {
  width: 100%;
  min-height: 100px;
  padding: 14px 16px;
  background: var(--surface);
  border: 2px solid var(--madras-blue);
  border-bottom-color: var(--madras-orange);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 78, 188, 0.09);
}

.hero-facts dt {
  color: var(--madras-orange);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 950;
}

.hero-insight {
  grid-area: insight;
  align-self: stretch;
  padding: 18px;
  color: var(--ink);
  background: var(--surface);
  border: 3px solid var(--madras-yellow);
  border-left-color: var(--madras-blue);
  border-bottom-color: var(--madras-orange);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-insight strong {
  display: block;
  max-width: 340px;
  color: var(--madras-blue);
  font-size: 1.48rem;
  line-height: 1.08;
}

.hero-insight p {
  margin: 10px 0 0;
  color: var(--muted);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.insight-list span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: var(--ink);
  background: linear-gradient(90deg, var(--soft-blue), #ffffff);
  border: 1px solid rgba(0, 78, 188, 0.16);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.insight-list span::before {
  content: "★";
  margin-right: 9px;
  color: var(--madras-yellow);
  text-shadow: 0 1px 0 var(--madras-orange);
}

/* ==========================
   STATS STRIP
   ========================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100% - 36px));
  margin: 8px auto 0;
  padding: 28px 22px;
  background: var(--surface);
  border: 2px solid rgba(0, 78, 188, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 78, 188, 0.08);
  overflow: hidden;
  position: relative;
}

.stats-strip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-yellow), var(--madras-orange));
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 14px;
  border-right: 1px solid rgba(0, 78, 188, 0.1);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
  color: var(--madras-blue);
  letter-spacing: -0.02em;
}

.stat:nth-child(2) strong { color: var(--madras-orange); }
.stat:nth-child(4) strong { color: var(--madras-orange); }

.stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.stat-google strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f2330 !important;
}

.stat-google strong::after {
  content: "★★★★★";
  display: block;
  margin-left: 4px;
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ==========================
   INTENT BAND
   ========================== */
.intent-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 48px 0 0;
  background: var(--madras-yellow);
  border-top: 5px solid var(--madras-blue);
  border-bottom: 5px solid var(--madras-orange);
}

.intent-item {
  min-height: 130px;
  padding: 26px max(22px, calc((100vw - 1180px) / 2 + 20px));
  background: transparent;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
}

.intent-item:nth-child(2),
.intent-item:nth-child(3) {
  padding-left: 28px;
}

.intent-item:last-child {
  border-right: 0;
}

.intent-item span,
.details-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--madras-blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.intent-item span::before {
  content: "★";
  margin-right: 8px;
}

.intent-item strong {
  display: block;
  max-width: 410px;
  color: var(--surface);
  font-size: 1.26rem;
  line-height: 1.22;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* ==========================
   SECTIONS COMMON
   ========================== */
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 84px) 0;
}

.two-columns,
.proof,
.details,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section h2,
.contact-section h2 {
  font-size: 3.1rem;
}

.section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.two-columns > div:first-child {
  position: sticky;
  top: 120px;
}

.benefit-grid,
.outcome-list,
.method-grid,
.details-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid article,
.outcome-list article,
.method-grid article,
.proof-panel,
.lead-form,
.details-grid div,
details {
  position: relative;
  background: var(--surface);
  border: 2px solid rgba(0, 78, 188, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 78, 188, 0.08);
}

.benefit-grid article,
.outcome-list article,
.method-grid article {
  padding: 26px;
  overflow: hidden;
}

.benefit-grid article::before,
.method-grid article::before,
.details-grid div::before,
.outcome-list article::before,
details::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-yellow), var(--madras-orange));
}

.benefit-grid article:first-child {
  background: var(--madras-blue);
  border-color: var(--madras-blue);
}

.benefit-grid article:first-child h3,
.benefit-grid article:first-child p {
  color: var(--surface);
}

.benefit-grid article:nth-child(2) {
  background: var(--soft-yellow);
}

.benefit-grid article:nth-child(3) {
  background: var(--soft-blue);
}

.benefit-grid article:nth-child(4) {
  background: var(--soft-orange);
}

.benefit-grid h3,
.outcome-list h3,
.method-grid h3,
.proof-panel strong {
  margin: 14px 0 8px;
  font-size: 1.3rem;
  line-height: 1.18;
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--surface);
  background: var(--madras-orange);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.benefit-grid article:first-child .card-index {
  color: var(--madras-blue);
  background: var(--madras-yellow);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.outcomes {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 78, 188, 0.08), rgba(255, 214, 0, 0.28), rgba(255, 90, 0, 0.12)),
    #fffdf3;
  border-top: 5px solid var(--madras-yellow);
  border-bottom: 5px solid var(--madras-blue);
}

.outcome-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-list article {
  min-height: 190px;
}

.outcome-list h3 {
  color: var(--madras-blue);
}

.outcome-list h3::before,
.method-grid h3::before,
.timeline h3::before {
  content: "★";
  margin-right: 8px;
  color: var(--madras-yellow);
  text-shadow: 0 1px 0 var(--madras-orange);
}

.program {
  padding-bottom: clamp(54px, 6vw, 84px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  min-height: 290px;
  padding: 24px;
  background: var(--surface);
  border: 2px solid rgba(0, 78, 188, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 78, 188, 0.08);
}

.timeline article:nth-child(1) {
  background: var(--soft-blue);
}

.timeline article:nth-child(2) {
  background: var(--soft-orange);
}

.timeline article:nth-child(3) {
  background: #fff9dc;
}

.timeline article:nth-child(4) {
  color: var(--surface);
  background: var(--madras-blue);
  border-color: var(--madras-blue);
}

.timeline article:nth-child(4) p {
  color: rgba(255, 255, 255, 0.86);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--surface);
  background: var(--madras-orange);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 950;
}

.timeline article:nth-child(4) span {
  color: var(--madras-blue);
  background: var(--madras-yellow);
}

.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

/* ==========================
   TESTIMONIALS
   ========================== */
.testimonials {
  padding-top: clamp(48px, 5vw, 74px);
  padding-bottom: clamp(48px, 5vw, 74px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  position: relative;
  padding: 26px;
  background: var(--surface);
  border: 2px solid rgba(0, 78, 188, 0.1);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 78, 188, 0.08);
  display: flex;
  flex-direction: column;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-yellow), var(--madras-orange));
  border-radius: 10px 10px 0 0;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-stars {
  color: #fbbc05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  color: #1f2330;
  background: #f5f7fa;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.testimonial-source::before {
  content: "G";
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: #fff;
  background: var(--g-blue);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.testimonial blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.45;
  flex: 1;
}

.testimonial footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.testimonial footer strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.testimonial footer small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ==========================
   PROOF / INTERVENANT
   ========================== */
.proof {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(255, 214, 0, 0.24), transparent 44%),
    var(--madras-blue);
  border-top: 5px solid var(--madras-orange);
  border-bottom: 5px solid var(--madras-yellow);
}

.proof h2,
.proof .section-kicker {
  color: var(--surface);
}

.proof .section-kicker::after {
  background: linear-gradient(90deg, var(--surface), var(--madras-yellow), var(--madras-orange));
}

.proof p {
  color: rgba(255, 255, 255, 0.9);
}

.proof p strong {
  color: var(--madras-yellow);
}

.proof-panel {
  padding: 30px;
  color: var(--ink);
  background: var(--surface);
  border: 3px solid var(--madras-yellow);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.15);
}

.proof-panel strong {
  display: block;
  color: var(--madras-orange);
  font-size: 2.1rem;
  line-height: 1.05;
}

.proof-panel ul,
.contact-points {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.proof-panel li {
  margin: 9px 0;
}

.methods {
  padding-bottom: clamp(48px, 5vw, 72px);
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-grid article {
  min-height: 190px;
}

.method-grid article:nth-child(1) {
  background: var(--soft-blue);
}

.method-grid article:nth-child(2) {
  background: #fff9dc;
}

.method-grid article:nth-child(3) {
  background: var(--soft-orange);
}

.details {
  padding-top: 0;
  padding-bottom: clamp(42px, 5vw, 66px);
}

.details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.details-grid div {
  min-height: 124px;
  padding: 22px;
  overflow: hidden;
}

.details-grid div:nth-child(2),
.details-grid div:nth-child(3) {
  background: #fff9dc;
}

.details-grid div:nth-child(4) {
  background: var(--soft-orange);
}

.details-grid strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.faq {
  padding-top: 0;
  padding-bottom: clamp(48px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

summary::marker {
  color: var(--madras-orange);
}

details p {
  margin: 10px 0 0;
}

/* ==========================
   CONTACT
   ========================== */
.contact-section {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(52px, 6vw, 78px);
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  color: var(--ink);
  background: var(--madras-yellow);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(255, 214, 0, 0.32);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--madras-blue), var(--madras-orange));
}

.contact-section .section-kicker {
  color: var(--madras-orange);
}

.contact-section p {
  color: #22252b;
}

.contact-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #22252b;
  font-weight: 800;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.contact-points li span {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #fff;
  background: var(--madras-blue);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 950;
}

/* Mini reassurance block inside contact */
.contact-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 16px;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-trust .g-stars {
  font-size: 1rem;
}

.contact-trust p {
  margin: 0;
  color: #1f2330 !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 3px solid var(--madras-blue);
  border-bottom-color: var(--madras-orange);
  box-shadow: 0 18px 40px rgba(0, 78, 188, 0.14);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row.split {
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 2px solid rgba(0, 78, 188, 0.18);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 214, 0, 0.55);
  border-color: var(--madras-blue);
}

.form-submit {
  width: 100%;
  min-height: 54px;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--surface);
  background: var(--madras-blue);
  border-top: 5px solid var(--madras-orange);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--madras-yellow);
}

/* ==========================
   MOBILE STICKY CTA
   ========================== */
.mobile-cta {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  padding: 12px 20px;
  text-align: center;
  color: var(--surface);
  background: var(--madras-orange);
  border-radius: 12px;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(255, 90, 0, 0.4);
}

.mobile-cta-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0.92;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(210px, auto) auto auto;
    gap: 16px;
  }

  .g-badge {
    grid-column: 1 / -1;
    order: 4;
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(200px, 1fr) auto;
    gap: 14px;
  }

  .g-badge {
    grid-column: 1 / -1;
    justify-self: start;
    order: 4;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .header-cta {
    grid-column: 2;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "media"
      "insight";
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-media img {
    height: 330px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2.8rem;
  }

  .intent-item {
    padding-right: 26px;
    padding-left: 26px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .stat {
    border-right: 0;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(0, 78, 188, 0.1);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .intent-band {
    grid-template-columns: 1fr;
  }

  .intent-item {
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  }

  .intent-item:last-child {
    border-bottom: 0;
  }

  .two-columns,
  .proof,
  .details,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .two-columns > div:first-child {
    position: static;
  }

  .outcome-list,
  .timeline,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 2.5rem;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  /* Compact Google badge for mobile header */
  .g-badge {
    justify-self: start;
    padding: 6px 11px 6px 7px;
  }

  .g-avatars {
    display: none;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    justify-content: stretch;
    overflow: visible;
  }

  .nav a {
    justify-content: center;
    min-height: 38px;
    padding: 0 6px;
    background: var(--soft-blue);
    border-radius: 8px;
    font-size: 0.84rem;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    padding: 44px 0 54px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 2.3rem;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-trust,
  .hero-facts {
    max-width: 360px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-facts div {
    width: 100%;
  }

  .hero-media img {
    height: 260px;
  }

  .hero-insight {
    max-width: 360px;
    padding: 20px;
  }

  .insight-list {
    grid-template-columns: 1fr;
  }

  .hero-insight strong {
    font-size: 1.45rem;
  }

  .stats-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr 1fr;
    padding: 22px 16px;
    margin-top: 0;
  }

  .stat strong {
    font-size: 1.8rem;
  }

  .stat-google strong::after {
    font-size: 0.85rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 56px 0;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .benefit-grid,
  .outcome-list,
  .timeline,
  .method-grid,
  .details-grid,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .method-grid article,
  .outcome-list article {
    min-height: auto;
  }

  .proof,
  .outcomes {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-section {
    width: calc(100% - 24px);
    padding: 28px 16px;
  }

  /* Show sticky mobile CTA only on small screens */
  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 90px;
  }
}
