/* ═══════════════════════════════════════════════════════════════════════
   SGCS — Solid Grounds Calls Services — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --navy:        #0D1B35;
  --navy-mid:    #1B2D52;
  --navy-light:  #243a6a;
  --orange:      #F47B20;
  --orange-dark: #d96a10;
  --water:       #4FC3F7;
  --water-dim:   rgba(79,195,247,0.25);
  --white:       #FFFFFF;
  --gray-light:  #F0F4F8;
  --gray-mid:    #6B7280;
  --glass-bg:    rgba(255,255,255,0.07);
  --glass-border:rgba(255,255,255,0.14);
  --footer-bg:   #080f1e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,27,53,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
}

.nav-phone:hover { color: var(--orange); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover { text-decoration: none; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,123,32,0.35);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,123,32,0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,27,53,0.35);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ── HERO (Home page) ── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 100px 6% 90px;
  text-align: center;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(79,195,247,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 9px; height: 9px; min-width: 9px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.5); }
  50% { transform: scale(1.2); opacity: 0.9; box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

.clock-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--water);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: normal; color: var(--water); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 44px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Vibrate + drip button */
.btn-drip-wrap { position: relative; display: inline-block; }

.drip-drop {
  position: absolute; bottom: -5px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  background: var(--water);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  pointer-events: none; opacity: 0;
}

.btn-vibrate.vibrating { animation: vibrate 0.35s ease-in-out; }

@keyframes vibrate {
  0%,100% { transform: translateX(0) translateY(-2px); }
  10% { transform: translateX(-2px) translateY(-1px); }
  20% { transform: translateX(2px) translateY(-3px); }
  30% { transform: translateX(-2px) translateY(-2px); }
  40% { transform: translateX(2px) translateY(-1px); }
  50% { transform: translateX(-1px) translateY(-3px); }
  60% { transform: translateX(1px) translateY(-2px); }
  70% { transform: translateX(-1px) translateY(-1px); }
  80% { transform: translateX(1px) translateY(-2px); }
  90% { transform: translateX(-1px) translateY(-3px); }
}

@keyframes dripFall {
  0%   { width:7px;height:9px;  opacity:1; transform:translateX(-50%) translateY(0); }
  35%  { width:8px;height:14px; opacity:1; transform:translateX(-50%) translateY(3px); }
  65%  { width:8px;height:18px; opacity:1; transform:translateX(-50%) translateY(10px); }
  82%  { width:12px;height:11px;opacity:1; transform:translateX(-50%) translateY(18px) scaleX(1.4) scaleY(0.8); }
  100% { width:14px;height:4px; opacity:0; transform:translateX(-50%) translateY(22px) scaleX(2) scaleY(0.3); }
}

@keyframes dripEvaporate {
  0%   { opacity:1; transform:translateX(-50%) scale(1); }
  100% { opacity:0; transform:translateX(-50%) scale(0); }
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 6% 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); }

/* ── SECTIONS ── */
section { padding: 88px 6%; position: relative; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-label-light { color: rgba(255,255,255,0.55); }

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin-bottom: 52px;
}

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.reveal { opacity: 1; }

/* ── BUBBLES ── */
.bubbles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}

.bubbles span {
  position: absolute; bottom: -20px;
  border-radius: 50%;
  background: rgba(79,195,247,0.15);
  border: 1px solid rgba(79,195,247,0.2);
  opacity: 0;
}

.bubbles.active span { animation: floatBubble ease-in infinite; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity:0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.6); opacity:0; }
}

