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

:root {
  --orange:       #0891B2;
  --orange-dark:  #0E7490;
  --orange-light: #E0F2F7;
  --navy:         #0B1F3A;
  --navy-mid:     #132840;
  --pool:         #00C2CB;
  --pool-light:   #E0F9FA;
  --white:        #FFFFFF;
  --sand:         #FFF9F5;
  --gray-light:   #F8FAFC;
  --gray-border:  #E2E8F0;
  --gray:         #64748B;
  --gray-dark:    #374151;
  --text:         #1E293B;
  --green:        #16A34A;
  --red:          #DC2626;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.20);
  --t:            .25s ease;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-kerning: normal;
}

p { text-wrap: pretty; }

h1,h2,h3,h4,h5 {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
  font-optical-sizing: auto;
  font-kerning: normal;
  text-wrap: balance;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(8,145,178,.30);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(8,145,178,.40);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION ATOMS ===== */
.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: var(--pool); }
.section-title {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.02rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 0;
}
.section-desc.light { color: rgba(255,255,255,.75); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .77rem;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
}
.topbar-left i { color: var(--pool); margin-right: 5px; font-size: .75rem; }
.topbar-dot { color: rgba(255,255,255,.3); }
.topbar-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: background var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-call:hover { background: var(--orange-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

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

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo-tile {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 12px;
  margin-bottom: 16px;
}
.logo-img-footer {
  height: 52px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 34px; font-size: 1rem; }
.logo-words {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.logo-sub {
  display: block;
  font-size: .67rem;
  font-weight: 600;
  color: var(--pool);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--gray-dark);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a:hover { color: var(--navy); background: var(--gray-light); }
.nav-links li a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
  margin-left: 6px;
  box-shadow: 0 3px 12px rgba(8,145,178,.25);
}
.nav-links li a.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11,31,58,.90) 0%, rgba(11,31,58,.75) 50%, rgba(11,31,58,.55) 100%),
    url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?w=1600&q=80') center/cover no-repeat;
}

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

.hero-left { padding-right: 8px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge i { color: #FBBF24; }

.hero-left h1 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
}
.trust-pill i { color: var(--pool); font-size: .78rem; }

.hero-booking-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,145,178,.18);
  border: 1px solid rgba(8,145,178,.35);
  border-radius: var(--radius);
  padding: 11px 16px;
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  max-width: 480px;
}
.hero-booking-note i { color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.hero-booking-note strong { color: var(--white); }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  animation: slideInRight .55s ease both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-card-header { margin-bottom: 24px; }
.form-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-card-header p {
  font-size: .82rem;
  color: var(--gray);
}

.fgroup {
  margin-bottom: 14px;
}
.fgroup label {
  display: block;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-dark);
  margin-bottom: 6px;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(8,145,178,.12);
}
.fgroup textarea { resize: vertical; }

