/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --blue-deep: #062035;
  --blue: #1a7ab0;
  --blue-mid: #2fa8df;
  --blue-light: #5ec0e8;
  --sky: #2fa8df;
  --sky-mid: #68caee;
  --sky-light: #aadff5;
  --sky-pale: #e0f4fc;
  --cream: #FFFFFF;
  --warm-white: #F8FBFE;
  --sand: #D8EEF9;
  --sand-mid: #A8CAE0;
  --gold: #ebb82c;
  --gold-light: #f5d870;
  --text-dark: #071828;
  --text-body: #1C3548;
  --text-muted: #5B7F96;
  --text-light: #90B2C8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(6, 32, 47, .07);
  --shadow-md: 0 4px 24px rgba(6, 32, 47, .11);
  --shadow-lg: 0 8px 48px rgba(6, 32, 47, .15);
  --shadow-xl: 0 20px 70px rgba(6, 32, 47, .20);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 9999px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}

.italic {
  font-style: italic;
}

.text-blue {
  color: var(--blue-mid);
}

.text-gold {
  color: var(--gold);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 280ms var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #c99a1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(235, 184, 44, .35);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* ── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sky-pale);
  color: var(--blue-mid);
  border-radius: var(--r-full);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION WRAPPER ─────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes blobPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.04) rotate(3deg);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 350ms var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 200ms;
}

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

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

.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  transition: all 200ms;
}

.nav-login:hover {
  color: var(--blue);
  background: var(--sky-pale);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background 200ms;
}

.hamburger:hover {
  background: var(--sky-pale);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 300ms var(--ease-out);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--sand);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform 400ms var(--ease-out);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--sand);
  transition: color 200ms;
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-menu .mobile-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.mobile-menu .mobile-ctas .btn {
  width: 90%;
  text-align: center;
}

.mobile-menu .btn-primary {
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  box-shadow: 0 4px 12px rgba(26, 122, 176, 0.2);
}

@media (max-width: 768px) {
  .nav-actions .owner-login {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: visible;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: var(--warm-white);
}

/* background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 168, 223, .18) 0%, transparent 70%);
  top: -10%;
  right: -8%;
  animation: blobPulse 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 184, 44, .14) 0%, transparent 70%);
  bottom: 0;
  left: -5%;
  animation: blobPulse 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 122, 176, .10) 0%, transparent 70%);
  top: 30%;
  left: 40%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 100;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--blue-mid);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Search form */
.search-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  border: 1px solid var(--sand);
  width: 100%;
  z-index: 10000;
}

.search-field {
  padding: 0.6rem 1rem;
  border-right: 1px solid var(--sand);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  padding: 0;
}

.search-field input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.search-submit {
  padding: 0 0 0 1rem;
  display: flex;
  align-items: center;
}

.search-btn {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 250ms var(--ease-out);
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--blue-mid);
  transform: scale(1.03);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-main-card {
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-main-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(47, 168, 223, .35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-avatar-row {
  display: flex;
  align-items: center;
  gap: -0.5rem;
}

.avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar-sm:first-child {
  margin-left: 0;
}

.av-1 {
  background: #5CC8E8;
  color: var(--blue-deep);
}

.av-2 {
  background: #E8C57A;
  color: var(--blue-deep);
}

.av-3 {
  background: #A8DFF0;
  color: var(--blue-deep);
}

.av-4 {
  background: #1270A0;
  color: var(--white);
}

.hero-card-rating {
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-card-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1.75rem;
}

.hero-card-booking {
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-detail-label {
  font-size: 0.7rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.booking-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}

.hero-float-card-1 {
  bottom: -1.5rem;
  left: -2.5rem;
  min-width: 170px;
  animation: float 7s ease-in-out infinite 1s;
}

.hero-float-card-2 {
  top: -1.5rem;
  right: -2rem;
  min-width: 155px;
  animation: float 5s ease-in-out infinite 2s;
}

.float-card-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.float-card-sub {
  font-size: 0.75rem;
  color: var(--sky);
  font-weight: 500;
  margin-top: 0.1rem;
}

.float-card-pro {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.float-pro-avatar {
  width: 32px;
  height: 32px;
  background: var(--sky-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-mid);
}

.float-pro-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.float-pro-tag {
  font-size: 0.72rem;
  color: var(--sky);
}

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--blue);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, .85);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  width: 22px;
  height: 22px;
  background: rgba(47, 168, 223, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how {
  background: var(--cream);
  overflow: hidden;
}

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 3.5rem;
  left: calc(33.33% - 1rem);
  width: calc(33.33% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--sand-mid), var(--sky-mid), var(--sand-mid));
  z-index: 0;
}

.how-connector-2 {
  left: calc(66.66% - 1rem);
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.how-step-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 300ms var(--ease-out);
}

.how-step:hover .how-step-icon {
  border-color: var(--sky-mid);
  background: var(--sky-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.how-step-num {
  position: absolute;
  top: -0.5rem;
  right: calc(50% - 2.2rem);
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.how-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services {
  background: var(--warm-white);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--sand);
  cursor: pointer;
  transition: all 320ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(47, 168, 223, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
}

.service-card:hover {
  border-color: var(--sky-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-card.featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, .7);
}

.service-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-mid);
}

.service-card.featured .service-price {
  color: var(--gold-light);
}

.service-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--blue);
  transition: all 250ms var(--ease-out);
}

