/* ═══════════════════════════════════════════
   SOUTH SHORE SMILES — DENTAL DEMO SITE
   Palette:
     Teal dark:   #0A6B70
     Teal mid:    #0D8F96
     Teal light:  #12B5BD
     Navy:        #0A2540
     Gold:        #F5A623
     White:       #FFFFFF
     Off-white:   #F7FAFA
     Light teal:  #E8F7F8
     Text mid:    #4A5568
     Border:      #D1E8EA
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dark:   #0A6B70;
  --teal-mid:    #0D8F96;
  --teal-light:  #12B5BD;
  --navy:        #0A2540;
  --gold:        #F5A623;
  --white:       #FFFFFF;
  --off-white:   #F7FAFA;
  --light-teal:  #E8F7F8;
  --text-dark:   #0A2540;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #D1E8EA;
  --shadow-sm:   0 2px 8px rgba(10,107,112,.08);
  --shadow-md:   0 8px 24px rgba(10,107,112,.12);
  --shadow-lg:   0 20px 48px rgba(10,107,112,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── UTILITIES ─────────────────────────── */

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(10,107,112,.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--teal-light);
  background: rgba(18,181,189,.15);
}

/* ─── BUTTONS ────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--teal-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,143,150,.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,143,150,.4);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-outline-dark {
  border-color: var(--teal-mid);
  color: var(--teal-dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--teal-mid);
  color: var(--white);
}

.btn-nav {
  background: var(--teal-mid);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(13,143,150,.25);
}
.btn-nav:hover { background: var(--teal-dark); }

.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

.btn-ai {
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(245,166,35,.4);
}
.btn-ai:hover {
  background: #e8971a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.5);
}

/* ─── TOP BAR ────────────────────────────── */

.top-bar {
  background: var(--teal-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 9px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: var(--gold); text-decoration: none; font-weight: 700; }
.top-bar a:hover { color: var(--white); }

/* ─── NAVBAR ─────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(10,107,112,.12); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

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

.logo-icon { font-size: 26px; line-height: 1; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.logo-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.01em;
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--teal-mid);
  background: var(--light-teal);
}

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  list-style: none;
  padding: 8px;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--light-teal);
  color: var(--teal-mid);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────── */

.hero {
  position: relative;
  background: linear-gradient(135deg, #0A2540 0%, #0A6B70 55%, #0D8F96 100%);
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 40%, rgba(18,181,189,.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(245,166,35,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 15px;
  border-radius: 100px;
}

/* Hero card */

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.1);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mid);
}

.rating-stars { color: var(--gold); font-size: 16px; }

.hero-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero-form { display: flex; flex-direction: column; gap: 12px; }

.hero-form input,
.hero-form select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--teal-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,143,150,.1);
}

.hero-form-success {
  display: none;
  text-align: center;
  padding: 16px;
  color: var(--teal-dark);
}

.hero-form-success.visible { display: block; }
.hero-form.hidden { display: none; }

.hero-form-success div { font-size: 32px; margin-bottom: 8px; }
.hero-form-success strong { display: block; font-size: 16px; margin-bottom: 6px; }
.hero-form-success p { font-size: 13px; color: var(--text-mid); }

.hero-card-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.hero-card-note a { color: var(--teal-mid); font-weight: 600; text-decoration: none; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ─── TRUST BAR ──────────────────────────── */

.trust-bar {
  background: var(--navy);
  padding: 48px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-stat { text-align: center; }

.trust-num {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }

.trust-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
}

/* ─── SERVICES ───────────────────────────── */

.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,143,150,.25);
}

.service-card:hover::before { opacity: 1; }

.service-icon { font-size: 34px; margin-bottom: 18px; display: block; }

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-mid);
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover { letter-spacing: .02em; }

.services-more {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: var(--light-teal);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-mid);
}

.services-more strong { color: var(--teal-dark); }

/* ─── ABOUT ──────────────────────────────── */

.about { background: var(--white); }

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

.about-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-sub {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--teal-mid);
  margin-top: 4px;
}

.about-content p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 20px;
  background: var(--light-teal);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal-mid);
}

.credential {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
}

.about-photo-frame { position: relative; }

.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.photo-emoji { font-size: 72px; margin-bottom: 12px; }

.photo-caption {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.photo-subcaption {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  font-size: 20px;
  min-width: 120px;
}

.badge-text {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 4px;
}

.office-stat-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.office-stat { text-align: center; flex: 1; }

.office-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 4px;
}

