/* ============================================================
   Jesup Well — jesupwell.com
   Niche: Well Drilling | City: Jesup, GA | County: Wayne
   Layout: Proof-Forward (Layout 3)
   Palette: True Ocean Navy + Electric Teal + White
   Fonts: Oxanium 700 (headings) + Open Sans 400/500/600 (body)
   ============================================================ */

:root {
  /* PALETTE — True Ocean Navy (visibly blue, not near-black) */
  --primary: #0d3460;
  --primary-light: #1a4d82;
  --primary-mid: #10407a;
  --primary-dark: #071e3d;
  --primary-rgb: 13,52,96;

  /* PALETTE — Electric Teal (clean water, vibrant precision) */
  --accent: #00d4ea;
  --accent-light: #33dff0;
  --accent-dark: #00b8cc;
  --accent-bright: #00e8ff;
  --accent-gradient: linear-gradient(135deg, #00b8cc, #00e8ff);
  --accent-gradient-diag: linear-gradient(135deg, #0097a7 0%, #00d4ea 50%, #33dff0 100%);
  --accent-rgb: 0,212,234;

  /* Header */
  --header-navy: #071e3d;
  --header-navy-rgb: 7,30,61;

  /* Depth tones */
  --depth-dark: #050f22;
  --depth-mid: #09214a;

  /* Surface tints */
  --ice-blue: #e0f9fc;
  --ice-blue-dark: #b2edf5;
  --ice-blue-mid: #c8f2f8;
  --surface-alt: #f0fafc;

  /* Neutral */
  --white: #ffffff;
  --warm-white: #f6f8fa;
  --off-white: #edf2f5;
  --gray: #5d6d7e;
  --gray-light: #d5dce3;
  --gray-dark: #1e3a52;
  --text-body: #243b55;
  --text-muted: #7a8fa3;
  --surface-chat: #f4fafc;

  /* Status */
  --red-urgent: #c0392b;
  --red-urgent-rgb: 192,57,43;
  --success: #00b894;
  --warning: #e67e22;

  /* Glows & shadows */
  --shadow-sm: 0 2px 8px rgba(var(--primary-rgb),.12);
  --shadow-md: 0 4px 16px rgba(var(--primary-rgb),.18);
  --shadow-lg: 0 8px 32px rgba(var(--primary-rgb),.22);
  --shadow-xl: 0 16px 48px rgba(var(--primary-rgb),.28);
  --glow-teal: 0 0 24px rgba(var(--accent-rgb),.35);
  --glow-teal-lg: 0 0 48px rgba(var(--accent-rgb),.4);
  --shadow-teal: 0 8px 28px rgba(var(--accent-rgb),.32);
  --shadow-teal-lg: 0 12px 40px rgba(var(--accent-rgb),.42);

  /* Gradients */
  --navy-gradient: linear-gradient(160deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  --dark-gradient: linear-gradient(160deg, var(--depth-mid) 0%, var(--depth-dark) 100%);

  /* Transitions */
  --transition-fast: .18s ease;
  --transition-base: .28s ease;
  --transition-slow: .45s ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  /* Spacing */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oxanium', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: .5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(var(--header-navy-rgb), .95);
  backdrop-filter: blur(12px);
  height: 68px;
  border-bottom: 1px solid rgba(var(--accent-rgb), .12);
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.site-header.scrolled {
  background: rgba(var(--header-navy-rgb), .98);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  border-bottom-color: rgba(var(--accent-rgb), .2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo img { width: 79px; height: 44px; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  color: rgba(255,255,255,.8);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  text-decoration: none;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.site-nav a:hover { color: var(--accent-light); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .nav-cta {
  background: var(--accent-gradient);
  color: var(--primary-dark) !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: .8rem;
  box-shadow: var(--shadow-teal);
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal-lg);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(var(--header-navy-rgb), .98);
  backdrop-filter: blur(16px);
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
  z-index: 899;
  border-top: 1px solid rgba(var(--accent-rgb), .15);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav-link {
  color: rgba(255,255,255,.8);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: .5rem;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  padding: .8rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  text-decoration: none;
}

/* ── Hero — Centered Full Overlay ────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(7,30,61,.42) 0%,
    rgba(13,52,96,.52) 40%,
    rgba(5,15,34,.68) 100%
  );
  z-index: 1;
}

/* Blueprint grid — engineering / precision aesthetic */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Animated depth rings */
.hero-depth-rings {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-depth-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), .18);
  animation: depthPulse 4s ease-out infinite;
}
.hero-depth-rings span:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.hero-depth-rings span:nth-child(2) { width: 520px; height: 520px; animation-delay: 1.3s; }
.hero-depth-rings span:nth-child(3) { width: 740px; height: 740px; animation-delay: 2.6s; }
@keyframes depthPulse {
  0%   { opacity: 0; transform: scale(.85); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}

.hero-corner-badge {
  position: absolute;
  top: 82px;
  right: 1.75rem;
  background: rgba(var(--accent-rgb), .12);
  border: 1px solid rgba(var(--accent-rgb), .35);
  color: var(--accent-light);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--accent-light);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(var(--accent-rgb),.5);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 6px var(--accent), 0 0 12px rgba(var(--accent-rgb),.4); }
  50%       { box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(var(--accent-rgb),.6); }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: .5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
/* Gradient accent on second line */
.hero h1 br + span,
.hero h1 .accent-line {
  background: var(--accent-gradient-diag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Teal underline rule below H1 */
.hero-rule {
  width: 64px; height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin: 1.1rem auto 1.4rem;
  box-shadow: var(--glow-teal);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 680px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 2.1rem;
  border-radius: var(--radius-lg);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}
.hero-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

.hero-cta--primary {
  background: var(--accent-gradient);
  color: var(--primary-dark);
  box-shadow: var(--shadow-teal-lg);
  font-weight: 700;
}
.hero-cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(var(--accent-rgb),.5);
  text-decoration: none;
}
.hero-cta--secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.hero-cta--secondary:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Diagonal bottom cut */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 4;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-arrow {
  width: 16px; height: 16px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Trust Stats Row ─────────────────────────────────── */
.trust-stats {
  background: linear-gradient(135deg, #d0f4f8 0%, #e8fafc 30%, #f4fdfe 60%, #ffffff 100%);
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(var(--accent-rgb),.15);
}
/* Teal top bar */
.trust-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent-gradient);
}
/* Radial glow from center — depth suggestion */
.trust-stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(var(--accent-rgb),.12) 0%, transparent 70%);
  pointer-events: none;
}
.trust-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.5rem;
  position: relative;
}
.trust-stat::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gray-light);
}
.trust-stat:last-child::after { display: none; }

.trust-stat-number {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: .5rem;
  background: var(--accent-gradient-diag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(var(--accent-rgb),.25));
}
.trust-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Process Strip ──────────────────────────────────── */
.process-strip {
  background: linear-gradient(160deg, #0f3d72 0%, #0d3460 35%, #091e45 70%, #060f2a 100%);
  padding: var(--space-3xl) 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Blueprint grid */
.process-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Radial teal glow from center top — "light through water" */
.process-strip-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb),.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Diagonal top cut */
.process-strip::after {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.process-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.process-strip-inner > h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.process-eyebrow {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .5rem;
  font-family: 'Oxanium', sans-serif;
}
.process-rule {
  width: 48px; height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin: .75rem auto 2.75rem;
  box-shadow: var(--glow-teal);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),.15), rgba(var(--accent-rgb),.35), rgba(var(--accent-rgb),.15));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 44px; height: 44px;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.1rem;
  box-shadow: var(--glow-teal);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .55rem;
}
.process-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: var(--space-3xl) 1.5rem var(--space-2xl);
  background: linear-gradient(180deg, #edfbfd 0%, #f5fdfe 40%, #fafffe 100%);
  position: relative;
}
/* Diagonal top cut */
.services::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .6rem;
}
.section-heading {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin-bottom: .75rem;
  line-height: 1.12;
}
.section-heading--light { color: var(--white); }
.section-rule {
  width: 48px; height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin: .75rem auto 1rem;
  box-shadow: 0 0 12px rgba(var(--accent-rgb),.3);
}
.section-rule--left { margin-left: 0; }
.services-intro {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(var(--primary-rgb),.14), 0 0 0 1px rgba(var(--accent-rgb),.2);
  border-color: rgba(var(--accent-rgb),.25);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  background: linear-gradient(145deg, #0a2a50 0%, #0d3460 50%, #1a4d82 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  position: relative;
  overflow: hidden;
}
.service-card-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Radial teal glow behind icon */
.service-card-icon::before {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.service-card-icon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb),.5), transparent);
  z-index: 2;
}
.service-card-icon svg {
  width: 38px; height: 38px;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb),.6));
  position: relative;
  z-index: 1;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .55rem;
}
.service-card-body p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Conditions Panel ────────────────────────────────── */
.conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.conditions-left {
  background: linear-gradient(150deg, var(--primary-light) 0%, var(--primary) 40%, var(--primary-dark) 100%);
  padding: 5rem 3rem 5rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Blueprint grid on left panel */
.conditions-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.conditions-left-inner {
  max-width: 520px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.conditions-left-inner > .section-heading--light {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 2.25rem;
}

.condition-point {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(var(--accent-rgb),.2);
  position: relative;
  transition: border-color var(--transition-base);
}
.condition-point:last-child { margin-bottom: 0; }
.condition-point:hover { border-left-color: var(--accent); }
.condition-number {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: rgba(var(--accent-rgb),.25);
  min-width: 2.25rem;
  padding-top: .1rem;
  line-height: 1;
  transition: color var(--transition-base);
}
.condition-point:hover .condition-number {
  color: rgba(var(--accent-rgb),.55);
}
.condition-point h3 {
  font-size: .975rem;
  color: var(--accent-light);
  margin-bottom: .4rem;
}
.condition-point p {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.conditions-right {
  background: linear-gradient(160deg, #c8f4fa 0%, #dff8fc 40%, #edfbfd 100%);
  padding: 5rem 2rem 5rem 3rem;
  position: relative;
}
.conditions-right-inner {
  max-width: 520px;
}
.conditions-right h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.signal-list { margin-bottom: 2.25rem; }
.signal-list li {
  padding: .6rem 0 .6rem 1.6rem;
  border-bottom: 1px solid var(--ice-blue-mid);
  color: var(--text-body);
  font-size: .9rem;
  position: relative;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.signal-list li:last-child { border-bottom: none; }
.signal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(var(--accent-rgb),.4);
}
.signal-list li:hover { color: var(--primary); padding-left: 2rem; }

.conditions-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  padding: .85rem 1.85rem;
  border-radius: var(--radius-md);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}
.conditions-cta:hover {
  background: var(--primary-light);
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  padding: var(--space-3xl) 1.5rem;
  background: linear-gradient(180deg, #eaf8fb 0%, #f5fdfe 120px, #ffffff 100%);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--ice-blue);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

details {
  border-bottom: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: .25rem;
  transition: box-shadow var(--transition-base);
}
details:first-of-type { border-top: 1px solid var(--gray-light); }
details[open] {
  box-shadow: 0 4px 20px rgba(var(--primary-rgb),.08);
  border-color: rgba(var(--accent-rgb),.2);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1rem;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .975rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  border-left: 3px solid transparent;
  transition: border-color var(--transition-base), background var(--transition-base);
}
summary::-webkit-details-marker { display: none; }
summary .faq-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent-dark);
  transition: transform var(--transition-base);
}
details[open] > summary {
  color: var(--primary);
  background: rgba(var(--accent-rgb),.04);
  border-left-color: var(--accent);
}
details[open] > summary .faq-arrow { transform: rotate(90deg); }
.faq-answer { padding: 0 1rem 1.3rem 1rem; }
.faq-answer p {
  font-size: .925rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── Service Area ─────────────────────────────────────── */
.service-area {
  background: linear-gradient(160deg, #1a4d82 0%, #0d3460 30%, #091e45 70%, #060f2a 100%);
  padding: var(--space-3xl) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(var(--accent-rgb),.14) 0%, transparent 60%),
    linear-gradient(rgba(var(--accent-rgb),.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}
/* Diagonal top cut */
.service-area::after {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.crew-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 2rem auto 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 2px rgba(var(--accent-rgb),.3);
}
.crew-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.service-area-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service-area-intro {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.city-chip {
  background: rgba(var(--accent-rgb),.15);
  border: 1px solid rgba(var(--accent-rgb),.45);
  color: var(--accent-bright);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.city-chip:hover {
  background: rgba(var(--accent-rgb),.18);
  border-color: rgba(var(--accent-rgb),.5);
}
.service-area-sub {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Contact Form ─────────────────────────────────────── */
.contact {
  padding: var(--space-3xl) 1.5rem;
  background: var(--dark-gradient);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-header {
  text-align: center;
  margin-bottom: 2.25rem;
}
.contact-header p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-top: .6rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(var(--accent-rgb),.12);
}
/* Teal top line on form card */
.form-card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: -2.5rem -2.5rem 2rem;
}

.form-error {
  display: none;
  background: rgba(var(--red-urgent-rgb),.08);
  border: 1px solid var(--red-urgent);
  color: var(--red-urgent);
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.form-error.visible { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }
.form-row .form-group { margin-bottom: 0; }

label {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
}
label span { color: var(--red-urgent); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: .72rem .95rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.15);
}
textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
select { cursor: pointer; }

.field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-teal);
}
.btn-submit:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-lg);
}
.btn-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.form-required-note {
  font-size: .8rem;
  color: var(--text-muted, rgba(255,255,255,.5));
  margin-bottom: .5rem;
}

.spin-icon { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Maps ─────────────────────────────────────────────── */
.maps-section { line-height: 0; }
.maps-section iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  filter: saturate(.8) contrast(1.05);
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #091e45 0%, #060f2a 50%, #030919 100%);
  color: rgba(255,255,255,.7);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: .5;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.75rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { width: 68px; height: 38px; object-fit: contain; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .65rem;
  font-size: .875rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,.85);
  transition: color var(--transition-fast);
}
.footer-contact-item a:hover { color: var(--accent-light); text-decoration: none; }
.footer-contact-item span { color: rgba(255,255,255,.78); }

.footer-col h4 {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col ul li {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
  line-height: 1.5;
}
.footer-col ul li a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-bottom a {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: var(--accent-light); }

/* ── Mobile Toolbar ──────────────────────────────────── */
.mobile-toolbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(var(--header-navy-rgb),.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(var(--accent-rgb),.15);
  padding: .5rem;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.toolbar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .6rem .75rem;
  border-radius: var(--radius-md);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.toolbar-btn svg { width: 20px; height: 20px; }
.toolbar-quote {
  background: var(--accent-gradient);
  color: var(--primary-dark);
}
.toolbar-quote:hover { opacity: .9; text-decoration: none; }
.toolbar-chat {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
}
.toolbar-chat:hover { background: rgba(255,255,255,.14); }

/* ── Chat Widget ─────────────────────────────────────── */
.chat-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 700;
  width: 56px; height: 56px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(var(--accent-rgb),.5);
}
.chat-btn svg { width: 26px; height: 26px; color: var(--primary-dark); }
.chat-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.chat-panel {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  z-index: 700;
  width: 340px;
  max-height: 480px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(var(--accent-rgb),.12);
  display: flex;
  flex-direction: column;
  transform: scale(.9) translateY(16px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  background: var(--navy-gradient);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: .95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: .75rem; }
.chat-avatar {
  width: 36px; height: 36px;
  background: rgba(var(--accent-rgb),.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(var(--accent-rgb),.3);
}
.chat-avatar svg { width: 20px; height: 20px; color: var(--accent-light); }
.chat-name {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--white);
}
.chat-status { font-size: .72rem; color: rgba(255,255,255,.5); }
.chat-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.55);
  padding: .25rem;
  transition: color var(--transition-fast);
}
.chat-close:hover { color: var(--white); }
.chat-close svg { width: 18px; height: 18px; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: var(--surface-chat);
}
.chat-bubble {
  max-width: 85%;
  padding: .65rem .95rem;
  border-radius: var(--radius-lg);
  font-size: .875rem;
  line-height: 1.55;
}
.chat-bubble.bot {
  background: var(--white);
  color: var(--gray-dark);
  align-self: flex-start;
  border: 1px solid var(--gray-light);
  border-bottom-left-radius: var(--radius-sm);
}
.chat-bubble.user {
  background: var(--accent-gradient);
  color: var(--primary-dark);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
  font-weight: 600;
}

.chat-typing {
  display: none;
  padding: .5rem 1rem;
  gap: .3rem;
  align-items: center;
  background: var(--surface-chat);
}
.chat-typing.active { display: flex; }
.dot {
  width: 7px; height: 7px;
  background: var(--accent-dark);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.dot:nth-child(2) { animation-delay: .2s; }
.dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 80%, 100% { opacity: .25; transform: scale(.8); }
  40%           { opacity: 1;   transform: scale(1); }
}

.chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--gray-light);
  background: var(--white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.chat-input {
  flex: 1;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: .5rem .75rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .875rem;
  resize: none;
  min-height: 38px;
  max-height: 90px;
  line-height: 1.5;
  outline: none;
  transition: border-color var(--transition-fast);
}
.chat-input:focus { border-color: var(--accent-dark); }
.chat-send {
  width: 36px; height: 36px;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.chat-send:hover { opacity: .85; }
.chat-send svg { width: 16px; height: 16px; color: var(--primary-dark); }
.chat-send:disabled { opacity: .45; cursor: not-allowed; }

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-stat::after { display: none; }
  .trust-stat:nth-child(odd) {
    border-right: 1px solid var(--gray-light);
  }
  .trust-stat:nth-child(1),
  .trust-stat:nth-child(2) {
    border-bottom: 1px solid var(--gray-light);
  }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

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

  .conditions { grid-template-columns: 1fr; }
  .conditions-left { padding: 3.5rem 1.5rem; }
  .conditions-left-inner { max-width: none; }
  .conditions-right { padding: 3.5rem 1.5rem; }
  .conditions-right-inner { max-width: none; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-toolbar { display: grid; }

  .chat-btn { display: none; }
  .chat-panel { display: none; }
  .chat-panel.open {
    display: flex;
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
    bottom: 4.5rem;
  }

  .hero { min-height: 100svh; padding: 5rem 1.25rem 3rem; }
  .hero::after { height: 50px; }
  .hero-depth-rings span:nth-child(3) { display: none; }

  .process-strip::after { display: none; }
  .services::before { display: none; }
  .service-area::after { display: none; }
  .contact::before { display: none; }
  .faq::before { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
  .form-card::before { margin: -1.75rem -1.75rem 1.75rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }

  /* iOS zoom fix */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea { font-size: 16px; }

  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta { justify-content: center; }
  .hero-depth-rings { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-depth-rings span,
  .hero-eyebrow-dot,
  .scroll-arrow,
  .chat-badge { animation: none; }
  .check-circle { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 375px) {
  .conditions-left { padding: 2.5rem 1rem; }
  .conditions-right { padding: 2.5rem 1rem; }
  .form-card { padding: 1.25rem; }
  .form-card::before { margin: -1.25rem -1.25rem 1.25rem; }
}