.service-card:hover .service-arrow {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.service-card.featured .service-arrow {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.service-card.featured:hover .service-arrow {
  background: rgba(255, 255, 255, .25);
}

/* ══════════════════════════════════════════════════════
   WHY SO CLEAN (FEATURES)
══════════════════════════════════════════════════════ */
.features {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.features-bg-decor {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 223, .07) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--sky-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 250ms;
}

.feature-item:hover .feature-icon {
  background: var(--blue);
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats block in features */
.features-visual {
  position: relative;
}

.stats-card-big {
  background: var(--blue);
  border-radius: var(--r-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-card-big::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(47, 168, 223, .25) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-block {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

.stat-accent {
  color: var(--gold-light);
}

.review-pill {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: float 6s ease-in-out infinite;
}

.review-pill-avatar {
  width: 40px;
  height: 40px;
  background: var(--sky-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-mid);
  flex-shrink: 0;
}

.review-pill-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  max-width: 130px;
  line-height: 1.4;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.star {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ══════════════════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════════════════ */
.areas {
  background: var(--warm-white);
  overflow: hidden;
}

.areas-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.areas-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--sand);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all 220ms var(--ease-out);
  cursor: pointer;
}

.area-pill:hover {
  border-color: var(--sky);
  background: var(--sky-pale);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-pill-more {
  border-style: dashed;
  color: var(--text-muted);
}

.area-pill-more:hover {
  border-color: var(--blue);
  border-style: solid;
}

.areas-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--sky-pale);
  border-radius: var(--r-lg);
  border: 1px solid var(--sand);
}

.areas-cta-text {
  font-size: 1rem;
  color: var(--text-body);
}

.areas-cta-text strong {
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--sand);
  transition: all 300ms var(--ease-out);
}

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

.testimonial-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  grid-row: span 1;
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.test-star {
  font-size: 0.9rem;
  color: var(--gold);
}

.testimonial-card.featured .test-star {
  color: var(--gold-light);
}

.test-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card.featured .test-quote {
  color: var(--white);
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.test-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-card.featured .test-name {
  color: var(--white);
}

.test-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card.featured .test-location {
  color: rgba(255, 255, 255, .6);
}

.test-service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.testimonial-card.featured .test-service-tag {
  color: var(--gold-light);
}

.test-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.test-google-badge--light {
  color: rgba(255, 255, 255, .7);
}

.test-stars {
  margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════════════════
   APP CTA
══════════════════════════════════════════════════════ */
.app-cta {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}

.app-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 168, 223, .12) 0%, transparent 70%);
}

.app-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 184, 44, .08) 0%, transparent 70%);
}

.app-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.app-cta-content {
  position: relative;
  z-index: 1;
}

.app-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-mid);
  margin-bottom: 0.75rem;
}

.app-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.app-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  padding: 0.85rem 1.5rem;
  color: var(--white);
  transition: all 250ms var(--ease-out);
  cursor: pointer;
}

.app-btn:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.app-btn-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.app-btn-text-sm {
  font-size: 0.7rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-btn-text-lg {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.phone-mockup {
  width: 200px;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 36px;
  padding: 1rem;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup-2 {
  width: 180px;
  animation: float 7s ease-in-out infinite 1.5s;
  opacity: 0.7;
}

.phone-screen {
  background: var(--blue);
  border-radius: 28px;
  padding: 1.25rem 1rem;
  min-height: 340px;
}

.phone-screen-2 {
  background: var(--warm-white);
  border-radius: 28px;
  padding: 1.25rem 1rem;
  min-height: 300px;
}

.phone-notch {
  width: 40%;
  height: 6px;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--r-full);
  margin: 0 auto 1rem;
}

.phone-notch-dark {
  background: var(--sand);
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.phone-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-line {
  height: 8px;
  background: rgba(255, 255, 255, .15);
  border-radius: 4px;
  flex: 1;
}

.phone-line-dark {
  background: var(--sand);
}

.phone-card-sm {
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.phone-card-sm-dark {
  background: var(--sky-pale);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.phone-bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .15);
  margin-bottom: 4px;
}

.phone-bar-dark {
  background: var(--sky-light);
}

.phone-bar-short {
  width: 60%;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .75);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  max-width: 300px;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.footer-newsletter input:focus {
  border-color: rgba(47, 168, 223, .5);
  background: rgba(255, 255, 255, .12);
}

.footer-newsletter button {
  background: var(--sky);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.1rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms;
  font-family: var(--font-body);
}

.footer-newsletter button:hover {
  background: var(--blue-light);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .55);
  transition: color 200ms;
}

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

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

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .6);
  transition: all 200ms;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--sky);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Clip hero blobs so they don't overflow the viewport */
  .hero {
    overflow: hidden;
  }

  .hero-blob-1 {
    width: 300px;
    height: 300px;
    right: -5%;
  }

  .hero-blob-2 {
    width: 220px;
    height: 220px;
    left: -3%;
  }

  .hero-blob-3 {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-subtext {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-visual {
    display: none;
  }

  .app-cta-inner {
    grid-template-columns: 1fr;
  }

  .app-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .search-field:nth-child(2) {
    border-right: none;
  }

  .search-field:nth-child(3) {
    border-top: 1px solid var(--sand);
    border-right: none;
  }

  .search-submit {
    border-top: 1px solid var(--sand);
    padding: 0.75rem 0 0;
  }

  .search-submit .search-btn {
    width: 100%;
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 680px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--sand);
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .search-submit {
    border-top: 1px solid var(--sand);
    padding: 0.75rem 0 0;
  }

  .search-submit .search-btn {
    width: 100%;
    justify-content: center;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-connector,
  .how-connector-2 {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .trust-bar-inner {
    gap: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-lg {
    padding: 4.5rem 0;
  }
}

/* ── DIVIDER ─────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}