.office-stat span {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ─── AI RECEPTIONIST ────────────────────── */

.ai-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.ai-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(13,143,150,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245,166,35,.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ai-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.ai-highlight { color: var(--gold); }

.ai-lead {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.ai-features { display: flex; flex-direction: column; gap: 22px; }

.ai-feature { display: flex; gap: 16px; align-items: flex-start; }

.ai-feature-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }

.ai-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.ai-feature p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}

/* Phone mockup */

.ai-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.phone-mockup {
  width: 100%;
  max-width: 340px;
  background: #0d1b2e;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 8px rgba(255,255,255,.03), var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  margin: 14px auto 0;
}

.phone-screen { padding: 16px 20px 20px; }

.call-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}

.call-avatar {
  font-size: 32px;
  background: rgba(13,143,150,.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-name { font-size: 15px; font-weight: 700; color: var(--white); }

.call-status {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.call-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.chat-bubbles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.bubble-time { font-size: 9px; opacity: .45; margin-top: 5px; }

.bubble-in {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}

.bubble-out {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: var(--white);
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  text-align: right;
}

.bubble-out .bubble-time { text-align: right; }

.call-bar {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  color: #22c55e;
  font-size: 11px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.call-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

.ai-cta-box {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  width: 100%;
  max-width: 340px;
}

.ai-cta-box p { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 12px; }

/* ─── TESTIMONIALS ───────────────────────── */

.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.author-avatar.teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid)); }

.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.reviews-cta span { font-size: 16px; color: var(--text-mid); font-weight: 500; }

/* ─── INSURANCE ──────────────────────────── */

.insurance { background: var(--white); }

.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.ins-badge {
  background: var(--light-teal);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  transition: var(--transition);
}

.ins-badge:hover {
  background: var(--teal-mid);
  color: var(--white);
  border-color: var(--teal-mid);
}

.financing-note { max-width: 640px; margin: 0 auto; }

.financing-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, var(--light-teal), rgba(245,166,35,.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.financing-icon { font-size: 36px; flex-shrink: 0; }

.financing-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.financing-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── CONTACT ────────────────────────────── */

.contact { background: var(--navy); color: var(--white); }

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

.contact h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 3px;
}

.contact-item span, .contact-item a {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  line-height: 1.5;
}

.contact-item a:hover { color: var(--gold); }

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

.contact-form h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
}

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

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,143,150,.1);
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.form-note a { color: var(--teal-mid); font-weight: 600; text-decoration: none; }

.form-success {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.form-success.visible { display: block; }
.contact-form.hidden { display: none; }

.success-icon { font-size: 52px; margin-bottom: 14px; }

.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p { font-size: 15px; color: var(--text-mid); }
.form-success a { color: var(--teal-mid); font-weight: 600; text-decoration: none; }

/* ─── FOOTER ─────────────────────────────── */

.footer { background: #060f1a; color: rgba(255,255,255,.55); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 60px 24px 44px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }

.footer-license { font-size: 11px; color: rgba(255,255,255,.3); }

.footer-links h4, .footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; }

.footer-links li, .footer-links ul li {
  font-size: 14px;
  margin-bottom: 9px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { font-size: 14px; margin-bottom: 8px; line-height: 1.6; }

.footer-contact a { color: var(--gold); text-decoration: none; font-size: 18px; font-weight: 700; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 24px; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-ai-note { color: var(--gold); font-weight: 600; }

/* ─── FAB ────────────────────────────────── */

.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--teal-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(13,143,150,.45);
  text-decoration: none;
  transition: var(--transition);
  animation: fab-float 3s ease-in-out infinite;
}

.fab:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(13,143,150,.55); }

@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ─── SCROLL REVEAL ──────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.services-grid .reveal:nth-child(2) { transition-delay: .1s; }
.services-grid .reveal:nth-child(3) { transition-delay: .2s; }
.services-grid .reveal:nth-child(4) { transition-delay: .3s; }
.services-grid .reveal:nth-child(5) { transition-delay: .4s; }
.services-grid .reveal:nth-child(6) { transition-delay: .5s; }

.testimonials-grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .2s; }
.testimonials-grid .reveal:nth-child(4) { transition-delay: .3s; }
.testimonials-grid .reveal:nth-child(5) { transition-delay: .4s; }
.testimonials-grid .reveal:nth-child(6) { transition-delay: .5s; }

/* ─── RESPONSIVE ─────────────────────────── */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .about-inner, .ai-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-placeholder { aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 8px;
    margin-top: 4px;
    padding: 4px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .top-bar span:first-child,
  .top-bar span:nth-child(2) { display: none; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .reviews-cta { flex-direction: column; gap: 16px; }
  .fab { width: 52px; height: 52px; font-size: 20px; bottom: 20px; right: 20px; }
}