.form-note {
  font-size: .73rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-note i { font-size: .7rem; }

.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p { color: var(--gray); font-size: .92rem; }
.form-success a { color: var(--orange); font-weight: 600; }

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-cue a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--navy);
  padding: 22px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 28px;
  color: var(--white);
  font-size: .82rem;
}
.proof-item strong {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.proof-item span { color: rgba(255,255,255,.6); font-size: .78rem; }
.proof-stars { color: #FBBF24; font-size: .85rem; letter-spacing: 2px; }
.proof-icon { font-size: 1.4rem; color: var(--pool); margin-bottom: 2px; }
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--gray-light);
}
.services .section-label,
.services .section-title,
.services .section-desc {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.services .section-desc { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t), opacity 0.55s var(--ease-out-quart);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.svc-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t);
}
.service-card:hover .svc-icon { background: var(--orange); }
.svc-icon i {
  font-size: 1.4rem;
  color: var(--orange);
  transition: color var(--t);
}
.service-card:hover .svc-icon i { color: var(--white); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--t);
}
.svc-link:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.hiw-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,58,.96) 0%, rgba(0,60,90,.95) 100%),
    url('https://images.unsplash.com/photo-1575364289237-c7f5fe97e4c1?w=1400&q=80') center/cover no-repeat;
}
.hiw-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hiw-inner .section-label,
.hiw-inner .section-title,
.hiw-inner .section-desc {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}
.hiw-inner .section-desc { margin-bottom: 60px; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 52px;
}
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--t);
}
.step:hover { background: rgba(255,255,255,.10); }
.step-num {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: 14px;
}
.step-icon {
  width: 60px; height: 60px;
  background: rgba(8,145,178,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon i { font-size: 1.4rem; color: var(--orange); }
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: .86rem;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 60px;
  color: rgba(255,255,255,.25);
  font-size: 1.2rem;
}
.hiw-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats {
  background: var(--orange);
  padding: 60px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suf {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255,255,255,.75);
}
.stat-item p {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== DIFFERENCE / COMPARISON ===== */
.difference {
  padding: 100px 0;
  background: var(--white);
}
.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.diff-content p {
  color: var(--gray);
  margin-bottom: 14px;
  font-size: .97rem;
  line-height: 1.7;
}

.diff-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}
.diff-table {
  width: 100%;
  border-collapse: collapse;
}
.diff-table thead th {
  padding: 16px 20px;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.diff-table thead th:first-child {
  background: var(--gray-light);
  color: var(--gray);
  text-align: left;
}
.col-us {
  background: var(--navy);
  color: var(--white) !important;
  text-align: center;
}
.col-us i { color: #FBBF24; margin-left: 5px; }
.col-them {
  background: var(--gray-light);
  color: var(--gray) !important;
  text-align: center;
}
.diff-table tbody tr {
  border-top: 1px solid var(--gray-border);
}
.diff-table tbody tr:hover td { background: var(--sand); }
.diff-table tbody td {
  padding: 14px 20px;
  font-size: .88rem;
}
.diff-table tbody td:first-child {
  color: var(--gray-dark);
  font-weight: 500;
}
.diff-table tbody td.col-us,
.diff-table tbody td.col-them {
  text-align: center;
  background: transparent;
}
.diff-table tbody tr:nth-child(even) td.col-us { background: rgba(11,31,58,.03); }
i.yes { color: var(--green); font-size: 1.05rem; }
i.no  { color: var(--red);   font-size: 1.05rem; }
.sometimes {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray);
  font-style: italic;
}
/* highlight the "us" column header */
.diff-table thead .col-us { background: var(--navy); }

/* ===== REVIEWS ===== */
.reviews {
  padding: 96px 0;
  background: var(--sand);
}
.reviews .section-label,
.reviews .section-title {
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.reviews .section-title { margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), opacity 0.55s var(--ease-out-quart);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars { color: #FBBF24; font-size: .9rem; letter-spacing: 2px; }
.review-card > p {
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.reviewer span {
  font-size: .78rem;
  color: var(--gray);
}
.reviews-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--t);
}
.google-reviews-link i { color: #4285F4; }
.google-reviews-link:hover { color: var(--navy); }

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.faq-header .section-desc { max-width: 340px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-item:first-child { border-top: 1px solid var(--gray-border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--orange); }
.faq-q[aria-expanded="true"] { color: var(--orange); }
.faq-q i {
  font-size: .8rem;
  color: var(--gray);
  transition: transform var(--t), color var(--t);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== SERVICE AREAS ===== */
.areas {
  padding: 80px 0;
  background: var(--gray-light);
}
.areas .section-label,
.areas .section-title {
  display: block;
  text-align: center;
}
.areas .section-title { margin-bottom: 40px; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-chip {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 30px;
  padding: 9px 20px;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--t);
  cursor: default;
}
.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.area-chip i { color: var(--orange); font-size: .75rem; transition: color var(--t); }
.area-chip:hover i { color: var(--pool); }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11,31,58,.97) 0%, rgba(0,50,80,.95) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.cta-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-contact-rows { display: flex; flex-direction: column; gap: 16px; }
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.85);
  transition: color var(--t);
}
.cta-contact-row:not(.no-link):hover { color: var(--white); }
.cta-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon i { color: var(--pool); font-size: 1rem; }
.cta-contact-row strong {
  display: block;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}
.cta-contact-row span {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}

.cta-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
}
.cta-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-name {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.footer-name span {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--pool);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-brand > p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li {
  font-size: .85rem;
  padding: 4px 0;
  color: rgba(255,255,255,.55);
}
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--pool); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-contact i { color: var(--pool); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: inherit; transition: color var(--t); }
.footer-contact a:hover { color: var(--pool); }

.footer-bottom {
  background: rgba(0,0,0,.22);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner p { font-size: .77rem; color: rgba(255,255,255,.38); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 16px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.12);
}
.mobile-cta-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 16px 20px;
  flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 999;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ===== MOTION SYSTEM ===== */

/* Keyframes */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-enter-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}

/* Hero entrance — only when motion is OK */
@media (prefers-reduced-motion: no-preference) {
  .hero-badge        { animation: hero-rise        0.6s var(--ease-out-expo) 0.08s both; }
  .hero-left h1      { animation: hero-rise        0.6s var(--ease-out-expo) 0.20s both; }
  .hero-sub          { animation: hero-rise        0.6s var(--ease-out-expo) 0.34s both; }
  .hero-trust        { animation: hero-rise        0.6s var(--ease-out-expo) 0.46s both; }
  .hero-booking-note { animation: hero-rise        0.6s var(--ease-out-expo) 0.56s both; }
  /* Form card slides in from the right on a slight offset for depth */
  .hero-form-card    { animation: hero-enter-right 0.7s var(--ease-out-expo) 0.18s both; }
}

/* ===== SCROLL REVEAL ===== */
/*
 * Default state: ALL elements visible. The .js-animate class on <body>
 * opts below-fold elements into reveal-pending. Content is never hidden
 * without JS running, and a 2.8s safety timeout shows any stragglers.
 */
.js-animate .reveal-pending {
  opacity: 0;
  transform: translateY(20px);
}

/* Transitions for reveal-eligible elements that don't already define one */
.step,
.diff-table-wrap,
.faq-item {
  transition: opacity 0.55s var(--ease-out-quart), transform 0.55s var(--ease-out-quart);
}
/* .service-card and .review-card already have transitions (opacity added above) */
/* .area-chip has transition:all which covers opacity */

/* ===== BUTTON PRESS FEEDBACK ===== */
.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.08s !important;
}
.btn-orange:active {
  transform: scale(0.97) translateY(0) !important;
  box-shadow: 0 2px 8px rgba(8,145,178,.25) !important;
}

