/* ============================================================
   BRADENTON PLUMBING RESCUE — styles.css
   emergencyplumberbradenton.com
   Manrope (headings) + Source Sans 3 (body)
   ============================================================ */

/* 1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Primary palette */
  --c-primary:     #0C1F3F;
  --c-primary-50:  #EEF2F8;
  --c-primary-100: #DDEAF5;
  --c-primary-200: #B8D0E8;
  --c-primary-700: #162D57;
  --c-primary-900: #060F1E;

  /* Accent */
  --c-accent:      #E8290B;
  --c-accent-dark: #B81F07;
  --c-accent-light:#FDECEA;

  /* Neutrals */
  --c-white:       #FFFFFF;
  --c-off-white:   #F8F7F4;
  --c-mid:         #64748B;
  --c-border:      #E2E8F0;
  --c-dark:        #060F1E;
  --c-text:        #1A2A42;

  /* Typography scale */
  --t-h1:   clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  --t-h2:   clamp(2rem, 4vw, 3rem);
  --t-h3:   clamp(1.25rem, 2vw, 1.5rem);
  --t-body: clamp(1.0625rem, 1.2vw, 1.125rem);
  --t-sm:   0.9375rem;
  --t-xs:   0.8125rem;

  /* Spacing */
  --gap:    1.5rem;
  --radius: 20px;
  --radius-sm: 10px;
  --section-pad: clamp(4rem, 7vw, 7rem);

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(12,31,63,0.06), 0 8px 32px rgba(12,31,63,0.10), 0 0 0 1px rgba(12,31,63,0.05);
  --shadow-card-hover: 0 6px 20px rgba(12,31,63,0.12), 0 24px 60px rgba(12,31,63,0.14), 0 0 0 1px rgba(12,31,63,0.08);
  --shadow-btn: 0 4px 16px rgba(232,41,11,0.35);
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 100%;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  /* mobile: space for sticky call bar */
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--c-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary);
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }

p { max-width: 68ch; }
p + p { margin-top: 1em; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: clamp(1.0625rem, 1.3vw, 1.2rem);
  color: var(--c-mid);
  margin-top: 0.75rem;
  max-width: 54ch;
}

/* Accent underline on hero phrase */
.accent-mark {
  position: relative;
  display: inline;
}
.accent-mark::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 0.12em;
  background: var(--c-accent);
  border-radius: 2px;
}

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: var(--section-pad);
}
.section--white    { background: var(--c-white); }
.section--off      { background: var(--c-off-white); }
.section--tint     { background: var(--c-primary-50); }
.section--dark     { background: var(--c-dark); color: var(--c-off-white); }
.section--dark h2,
.section--dark h3  { color: var(--c-white); }

/* Angled divider */
.section--clip-top    { clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%); margin-top: -2rem; padding-top: calc(var(--section-pad) + 2rem); }
.section--clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); padding-bottom: calc(var(--section-pad) + 2rem); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.flex    { display: flex; gap: var(--gap); align-items: center; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,41,11,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-border);
}
.btn-secondary:hover { border-color: var(--c-primary); background: var(--c-primary-50); }
.btn-white {
  background: #fff;
  color: var(--c-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--c-off-white); transform: translateY(-1px); }

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-full { width: 100%; justify-content: center; }

/* 6. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-primary);
  box-shadow: 0 2px 16px rgba(6,15,30,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav__logo img, .nav__logo svg { height: 40px; width: auto; }
.nav__logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav__logo-text span { color: var(--c-accent); }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 0.5rem;
  display: none;
  z-index: 200;
  border: 1px solid var(--c-border);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  color: var(--c-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
.nav__dropdown a:hover { background: var(--c-primary-50); color: var(--c-primary); }

.nav__cta { display: none; }
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255,255,255,0.1);
  transition: background 0.15s;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger:hover { background: rgba(255,255,255,0.2); }
.nav__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  display: block;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 74px;
  background: var(--c-dark);
  overflow-y: auto;
  z-index: 800;
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile-section { margin-bottom: 1.5rem; }
.nav__mobile-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}
.nav__mobile .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* 7. HERO
   ============================================================ */
.hero {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
}

/* Gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(22,45,87,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(232,41,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
}

/* Rescue tape diagonal stripe */
.hero__tape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--c-accent) 0,
    var(--c-accent) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}

.hero__content { color: #fff; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,41,11,0.15);
  border: 1px solid rgba(232,41,11,0.35);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-family: 'Manrope', sans-serif;
  font-size: var(--t-xs);
  font-weight: 700;
  color: #FF6B52;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(232,41,11,0.3);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,41,11,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(232,41,11,0.1); }
}

