/* =================================================================
   ProtectGo Services - Premium Stylesheet
   Mobile-first, accessible, performance-optimized
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors (extracted from current site) */
  --brand-primary: #002F3D;        /* Deep teal - main */
  --brand-primary-dark: #001E28;   /* Darker variant */
  --brand-primary-light: #1A4858;  /* Lighter teal for hover */
  --brand-accent: #2DBFA3;         /* Green-teal accent */
  --brand-accent-dark: #229A82;
  --brand-mint: #BADFCE;           /* Light mint */
  --brand-mint-soft: #E4F2EB;      /* Soft mint background */

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-alt: #FAF9F5;               /* Warm off-white */
  --bg-soft: #F4F7F6;
  --ink: #0D141A;                  /* Near black text */
  --ink-muted: #56585E;            /* Muted body */
  --ink-soft: #727586;             /* Even softer */
  --border: #E5E9EE;
  --border-soft: #F0F3F7;

  /* Action colors */
  --whatsapp: #25D366;
  --whatsapp-hover: #1EB855;
  --warning: #F59E0B;
  --success: #10B981;
  --danger: #EF4444;

  /* Type scale (fluid) */
  --fs-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --fs-lg: clamp(1.125rem, 1.08rem + 0.3vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.18rem + 0.4vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.35rem + 0.8vw, 2rem);
  --fs-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
  --fs-4xl: clamp(2.5rem, 2rem + 2.4vw, 3.75rem);
  --fs-5xl: clamp(3rem, 2.3rem + 3.5vw, 4.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 880px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,47,61,0.05);
  --shadow: 0 6px 24px rgba(0,47,61,0.08), 0 2px 6px rgba(0,47,61,0.04);
  --shadow-lg: 0 16px 48px rgba(0,47,61,0.12), 0 4px 12px rgba(0,47,61,0.06);
  --shadow-xl: 0 28px 80px rgba(0,47,61,0.18), 0 6px 18px rgba(0,47,61,0.08);
  --shadow-glow: 0 0 0 4px rgba(45,191,163,0.18);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur: 280ms;
  --dur-slow: 520ms;

  /* Containers */
  --header-h: 72px;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand-accent); }

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--fs-5xl); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p { margin: 0 0 var(--space-4); color: var(--ink-muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  background: var(--brand-mint-soft);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(45,191,163,0.15);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(45,191,163,0.2);
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container-narrow { max-width: var(--max-w-narrow); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
section { padding: var(--space-9) 0; position: relative; }
section.tight { padding: var(--space-7) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: var(--fs-base);
  border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(45,191,163,0.32);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 32px rgba(45,191,163,0.45); }
.btn-dark {
  background: var(--brand-primary);
  color: #fff;
}
.btn-dark:hover { background: var(--brand-primary-light); color: #fff; box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-ghost { color: var(--brand-primary); padding: 10px 18px; }
.btn-ghost:hover { background: var(--brand-mint-soft); color: var(--brand-primary); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.btn-large { padding: 18px 36px; font-size: var(--fs-lg); }
.btn-block { display: flex; width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--brand-primary);
  color: #E8F2F5;
  font-size: var(--fs-xs);
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--brand-mint); }
.topbar-info { display: flex; gap: var(--space-5); align-items: center; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.topbar-phone svg { color: var(--brand-mint); flex-shrink: 0; }
.topbar-hours {
  color: rgba(232,242,245,0.78);
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}
.topbar-hours::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(186,223,206,0.4);
  transform: translateY(-50%);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: var(--space-5);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--brand-primary);
  font-family: 'Montserrat', sans-serif;
}
.brand img { height: 44px; width: auto; }
.nav-links { display: none; gap: var(--space-5); align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: var(--fs-sm);
  padding: 10px 4px; position: relative;
}
.nav-links a:hover { color: var(--brand-accent); }
.nav-links a::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 4px;
  height: 2px; background: var(--brand-accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; gap: var(--space-3); align-items: center; }
.lang-toggle {
  display: inline-flex; gap: 4px; align-items: center;
  background: var(--bg-soft); padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.lang-toggle button {
  padding: 6px 12px; font-size: var(--fs-xs); font-weight: 600;
  border-radius: var(--radius-pill); color: var(--ink-muted);
  transition: all var(--dur) var(--ease);
}
.lang-toggle button.active {
  background: var(--brand-primary); color: #fff;
}
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--bg-soft);
}
.menu-toggle:hover { background: var(--brand-mint-soft); }
.menu-toggle svg { width: 24px; height: 24px; stroke: var(--brand-primary); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: var(--space-6);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 var(--space-6); display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 16px 18px;
  font-size: var(--fs-lg); font-weight: 600;
  color: var(--brand-primary); border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.mobile-menu a:hover { background: var(--brand-mint-soft); }
.mobile-menu .btn { display: flex; margin-bottom: var(--space-3); }
.mobile-menu .lang-toggle { width: 100%; justify-content: center; margin-top: var(--space-5); }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: var(--space-8) 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/mnlW350OyyiWaanw/truck-motion-mjEGJqbzWBhr60R9.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(0,30,40,0.92) 0%, rgba(0,47,61,0.78) 42%, rgba(0,47,61,0.45) 70%, rgba(0,47,61,0.25) 100%);
}
.hero-inner {
  max-width: 720px;
  color: #fff;
  position: relative; z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-5);
}
.hero h1 .accent {
  color: var(--brand-accent);
  background: linear-gradient(120deg, var(--brand-accent) 0%, var(--brand-mint) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
  max-width: 560px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: var(--space-6); margin-top: var(--space-7);
  flex-wrap: wrap;
}
.hero-trust > div {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: var(--fs-sm); font-weight: 500;
}
.hero-trust svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--brand-accent); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(45,191,163,0.3);
  animation: pulse 2s var(--ease) infinite;
}

