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

:root {
  --sand-50: #fef9f3;
  --sand-100: #fdf2e4;
  --sand-200: #f5e0c4;
  --sand-300: #e8cba0;
  --ocean-400: #4a9ead;
  --ocean-500: #2b7a8a;
  --ocean-600: #1d5f6d;
  --ocean-700: #164a55;
  --ocean-800: #0f343d;
  --coral-400: #e8785a;
  --coral-500: #d4603f;
  --coral-600: #b84e30;
  --seafoam: #d4ece8;
  --seafoam-light: #edf7f5;
  --warm-white: #fdfbf8;
  --text-primary: #1a2e35;
  --text-secondary: #3d5a63;
  --text-muted: #6b8a93;
  --border-light: #e2e8e6;
  --shadow-sm: 0 1px 3px rgba(15,52,61,.06);
  --shadow-md: 0 4px 16px rgba(15,52,61,.08);
  --shadow-lg: 0 8px 32px rgba(15,52,61,.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

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

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,251,248,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
  background: rgba(253,251,248,.95);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ocean-700);
}

.nav-logo span { color: var(--ocean-400); }

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}

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

.nav-cta {
  background: var(--ocean-500) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--ocean-600) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--ocean-500);
  color: #fff;
}
.btn-primary:hover { background: var(--ocean-600); }

.btn-secondary {
  background: transparent;
  color: var(--ocean-600);
  border: 1.5px solid var(--ocean-400);
}
.btn-secondary:hover { background: var(--seafoam-light); }

.btn-coral {
  background: var(--coral-500);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-600); }

.btn-white {
  background: #fff;
  color: var(--ocean-700);
}
.btn-white:hover { background: var(--sand-100); }

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* === HERO === */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--sand-100) 40%, var(--seafoam-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74,158,173,.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--seafoam);
  color: var(--ocean-600);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--ocean-800);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--ocean-400);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.trust-dot.ocean { background: var(--ocean-400); }
.trust-dot.coral { background: var(--coral-400); }
.trust-dot.green { background: #4abe8a; }

.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--ocean-700);
}

.hero-card-value sup {
  font-size: 20px;
  top: -12px;
  color: var(--text-muted);
}

.hero-card-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-card-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

.hero-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-card-features li svg {
  flex-shrink: 0;
  color: var(--ocean-400);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
}

.hero-float.rating {
  top: -10px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ocean-700);
}

.hero-float.homes {
  bottom: 40px;
  left: -30px;
  color: var(--text-secondary);
}

.hero-float .num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ocean-600);
}

/* === STATS BAR === */
.stats-bar {
  padding: 48px 0;
  background: var(--ocean-700);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}

.section-sand { background: var(--sand-50); }
.section-seafoam { background: var(--seafoam-light); }

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ocean-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  color: var(--ocean-800);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === SERVICES (asymmetric layout) === */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-featured {
  grid-row: span 2;
  background: linear-gradient(165deg, var(--ocean-700) 0%, var(--ocean-600) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.service-featured::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.service-featured-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-featured h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-featured p {
  font-size: 16px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 20px;
}

.service-featured .price-line {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-featured .price-note {
  font-size: 14px;
  opacity: .6;
  margin-bottom: 24px;
}

.service-featured .btn-white { position: relative; z-index: 1; }

.service-secondary {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .25s;
}

.service-secondary:hover { box-shadow: var(--shadow-md); }

.service-secondary.highlight {
  background: linear-gradient(165deg, var(--coral-500) 0%, var(--coral-600) 100%);
  color: #fff;
  border: none;
}

.service-secondary.highlight .service-tag { background: rgba(255,255,255,.2); color: #fff; }
.service-secondary.highlight p { opacity: .85; }

.service-tag {
  display: inline-block;
  background: var(--seafoam);
  color: var(--ocean-600);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
  align-self: flex-start;
}

.service-secondary h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-secondary p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-secondary.highlight p { color: rgba(255,255,255,.85); }

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ocean-600);
}

.service-secondary.highlight .service-price { color: #fff; }

.service-compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.service-compact {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .25s;
}

.service-compact:hover { box-shadow: var(--shadow-sm); }

.service-compact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral-500);
}

.service-compact h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.service-compact p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.service-compact .service-price {
  font-size: 18px;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow .25s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.popular {
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 1px var(--ocean-400), var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.pricing-card h4 {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--ocean-700);
  line-height: 1;
}

.pricing-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-list li svg { color: var(--ocean-400); flex-shrink: 0; }

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* === TESTIMONIALS === */
.testimonial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-featured {
  background: var(--ocean-700);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-featured blockquote {
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
  opacity: .95;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--ocean-400);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-loc {
  font-size: 14px;
  opacity: .6;
  margin-top: 2px;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-compact {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
}

.testimonial-compact blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-compact .testimonial-author { color: var(--text-primary); font-size: 14px; }
.testimonial-compact .testimonial-loc { color: var(--text-muted); font-size: 13px; }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--ocean-400);
  transition: transform .2s;
}

.faq-item.open .faq-q::after {
  content: '-';
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* === CTA BANNER === */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--ocean-700) 0%, var(--ocean-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,158,173,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}

.cta-ghost:hover { background: rgba(255,255,255,.18); }

/* === FOOTER === */
.footer {
  background: var(--ocean-800);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.7);
}

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

.footer-brand h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--ocean-400); }

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