.bubbles span:nth-child(1) { width:8px;  height:8px;  left:8%;  animation-duration:5s;   animation-delay:0s; }
.bubbles span:nth-child(2) { width:12px; height:12px; left:18%; animation-duration:7s;   animation-delay:0.8s; }
.bubbles span:nth-child(3) { width:6px;  height:6px;  left:30%; animation-duration:4.5s; animation-delay:1.5s; }
.bubbles span:nth-child(4) { width:14px; height:14px; left:44%; animation-duration:8s;   animation-delay:0.3s; }
.bubbles span:nth-child(5) { width:9px;  height:9px;  left:58%; animation-duration:6s;   animation-delay:1.1s; }
.bubbles span:nth-child(6) { width:11px; height:11px; left:70%; animation-duration:5.5s; animation-delay:0.6s; }
.bubbles span:nth-child(7) { width:7px;  height:7px;  left:82%; animation-duration:7s;   animation-delay:1.8s; }
.bubbles span:nth-child(8) { width:10px; height:10px; left:92%; animation-duration:6.5s; animation-delay:0.2s; }

/* ── GLASS CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.card-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.glass-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.glass-card p { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── LIGHT CARDS (for light-bg sections) ── */
.light-card {
  background: var(--white);
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.light-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.light-card .card-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.light-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.light-card p { font-size: 0.93rem; color: #555; line-height: 1.65; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col h2 { color: var(--navy); margin-bottom: 20px; }
.two-col p { color: #444; line-height: 1.75; margin-bottom: 30px; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.feature-list li {
  display: flex; align-items: flex-start;
  gap: 12px; font-size: 0.97rem; color: #333;
}

.check-dot {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; flex-shrink: 0;
}

.check-dot svg { width: 12px; height: 12px; fill: white; }

/* ── STATS PANEL ── */
.stats-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 40px;
  color: var(--white);
}

.stat-item { margin-bottom: 30px; }
.stat-item:last-child { margin-bottom: 0; }

.stat-number {
  font-size: 3rem; font-weight: 900;
  color: var(--orange); line-height: 1;
  margin-bottom: 6px; letter-spacing: -0.03em;
}

.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.stat-rule { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 26px 0; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.step-num {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(244,123,32,0.4);
}

.step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* Light steps for light backgrounds */
.steps-light .step {
  background: var(--white);
  border: 1px solid #e5e9f0;
  backdrop-filter: none;
}
.steps-light .step h3 { color: var(--navy); }
.steps-light .step p { color: #555; }

/* ── NAVY SECTION ── */
.navy-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.navy-section h2 { color: var(--white); }
.navy-section .section-sub { color: rgba(255,255,255,0.6); }

/* ── LIGHT SECTION ── */
.light-section { background: var(--gray-light); }

/* ── BEFORE / AFTER SLIDER ── */
.before-after { background: var(--navy); padding-top: 80px; padding-bottom: 80px; }
.before-after h2 { color: var(--white); }
.before-after .section-sub { color: rgba(255,255,255,0.6); }

.slider-container {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
  height: 380px; border-radius: 20px; overflow: hidden;
  cursor: ew-resize; box-shadow: 0 24px 64px rgba(0,0,0,0.5); user-select: none;
}

.panel {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}

.panel-before { background: linear-gradient(180deg, #050e1f 0%, #0d2340 55%, #1a4a7a 100%); z-index: 1; }

.rain-layer { position: absolute; inset: 0; overflow: hidden; }

.rain-drop-css {
  position: absolute; top: -20px; width: 1px;
  background: linear-gradient(transparent, rgba(79,195,247,0.5));
  animation: rainFall linear infinite;
}

@keyframes rainFall {
  0%   { transform: translateY(-20px); opacity:0; }
  5%   { opacity:1; }
  95%  { opacity:1; }
  100% { transform: translateY(420px); opacity:0; }
}

.water-level {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(30,90,180,0.5) 0%, rgba(10,50,140,0.8) 100%);
  border-top: 2px solid rgba(79,195,247,0.5);
  animation: waterSway 3s ease-in-out infinite;
}

@keyframes waterSway {
  0%,100% { border-radius: 40% 60% 0 0 / 8px 8px 0 0; }
  50%      { border-radius: 60% 40% 0 0 / 8px 8px 0 0; }
}

.panel-label {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; z-index: 2;
}

.label-before {
  background: rgba(255,68,68,0.2); border: 1px solid rgba(255,68,68,0.5); color: #ff8888;
}

.panel-heading {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 900; z-index: 2;
  text-align: center; line-height: 1.2; padding: 0 20px;
}

.panel-before .panel-heading { color: rgba(255,255,255,0.85); }
.panel-before-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); z-index: 2; text-align: center; }

.panel-after {
  background: linear-gradient(180deg, #e8f4fd 0%, #f5f9ff 50%, #edf5ff 100%);
  z-index: 2; clip-path: inset(0 50% 0 0);
}

.panel-after .panel-label { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: #16a34a; }
.panel-after .panel-heading { color: var(--navy); }
.panel-after-sub { font-size: 0.9rem; color: var(--gray-mid); z-index: 2; text-align: center; }

.clean-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
  border-top: 1px solid rgba(100,160,220,0.2);
}

.slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 44px; z-index: 10;
  display: flex; align-items: center; justify-content: center; cursor: ew-resize;
}

.handle-line {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: rgba(255,255,255,0.9); left: 50%; transform: translateX(-50%);
}

.handle-droplet { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

.drag-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  z-index: 11; pointer-events: none;
}

/* ── PILOT OFFER ── */
.pilot {
  background: linear-gradient(135deg, var(--orange) 0%, #e06010 100%);
  color: var(--white); text-align: center;
}
.pilot h2 { color: var(--white); }
.pilot .section-sub { color: rgba(255,255,255,0.85); margin-left:auto; margin-right:auto; }
.pilot-note { margin-top: 16px; font-size: 0.83rem; color: rgba(255,255,255,0.65); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--gray-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.contact-grid h2 { color: var(--navy); }
.contact-grid > div > p { font-size: 0.97rem; color: var(--gray-mid); margin-bottom: 32px; line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #d1d9e6;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1a1a1a;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,45,82,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.contact-right-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 42px 38px;
  color: var(--white);
  display: flex; flex-direction: column; gap: 28px;
}

.contact-right-panel h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.contact-right-panel p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

.divider-glass { border: none; border-top: 1px solid rgba(255,255,255,0.12); }

.contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.94rem; color: rgba(255,255,255,0.8);
}
.contact-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }

.c-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid #e5e9f0;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,123,32,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card .tier-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #444;
}

.pricing-features .check {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question:hover { color: var(--orange); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-mid);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ── COMPARISON TABLE ── */
.comparison {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.comparison-col {
  padding: 40px 36px;
}

.comparison-col.them {
  background: #f8f8f8;
  border-right: 1px solid #e5e9f0;
}

.comparison-col.us {
  background: var(--white);
}

.comparison-col h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
}

.comparison-col.them h3 { color: var(--gray-mid); border-color: #ddd; }
.comparison-col.us h3 { color: var(--orange); border-color: var(--orange); }

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-col li {
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparison-col.them li { color: #888; }
.comparison-col.us li { color: #333; }

.comparison-icon { font-size: 1rem; flex-shrink: 0; line-height: 1.4; }

/* ── CONTENT (legal pages) ── */
.content { max-width: 780px; margin: 0 auto; padding: 64px 6%; }
.content h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.content p, .content li { font-size: 0.97rem; color: #444; margin-bottom: 12px; }
.content ul { padding-left: 20px; margin-bottom: 12px; }
.content li { margin-bottom: 6px; }
.content a { color: var(--orange); text-decoration: none; }
.content a:hover { text-decoration: underline; }
.updated { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.5);
  padding: 48px 6% 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .footer-logo { height: 38px; opacity: 0.8; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--orange); }

.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ── FORM SUCCESS ── */
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
}

.form-success.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .slider-container { height: 300px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-col.them { border-right: none; border-bottom: 1px solid #e5e9f0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13,27,53,0.98);
    flex-direction: column;
    padding: 24px 6%;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 8px 0; }
  .nav-cta { margin-left: 0; margin-top: 8px; }

  .hamburger { display: flex; }
  .nav-phone { display: none; }
}

@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .hero { padding: 76px 5% 64px; min-height: 520px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  #ripple-canvas { display: none; }
}
