:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #182132;
  --muted: #5d6879;
  --line: #e5ebf3;
  --primary: #1565c0;
  --primary-2: #0f4fa0;
  --accent: #f28c08;
  --dark: #0c1730;
  --shadow: 0 18px 48px rgba(16, 39, 81, 0.10);
  --shadow-soft: 0 10px 24px rgba(16, 39, 81, 0.06);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(229, 235, 243, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.brand {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2a72d5 100%);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(21, 101, 192, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-2) 0%, #1a63c8 100%);
}

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(21, 101, 192, 0.25);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
}

.small-btn {
  padding: 12px 18px;
  font-size: .95rem;
}

.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 62px;
  background:
    radial-gradient(circle at top left, rgba(21, 101, 192, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(242, 140, 8, 0.10), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero-grid,
.two-col,
.contact-grid,
.cards-3 {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

.hero-grid-home {
  gap: 42px;
  align-items: start;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.two-col,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.kicker-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}

h1, h2, h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero p,
.section-title p,
.card p,
.page-hero p,
.legal-box p,
.contact-card li,
.clean-list li,
.metric-card span,
.booking-step p,
.feature-card p,
.timeline-item p,
.local-card p,
.cta-band p {
  color: var(--muted);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 62ch;
  margin: 0 0 28px;
}

.hero-actions,
.hero-points,
.footer-links,
.cta-band-actions,
.local-tags,
.trust-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.metric-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229, 235, 243, 0.95);
  box-shadow: var(--shadow-soft);
}

.metric-card strong,
.booking-step strong,
.booking-footer strong {
  display: block;
  margin-bottom: 6px;
}

.chip,
.trust-pill,
.local-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card,
.card,
.contact-card,
.contact-form,
.legal-box,
.feature-card,
.timeline-card,
.local-card,
.booking-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.hero-item,
.booking-step,
.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-icon,
.mini-icon,
.feature-icon,
.step-badge,
.timeline-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 140, 8, 0.15);
  color: #9a5a00;
  font-weight: 900;
  flex-shrink: 0;
}

section,
.page-main {
  padding: 84px 0;
}

.page-main {
  padding-top: 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title-wide {
  max-width: 900px;
}

.process-strip {
  padding-top: 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #1e5fcb 65%, #154f9e 100%);
  color: #fff;
  border-radius: 30px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 42px rgba(21, 101, 192, 0.22);
}

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

form {
  display: grid;
  gap: 14px;
}

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

label {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(36, 87, 189, 0.12);
  border-color: var(--primary);
}

.clean-list,
.contact-list {
  padding-left: 18px;
}

.clean-list li,
.contact-list li {
  margin-bottom: 10px;
}

footer {
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--primary);
}

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

/* Home only */
.homepage .site-header { isolation: isolate; }
.hero-home { position: relative; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.18) 0%, rgba(21, 101, 192, 0) 68%);
  top: -120px;
  left: -90px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 140, 8, 0.16) 0%, rgba(242, 140, 8, 0) 70%);
  right: -60px;
  top: 40px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
}

.booking-panel {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  padding: 30px;
}

.booking-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 101, 192, 0.10);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3cc46b;
  box-shadow: 0 0 0 8px rgba(60, 196, 107, 0.12);
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.active-step {
  border-color: rgba(21, 101, 192, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.booking-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.floating-note {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(12, 23, 48, 0.92);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 18px 38px rgba(12, 23, 48, 0.22);
  z-index: 3;
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note small {
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
  line-height: 1.45;
}

.floating-note-top {
  top: 36px;
  right: -14px;
}

.floating-note-bottom {
  left: -18px;
  bottom: 56px;
}

.floating-number {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
}

.trust-strip {
  padding-top: 8px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(229, 235, 243, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.trust-intro h2 {
  margin-bottom: 0;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 39, 81, 0.12);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, rgba(21, 101, 192, 0) 70%);
  right: -36px;
  top: -36px;
}

.feature-card-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border-color: rgba(21, 101, 192, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.process-home {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 100%);
}

.process-layout,
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.process-copy {
  padding-right: 18px;
}

.timeline-card {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.timeline-index {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #2d79e1 100%);
  color: #fff;
}

.local-card-dark {
  background: linear-gradient(135deg, #0f1f40 0%, #123d8f 65%, #1b5fc4 100%);
  color: #fff;
  border: none;
}

.local-card-dark h2,
.local-card-dark p {
  color: #fff;
}

.local-card-dark p {
  color: rgba(255,255,255,0.84);
}

.local-card-dark .local-tags span {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.local-card-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cta-band-home {
  align-items: center;
}

.contact-section .contact-form.card {
  padding: 28px;
}

@media (max-width: 1080px) {
  .hero-metrics,
  .feature-grid,
  .trust-strip-inner,
  .process-layout,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  .floating-note {
    position: static;
    width: auto;
    margin-top: 16px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .booking-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 760px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .form-row,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-card,
  .card,
  .contact-card,
  .contact-form,
  .legal-box,
  .feature-card,
  .timeline-card,
  .local-card,
  .booking-panel,
  .cta-band,
  .trust-strip-inner {
    padding: 22px;
  }

  section,
  .page-main {
    padding: 68px 0;
  }
}
:root {
  --blue-900: #0f2f66;
  --blue-800: #123d8f;
  --blue-700: #1e56c5;
  --blue-600: #2563eb;
  --blue-500: #4aa7ff;

  --red-500: #ff5b5b;
  --gold-500: #f4c24f;

  --ink-900: #172033;
  --ink-800: #263248;
  --ink-700: #445066;
  --ink-600: #667386;

  --line: #e5ebf4;
  --line-2: #dbe3ef;

  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #f8fbff;

  --success: #10b981;

  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-soft: 0 12px 32px rgba(15, 47, 102, 0.08);
  --shadow-card: 0 18px 44px rgba(15, 47, 102, 0.10);
  --shadow-strong: 0 24px 60px rgba(15, 47, 102, 0.14);

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(76, 167, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: #08172f;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 227, 239, 0.9);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 84px;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(15, 47, 102, 0.10));
}

.brand-mark svg {
  width: 100%;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.08rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 0.76rem;
  color: var(--ink-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--ink-700);
}

.nav-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.nav-links a.active {
  color: var(--blue-700);
}

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

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--blue-800);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-800);
  border-color: var(--line-2);
}

.btn-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}

.btn-light {
  background: #ffffff;
  color: var(--blue-800);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.small-btn {
  padding: 12px 16px;
  font-size: 0.92rem;
}

/* Homepage */
.homepage section {
  position: relative;
}

.hero-home {
  padding: 82px 0 56px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  top: 40px;
  left: -80px;
  background: rgba(76, 167, 255, 0.16);
}

.hero-orb-2 {
  width: 260px;
  height: 260px;
  right: -70px;
  top: 160px;
  background: rgba(255, 91, 91, 0.10);
}

.hero-grid-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-500);
  border-radius: 50%;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink-900);
}

.metric-card span {
  display: block;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hero showcase */
.hero-showcase {
  position: relative;
  z-index: 2;
}

.hero-brand-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 24px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}

.hero-brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-badge-light,
.hero-badge-blue {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-badge-light {
  background: #fff2dd;
  color: #b26a00;
}

.hero-badge-blue {
  background: #eaf1ff;
  color: var(--blue-700);
}

.hero-brand-logo {
  max-width: 430px;
  margin: 0 auto;
}

.hero-brand-name {
  text-align: center;
  margin-top: 10px;
}

.hero-brand-name strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--blue-900);
}

.hero-brand-name span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--ink-700);
}