.footer-brand a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.footer ul {
  list-style: none;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  font-size: 14px;
  transition: color .2s;
}

.footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* === MOBILE STICKY CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

.mobile-cta-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-cta .btn { flex: 1; justify-content: center; }

.mobile-cta .btn-call {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--coral-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right .3s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,52,61,.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.mobile-menu a:hover { background: var(--sand-50); }

.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 8px 0;
}

/* === FADE UP === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === AREAS GRID === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: box-shadow .25s;
}

.area-card:hover { box-shadow: var(--shadow-sm); }

.area-card h4 {
  font-size: 18px;
  color: var(--ocean-700);
  margin-bottom: 6px;
}

.area-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 400px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-featured { min-height: auto; grid-row: span 1; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-val { font-size: 28px; }
  .service-compact-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-float.rating { right: 0; }
  .hero-float.homes { left: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-row { flex-direction: column; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 28px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }
}


/* === PHOTO OVERLAY HERO (Area Pages) === */
.hero-photo {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--ocean-800, #0f343d);
  min-height: 420px;
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,95,109,0.6) 0%, rgba(253,251,248,0.72) 100%);
}
.hero-photo .container {
  position: relative;
  z-index: 1;
}
.hero-photo h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-photo p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.95);
  max-width: 560px;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-photo .hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-photo { padding: 120px 0 80px; }
  .hero-photo h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero-photo { padding: 100px 0 60px; }
}

/* === NAV DROPDOWNS === */
.nav-dropdown { position:relative; }
.nav-dropdown > a::after { content:" ▾"; font-size:10px; }
.dropdown-menu {
  display:none; position:absolute; top:100%; left:0; background:var(--warm-white);
  border:1px solid var(--border-light); border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg); min-width:200px; padding:6px;
  z-index:100;
}
.nav-dropdown:hover .dropdown-menu { display:block; }
.dropdown-menu a {
  display:block; padding:8px 14px; border-radius:var(--radius-sm);
  font-size:13px; color:var(--text-primary); font-weight:500;
}
.dropdown-menu a:hover {
  background:var(--seafoam-light); color:var(--ocean-600);
}

/* === CONTENT GRID === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  max-width: 280px;
  margin: 0 auto;
}

/* === HERO SIMPLE === */
.hero-simple {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-simple.water-bg {
  background: linear-gradient(160deg, var(--ocean-600) 0%, var(--ocean-800) 100%);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.hero-simple.water-bg h1 { color: #fff; font-weight: 800; }
.hero-simple.water-bg p { color: rgba(255,255,255,.95); }

.hero-simple.has-bg {
  background: var(--ocean-800);
}

.hero-simple .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-simple .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-simple .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,52,61,.65) 0%, rgba(15,52,61,.8) 100%);
}

.hero-simple.has-bg .container {
  position: relative;
  z-index: 1;
}

.hero-simple.has-bg h1 { color: #fff; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-simple.has-bg p { color: rgba(255,255,255,.95); text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* === SECTION VARIANTS === */
.section-alt {
  background: var(--sand-50);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ocean-500);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === CARD === */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon.blue {
  background: var(--seafoam-light);
  color: var(--ocean-600);
}

/* === GRIDS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* === CHECKLIST === */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  padding: 24px;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--ocean-600);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* === STATS ROW === */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ocean-700);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

/* === TESTIMONIAL (standalone) === */
.testimonial {
  padding: 24px;
  background: var(--sand-50);
  border-radius: var(--radius-lg);
}

/* === TRUST BAR & BADGES === */
.trust-bar {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trust-icon.blue {
  background: var(--seafoam-light);
}

/* === CTA BANNER (inline) === */
.cta-banner {
  background: var(--ocean-700);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.75); }

/* === FREQUENCY TOGGLE === */
.freq-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.freq-btn {
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #fff;
  color: var(--text-secondary);
  transition: background .2s, color .2s, border-color .2s;
}

.freq-btn.active {
  background: var(--ocean-600);
  color: #fff;
  border-color: var(--ocean-600);
}

/* === PRICING FEATURES === */
.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.pricing-save {
  font-size: 13px;
  color: var(--coral-500);
  font-weight: 600;
  margin-top: 4px;
}

.popular-tag {
  background: var(--coral-500);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

/* === BUTTON BLOCK === */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* === FORMS === */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  transition: border-color .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 3px rgba(74,158,173,.1);
}

/* === RESPONSIVE (new classes) === */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-grid.reverse { direction: ltr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-simple { padding: 110px 0 60px; }
  .stats-row { gap: 32px; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .content-image { max-width: 200px; }
  .hero-simple { padding: 100px 0 48px; }
  .cta-banner { padding: 32px 20px; }
  .stats-row { gap: 24px; }
  .stat-number { font-size: 2rem; }
}
