/* ── CLEARPATH BAIL BONDS — MAIN STYLESHEET ── */
/* Typography: Cormorant Garamond (display) + Jost (body) */

:root {
  --navy: #1b2d4f;
  --navy-mid: #243d6b;
  --navy-light: #2e5399;
  --blue: #2e6da4;
  --sky: #5b9fd4;
  --gold: #c8963e;
  --gold-light: #e8b860;
  --gold-pale: #fdf6ec;
  --warm-white: #faf8f5;
  --cream: #f2ede4;
  --sand: #e4d9c8;
  --text: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-soft: #888;
  --green: #2e6b47;
  --green-light: #4a9970;
  --shadow-sm: 0 2px 12px rgba(27,45,79,0.08);
  --shadow-md: 0 6px 28px rgba(27,45,79,0.12);
  --shadow-lg: 0 12px 52px rgba(27,45,79,0.16);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announce-dot {
  width: 7px; height: 7px;
  background: #5ddb8a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,45,79,0.07);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(27,45,79,0.2));
}

.logo-text-block { line-height: 1.1; }

.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(27,45,79,0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--blue); }

.btn-nav {
  background: var(--gold);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(27,45,79,0.07);
  gap: 4px;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu a:hover { background: var(--cream); color: var(--navy); }

.mobile-cta {
  background: var(--gold) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 50px !important;
}

.mobile-phone {
  text-align: center;
  color: var(--navy) !important;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 108px);
  padding: 80px 32px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #eaf1f9 0%, var(--warm-white) 45%, var(--cream) 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -120px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,150,62,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,107,71,0.09);
  border: 1px solid rgba(46,107,71,0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.pulse-ring {
  width: 16px; height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
  animation: ping 1.8s ease infinite;
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-left: -12px;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
  position: relative;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27,45,79,0.28);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,45,79,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(27,45,79,0.2);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(27,45,79,0.04);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(27,45,79,0.18);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(27,45,79,0.04);
}

.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.5s both;
}

.trust-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--sand);
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* SEARCH CARD */
.search-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(200,150,62,0.12);
  animation: fadeUp 0.7s ease 0.3s both;
}

.search-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 22px 28px;
  color: white;
}

.search-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.search-card-header p { font-size: 12.5px; opacity: 0.7; }

.search-card-body { padding: 24px 28px; }

.search-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.search-tab {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  border-radius: 7px;
  transition: all 0.2s;
}

.search-tab.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.search-panel { display: none; }
.search-panel.active { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.field input, .field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.field input:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.1);
}

.btn-search {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}

.btn-search:hover { background: var(--gold-light); transform: translateY(-1px); }

.search-result {
  font-size: 13px;
  color: var(--text-mid);
  min-height: 0;
  transition: all 0.3s;
}

.search-county-links {
  border-top: 1px solid var(--sand);
  padding-top: 14px;
  font-size: 11px;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.search-county-links a {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.2s;
}

.search-county-links a:hover { color: var(--navy); text-decoration: underline; }

/* ── STATS RIBBON ── */
.stats-ribbon {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px 32px;
}

.stats-ribbon-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 8px 48px;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── SECTION BASE ── */
.section { padding: 96px 32px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15.5px;
  color: var(--text-mid);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── STEPS ── */
.steps-wrap { position: relative; margin-bottom: 48px; }

.step-connector {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--step-color) 10%, white);
  border: 1px solid color-mix(in srgb, var(--step-color) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.step-num-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

.how-cta { text-align: center; }

/* ── SERVICES ── */
.services-section {
  padding: 96px 32px;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b2d4f 0%, #243d6b 60%, #1e3557 100%);
  opacity: 0.97;
}

.services-section .section-inner { position: relative; z-index: 1; }

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

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 3px 9px;
  border-radius: 50px;
}

.featured-service {
  border-color: rgba(200,150,62,0.4);
  background: rgba(200,150,62,0.06) !important;
}

.service-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.service-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-light);
  transition: color 0.2s;
}

.service-link:hover { color: white; }

/* ── COUNTIES ── */
.counties-section { background: var(--cream); }

.counties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.county-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  transition: transform 0.2s, box-shadow 0.2s;
  color: inherit;
}

.county-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.county-map-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }

.county-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.county-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 10px;
}

.county-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}

.county-card:hover .county-link { color: var(--navy); }

/* ── CHAT SECTION ── */
.chat-section {
  padding: 96px 32px;
  background: white;
}

.chat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chat-content .section-eyebrow,
.chat-content .section-title,
.chat-content .section-desc { text-align: left; }
.chat-content .section-title { margin-bottom: 16px; }

.chat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
}

.cf-check {
  width: 22px; height: 22px;
  background: rgba(46,107,71,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* CHAT WINDOW */
.chat-window {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chat-win-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.chat-win-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.chat-win-name { font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }

.chat-win-status {
  font-size: 11px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-dot {
  width: 7px; height: 7px;
  background: #5ddb8a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
}

.chat-win-messages {
  padding: 20px;
  min-height: 220px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg { display: flex; flex-direction: column; gap: 4px; }
.chat-msg.user { align-items: flex-end; }

.chat-bubble {
  max-width: 80%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

.chat-msg.agent .chat-bubble {
  background: white;
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-time {
  font-size: 10px;
  color: var(--text-soft);
  padding: 0 4px;
}

.chat-quick-replies {
  padding: 0 16px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-quick-replies button {
  font-size: 11.5px;
  padding: 6px 13px;
  border-radius: 50px;
  border: 1.5px solid rgba(46,109,164,0.3);
  color: var(--blue);
  background: white;
  font-weight: 600;
  transition: all 0.15s;
}

.chat-quick-replies button:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.chat-win-input {
  padding: 14px 16px;
  border-top: 1px solid var(--sand);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-win-input input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 50px;
  font-size: 13.5px;
  outline: none;
  background: white;
  transition: border-color 0.2s;
}

.chat-win-input input:focus { border-color: var(--blue); }

.chat-send-btn {
  width: 38px; height: 38px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.chat-send-btn:hover { background: var(--gold-light); transform: scale(1.05); }

/* ── INTAKE FORM ── */
.intake-section {
  padding: 96px 32px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 100%);
}

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

.intake-content .section-eyebrow,
.intake-content .section-title { text-align: left; }

.intake-reassure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reassure-item {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.intake-form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.1);
  background: white;
}

.form-field textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(27,45,79,0.25);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,45,79,0.3);
}

.form-disclaimer {
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section { background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(27,45,79,0.2); }

.faq-q {
  width: 100%;
  background: white;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-q:hover { background: var(--warm-white); }

.faq-arrow {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  border-top: 1px solid var(--sand);
  padding-top: 14px;
}

.faq-a.open { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: white;
  padding: 64px 32px 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
  max-width: 280px;
}

.footer-license {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,150,62,0.3);
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

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

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover { color: white; }

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: white; }

/* ── FLOAT CHAT ── */
.float-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-chat-btn {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: none;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(27,45,79,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.float-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(27,45,79,0.45);
}

.float-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
  font-size: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.float-tooltip {
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.2s;
  pointer-events: none;
}

.float-chat:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 2.6rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .chat-inner { grid-template-columns: 1fr; }
  .intake-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero { padding: 48px 20px; }
  .section { padding: 64px 20px; }
  .services-section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-ribbon { padding: 20px 16px; }
  .stat { padding: 8px 24px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .intake-form { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-trust-row { gap: 7px; }
  .trust-pill { font-size: 11px; }
}