.hero__h1 {
  font-size: var(--t-h1);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Trust chips */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: var(--t-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.trust-chip svg { width: 14px; height: 14px; color: #4ADE80; flex-shrink: 0; }

.hero__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.25rem;
  max-width: 40ch;
  line-height: 1.5;
}

/* Floating glass cards */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__scene { width: 100%; max-width: 520px; }

.glass-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.glass-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.glass-card__icon svg { width: 18px; height: 18px; color: #fff; }
.glass-card__sub { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.65); }

.glass-card--tl { top: 10%; left: -8%; }
.glass-card--br { bottom: 12%; right: -6%; }
.glass-card--ml { bottom: 38%; left: -10%; }

@media (max-width: 1023px) {
  .glass-card { display: none; }
}

/* 8. COMMAND STRIP
   ============================================================ */
.command-strip {
  background: var(--c-accent);
  padding-block: 1.25rem;
  text-align: center;
}
.command-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.command-strip__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #fff;
  letter-spacing: -0.01em;
}
.command-strip__phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s;
}
.command-strip__phone:hover { opacity: 0.85; }
.command-strip__phone svg { width: 24px; height: 24px; }

/* 9. CARDS
   ============================================================ */
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Icon square */
.icon-sq {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--c-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.icon-sq svg { width: 24px; height: 24px; color: var(--c-primary); stroke-width: 2; }
.icon-sq--accent { background: var(--c-accent-light); }
.icon-sq--accent svg { color: var(--c-accent); }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-accent);
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 0.625rem; }
.arrow-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* 10. BENTO GRID (Services)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bento__item {
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.bento__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.bento__item--featured {
  background: var(--c-primary);
  border-color: var(--c-primary-700);
  color: rgba(255,255,255,0.85);
}
.bento__item--featured h3,
.bento__item--featured .bento__title { color: #fff; }
.bento__item--featured .icon-sq { background: rgba(255,255,255,0.12); }
.bento__item--featured .icon-sq svg { color: var(--c-accent); }
.bento__item--featured .arrow-link { color: #FF9074; }

/* Rescue tape accent on featured card */
.bento__item--featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--c-accent);
}

.bento__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: var(--t-h3);
  color: var(--c-primary);
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
}
.bento__blurb {
  font-size: 0.9375rem;
  color: var(--c-mid);
  line-height: 1.6;
}
.bento__item--featured .bento__blurb { color: rgba(255,255,255,0.7); }

@media (min-width: 640px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--featured { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento__item--featured { grid-column: span 1; grid-row: span 2; }
}

/* 11. SYMPTOM CHECKER
   ============================================================ */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .symptom-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .symptom-grid { grid-template-columns: repeat(4, 1fr); } }

.symptom-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.symptom-card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(232,41,11,0.08), var(--shadow-card);
}
.symptom-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.symptom-card__icon svg { width: 20px; height: 20px; color: var(--c-accent); stroke-width: 2; }
.symptom-card__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-primary);
  line-height: 1.3;
}
.symptom-card__sub { font-size: var(--t-xs); color: var(--c-mid); margin-top: 0.2rem; }

/* 12. PROCESS
   ============================================================ */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-list { grid-template-columns: repeat(4, 1fr); }
}

.process-step { position: relative; }
.process-step__num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-primary-200);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.process-step__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.9375rem; color: var(--c-mid); max-width: 26ch; }

/* Connecting line on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--c-border);
  }
}

/* 13. CALLOUT BOXES
   ============================================================ */
.callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid;
  display: flex;
  gap: 1rem;
  margin-block: 1.5rem;
}
.callout svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.125rem; stroke-width: 2; }
.callout__body { flex: 1; }
.callout__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.callout--tip {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #14532D;
}
.callout--tip svg { color: #22C55E; }
.callout--warn {
  background: #FFF7ED;
  border-color: var(--c-accent);
  color: #7C2D12;
}
.callout--warn svg { color: var(--c-accent); }
.callout--info {
  background: var(--c-primary-50);
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.callout--info svg { color: var(--c-primary); }

/* 14. TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); border: 1px solid var(--c-border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
th {
  background: var(--c-primary);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
td { padding: 0.875rem 1rem; border-top: 1px solid var(--c-border); }
tr:nth-child(even) td { background: var(--c-off-white); }

/* 15. FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
details.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-white);
}
details.faq-item[open] { border-color: var(--c-primary-200); }
summary.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-primary);
  list-style: none;
  gap: 1rem;
  transition: background 0.15s;
}
summary.faq-q:hover { background: var(--c-off-white); }
summary.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-primary-50);
  transition: transform 0.25s, background 0.15s;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--c-primary); stroke-width: 2.5; }
details[open] .faq-icon { transform: rotate(45deg); background: var(--c-primary); }
details[open] .faq-icon svg { color: #fff; }
.faq-a {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--c-mid);
  line-height: 1.7;
}
.faq-a p + p { margin-top: 0.75em; }

/* 16. DARK CTA BAND
   ============================================================ */
.cta-band {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,41,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  letter-spacing: -0.03em;
  margin: 1.25rem 0;
  text-decoration: none;
  transition: color 0.15s;
}
.cta-band__phone:hover { color: var(--c-accent); }
.cta-band__phone svg { width: 40px; height: 40px; flex-shrink: 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,0.65); margin-inline: auto; }
.cta-band .btn { margin-top: 1rem; }

/* 17. SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split--reverse .split__visual { order: -1; }
}
.split__visual { display: flex; justify-content: center; }
.split__visual svg { width: 100%; max-width: 420px; }

/* 18. AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}
.area-link:hover { border-color: var(--c-primary); background: var(--c-primary-50); color: var(--c-primary); }
.area-link svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; stroke-width: 2; }

/* 19. REFERRAL / HOW IT WORKS
   ============================================================ */
.referral-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .referral-steps { grid-template-columns: repeat(3, 1fr); } }