/* ---------- Hero grid (with WhatsApp micro-form) ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
  width: 100%;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-8); }
}
.hero-promises {
  list-style: none; padding: 0; margin: var(--space-6) 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-promises li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  line-height: 1.45;
}
.hero-promises svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  color: var(--brand-accent);
  background: rgba(45,191,163,0.18);
  padding: 3px;
  border-radius: 50%;
}

/* WhatsApp micro-form card */
.hero-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  position: relative;
  color: var(--ink);
}
.hero-form::before {
  content: "";
  position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(135deg, var(--brand-accent), var(--whatsapp));
  border-radius: var(--radius-xl);
  opacity: 0.6;
  filter: blur(20px);
}
.hero-form-eyebrow {
  display: inline-block;
  background: var(--brand-mint-soft);
  color: var(--brand-accent-dark);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
.hero-form-title {
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--brand-primary);
}
.hero-form-sub {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.qf-field {
  display: flex; flex-direction: column; gap: 4px;
}
.qf-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.qf-field input,
.qf-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: all var(--dur) var(--ease);
}
.qf-field input:focus,
.qf-field select:focus {
  outline: none;
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
}
.qf-or {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  margin: var(--space-2) 0;
  position: relative;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(45,191,163,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(45,191,163,0.0); }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  padding: var(--space-6) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  text-align: center;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-3xl); font-weight: 800;
  color: var(--brand-mint);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---------- Trust / "Why us" cards ---------- */
.section-head { text-align: center; margin-bottom: var(--space-7); max-width: 760px; margin-inline: auto; }
.section-head .eyebrow { margin-inline: auto; }
.section-head p { font-size: var(--fs-lg); color: var(--ink-muted); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-mint);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-mint-soft), var(--brand-mint));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.feature-icon svg { width: 28px; height: 28px; color: var(--brand-primary); }
.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}
.feature-card p { font-size: var(--fs-sm); margin: 0; }

/* ---------- Coverage cards (insurance types) ---------- */
.coverage-section {
  background: linear-gradient(180deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(45,191,163,0.15), transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(45,191,163,0.1), transparent 50%);
  pointer-events: none;
}
.coverage-section .section-head h2 { color: #fff; }
.coverage-section .section-head p { color: rgba(255,255,255,0.78); }
.coverage-section .eyebrow { background: rgba(45,191,163,0.18); color: var(--brand-mint); }
.coverage-section .eyebrow::before { background: var(--brand-mint); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  position: relative;
}
@media (min-width: 720px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .coverage-grid { grid-template-columns: repeat(3, 1fr); } }
.coverage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-mint));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.coverage-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,191,163,0.4);
  transform: translateY(-4px);
}
.coverage-card:hover::before { transform: scaleX(1); }
.coverage-card h3 {
  color: #fff; font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
}
.coverage-card p { color: rgba(255,255,255,0.78); font-size: var(--fs-sm); margin: 0 0 var(--space-4); }
.coverage-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(45,191,163,0.15); color: var(--brand-mint);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.coverage-cta { text-align: center; margin-top: var(--space-7); }

/* ---------- Two-column "About + image" ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
}
.badge-experience {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: #fff;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  box-shadow: var(--shadow-xl);
  font-weight: 800;
}
.badge-experience .num { font-size: 1.8rem; line-height: 1; }
.badge-experience .lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.split-text h2 { font-size: var(--fs-3xl); }
.checklist { list-style: none; padding: 0; margin: var(--space-5) 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--fs-base); color: var(--ink); font-weight: 500;
}
.checklist svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--brand-accent);
}

/* ---------- Services 3-card row ---------- */
.services-bg {
  background: var(--bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 880px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card-media {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
.service-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,47,61,0.15), rgba(0,47,61,0.65));
}
.service-card-body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex; flex-direction: column; flex: 1;
}
.service-card-body h3 { font-size: var(--fs-xl); }
.service-card-body p { flex: 1; }