.booking-panel {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.booking-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #0f8f61;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.booking-panel h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.booking-panel > p {
  margin: 0;
  color: var(--ink-600);
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.booking-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: #fbfdff;
  border-radius: 20px;
  padding: 16px;
}

.active-step {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-color: #cfe0ff;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.08);
}

.step-badge {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.booking-step strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.booking-step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.booking-label {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-600);
  margin-bottom: 4px;
}

.floating-note {
  position: absolute;
  width: 180px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.floating-note strong {
  display: block;
  margin: 4px 0;
  color: var(--ink-900);
}

.floating-note small {
  display: block;
  color: var(--ink-600);
  line-height: 1.45;
}

.floating-number {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
}

.floating-note-top {
  top: 100px;
  left: -56px;
}

.floating-note-bottom {
  right: -34px;
  bottom: 44px;
}

/* Trust strip */
.trust-strip {
  padding: 18px 0 22px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.kicker-light {
  color: rgba(255, 255, 255, 0.7);
}

.trust-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.trust-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink-800);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 47, 102, 0.05);
}

/* Sections */
.homepage-services,
.process-home,
.local-section,
.process-strip {
  padding: 78px 0;
}

.section-title {
  margin-bottom: 34px;
}

.section-title-wide {
  max-width: 820px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-title p {
  margin: 0;
  color: var(--ink-600);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-card-primary {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-color: #d6e4ff;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

/* Process */
.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.process-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.process-copy p {
  margin: 0 0 24px;
  color: var(--ink-600);
  line-height: 1.8;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfdff;
}

.timeline-index {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecf3ff;
  color: var(--blue-700);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.65;
}

/* Local section */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.local-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.local-card-dark {
  background: linear-gradient(135deg, #0d2f66 0%, #194ca9 100%);
  color: #ffffff;
  padding: 34px;
}

.local-card-dark h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.local-card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.local-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 800;
}

.local-card-light {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--line);
  padding: 26px;
}

.local-visual {
  margin-bottom: 18px;
}

.local-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.local-card-light h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
  line-height: 1.7;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--gold-500) 100%);
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 32px;
  padding: 36px 38px;
  box-shadow: var(--shadow-strong);
}

.cta-band-home {
  background: linear-gradient(135deg, #0e3270 0%, #1d58c7 100%);
  color: #ffffff;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 0 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--blue-700);
}

/* Responsive */
@media (max-width: 1180px) {
  .floating-note-top {
    left: -14px;
  }

  .floating-note-bottom {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .hero-grid-home,
  .feature-grid,
  .process-layout,
  .local-grid,
  .trust-strip-inner,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .trust-points {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 82px;
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(15, 47, 102, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .brand-mark {
    width: 70px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-home,
  .homepage-services,
  .process-home,
  .local-section,
  .process-strip {
    padding: 58px 0;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-actions,
  .cta-band-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-band-actions .btn {
    width: 100%;
  }

  .booking-panel,
  .hero-brand-card,
  .timeline-card,
  .feature-card,
  .local-card-dark,
  .local-card-light,
  .cta-band {
    padding: 22px;
  }

  .cta-band {
    border-radius: 26px;
  }

  .booking-footer {
    align-items: stretch;
  }

  .booking-footer .btn {
    width: 100%;
  }

  .trust-pill {
    width: 100%;
    text-align: center;
  }
}