.referral-step {
  text-align: center;
  padding: 1.75rem;
}
.referral-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.referral-step h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.referral-step p { font-size: 0.9375rem; color: var(--c-mid); margin-inline: auto; }

/* 20. FOOTER
   ============================================================ */
.footer {
  background: var(--c-primary-900);
  color: rgba(255,255,255,0.65);
  padding-block: 3.5rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer__brand { max-width: 28ch; }
.footer__logo-wrap { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer__logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.footer__logo-text span { color: var(--c-accent); }
.footer__tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer__address { font-size: 0.875rem; font-style: normal; line-height: 1.7; }
.footer__address a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer__address a:hover { color: #fff; }

.footer__col-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  text-decoration: none;
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
}
.footer__disclaimer {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 70ch;
  margin-top: 1rem;
}

/* 21. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  font-size: var(--t-xs);
  color: var(--c-mid);
  padding-block: 1rem;
}
.breadcrumbs a { color: var(--c-mid); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs li::after {
  content: '/';
  margin-left: 0.375rem;
  color: var(--c-border);
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li:last-child { color: var(--c-primary); font-weight: 600; }

/* 22. INNER PAGE: Sticky TOC + Sidebar
   ============================================================ */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .inner-layout { grid-template-columns: 1fr 300px; gap: 3rem; }
}

.toc {
  background: var(--c-off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .toc {
    position: sticky;
    top: 90px;
    margin-bottom: 0;
  }
}
.toc__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-mid);
  margin-bottom: 0.875rem;
}
.toc__links { display: flex; flex-direction: column; gap: 0.5rem; }
.toc__links a {
  font-size: 0.9rem;
  color: var(--c-mid);
  padding-left: 0.75rem;
  border-left: 2px solid var(--c-border);
  transition: color 0.15s, border-color 0.15s;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
.toc__links a:hover, .toc__links a.active { color: var(--c-primary); border-color: var(--c-accent); }

.call-card {
  background: var(--c-primary);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  .call-card { position: sticky; top: 90px; }
}
.call-card h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.call-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.call-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.call-card__phone svg { width: 20px; height: 20px; color: var(--c-accent); }

/* 23. MOBILE STICKY CALL BAR
   ============================================================ */
.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--c-accent);
  padding: 0.875rem 1rem;
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(232,41,11,0.3);
}
.mobile-call-bar svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .mobile-call-bar { display: none; } }

/* 24. CONTENT PROSE (inner pages)
   ============================================================ */
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1em; color: var(--c-text); }
.prose ul, .prose ol { margin-left: 1.5rem; margin-bottom: 1em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.375em; font-size: 0.9375rem; color: var(--c-mid); }
.prose a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--c-accent-dark); }

/* 25. HERO — inner pages
   ============================================================ */
.page-hero {
  background: var(--c-primary);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(22,45,87,0.9), transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  font-size: 1.0625rem;
}

/* 26. STAT ROW
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-item__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--c-accent);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-item__label { font-size: 0.875rem; color: var(--c-mid); font-weight: 500; }
.section--dark .stat-item__label { color: rgba(255,255,255,0.6); }

/* 27. MOTION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 28. RESPONSIVE UTILITIES
   ============================================================ */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 1024px) { .hide-desktop { display: none; } }

/* 29. SECTION HEADER (centered)
   ============================================================ */
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin-inline: auto; }

/* 30. DIVIDERS
   ============================================================ */
.divider-angled {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.divider-angled svg { display: block; width: 100%; }