/* ---------- Discount banner ---------- */
.discount-banner {
  background: linear-gradient(135deg, #BADFCE 0%, #E4F2EB 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) { .discount-banner { grid-template-columns: 3fr 2fr; padding: var(--space-8) var(--space-9); } }
.discount-banner::before {
  content: "20%";
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(0,47,61,0.04);
  right: -40px; top: -120px;
  pointer-events: none;
  line-height: 1;
}
.discount-banner h2 { font-size: var(--fs-3xl); }
.discount-banner p { font-size: var(--fs-base); color: var(--brand-primary); opacity: 0.85; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 880px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: all var(--dur) var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-lg); border-color: var(--brand-mint); }
.testimonial::before {
  content: """;
  position: absolute; top: -10px; left: 22px;
  font-family: 'Georgia', serif;
  font-size: 5rem;
  color: var(--brand-accent);
  line-height: 1;
  opacity: 0.3;
}
.stars { color: #FFB400; margin-bottom: var(--space-3); font-size: var(--fs-base); letter-spacing: 2px; }
.testimonial-text {
  font-size: var(--fs-base);
  color: var(--ink); line-height: 1.65;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
  color: #fff; font-weight: 700; font-size: var(--fs-base);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-info strong { display: block; color: var(--brand-primary); font-size: var(--fs-sm); }
.testimonial-info span { font-size: var(--fs-xs); color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.faq-item[open] {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--brand-primary);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--brand-mint-soft);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 400;
  transition: all var(--dur) var(--ease);
}
.faq-item[open] summary::after {
  content: "−"; background: var(--brand-accent); color: #fff;
}
.faq-body { padding: 0 var(--space-5) var(--space-5); }
.faq-body p { color: var(--ink-muted); margin: 0; }

/* ---------- Final CTA / Contact form ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; right: -10%; top: -50%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(45,191,163,0.18) 0%, transparent 60%);
}
.cta-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-7);
  align-items: start;
}
@media (min-width: 980px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); } }
.cta-text h2 { color: #fff; font-size: var(--fs-3xl); }
.cta-text p { color: rgba(255,255,255,0.8); font-size: var(--fs-base); }
.cta-text .eyebrow { background: rgba(45,191,163,0.18); color: var(--brand-mint); }
.cta-text .eyebrow::before { background: var(--brand-mint); }

.contact-list { list-style: none; padding: 0; margin: var(--space-6) 0 0; display: flex; flex-direction: column; gap: var(--space-4); }
.contact-list li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.9); }
.contact-list a { color: #fff; font-weight: 600; }
.contact-list a:hover { color: var(--brand-mint); }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-mint);
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }

.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  color: var(--ink);
  box-shadow: var(--shadow-xl);
}
.form-card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-2); }
.form-card .form-sub { color: var(--ink-muted); font-size: var(--fs-sm); margin-bottom: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--brand-primary); letter-spacing: 0.06em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: all var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder {
  color: #9AA0A8;
  opacity: 1;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-glow);
}
.qf-field input::placeholder { color: #9AA0A8; opacity: 1; }
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; margin-top: var(--space-2); }
.form-trust {
  font-size: var(--fs-xs); text-align: center; color: var(--ink-soft);
  margin-top: var(--space-4);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-status {
  text-align: center; padding: var(--space-3);
  border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 500;
  margin-top: var(--space-3);
}
.form-status.success { background: rgba(16,185,129,0.1); color: var(--success); }
.form-status.error { background: rgba(239,68,68,0.1); color: var(--danger); }

/* ---------- Footer (premium) ---------- */
.footer-cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-9) 0;
  color: #fff;
}
.footer-cta::before {
  content: "";
  position: absolute;
  right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(45,191,163,0.22), transparent 60%);
  pointer-events: none;
}
.footer-cta::after {
  content: "";
  position: absolute;
  left: -5%; bottom: -30%;
  width: 40%; height: 120%;
  background: radial-gradient(circle, rgba(186,223,206,0.12), transparent 60%);
  pointer-events: none;
}
.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .footer-cta-grid { grid-template-columns: 1.3fr 1fr; gap: var(--space-8); }
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.footer-cta h2 .accent {
  background: linear-gradient(120deg, var(--brand-accent) 0%, var(--brand-mint) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-cta p {
  color