/* ===== REDUCED MOTION SAFETY NET ===== */
@media (prefers-reduced-motion: reduce) {
  /* Never gate content */
  .js-animate .reveal-pending {
    opacity: 1 !important;
    transform: none !important;
  }
  /* No hero entrance */
  .hero-badge,
  .hero-left h1,
  .hero-sub,
  .hero-trust,
  .hero-booking-note,
  .hero-form-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  /* Instant functional transitions */
  .service-card,
  .review-card,
  .step,
  .diff-table-wrap,
  .faq-item,
  .area-chip {
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 560px; }
  .hero-right { display: none; }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--gray-border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    box-shadow: -6px 0 30px rgba(0,0,0,.15);
    transition: right var(--t);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a { padding: 12px 14px; font-size: .9rem; }
  .nav-links li a.nav-cta { margin: 12px 0 0; justify-content: center; }

  .hero { min-height: auto; padding: 60px 0 50px; }
  .hero-right { display: none; }
  .hero-inner { grid-template-columns: 1fr; }

  .mobile-cta { display: flex; }
  .back-top { bottom: 80px; }

  .proof-bar-inner { gap: 0; }
  .proof-divider { display: none; }
  .proof-item { padding: 8px 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .diff-table-wrap { overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-form-card { padding: 28px 20px; }
  .cta-form-wrap { padding: 28px 20px; }
}
