/* Mind the Clearance — shared stylesheet */
:root {
  --navy: #0E2A47;
  --coral: #E94B3C;
  --coral-dark: #c83a2c;
  --sage: #7FB069;
  --cream: #FAF7F2;
  --charcoal: #2A2A2A;
  --slate: #5A6573;
  --line: #E6E2DA;
  --shadow: 0 6px 24px rgba(14, 42, 71, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); margin-top: 0; }

/* Top bar */
.topbar { background: var(--navy); color: var(--cream); font-size: 13px; }
.topbar .wrap { max-width: 1180px; margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--cream); }

/* Nav */
nav.main { background: white; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
nav.main .wrap { max-width: 1180px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
nav.main .brand { display: flex; align-items: center; gap: 12px; }
nav.main .brand svg { width: 56px; height: auto; }
nav.main .brand strong { color: var(--navy); font-size: 16px; letter-spacing: 1px; }
nav.main ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; }
nav.main ul a { color: var(--navy); font-weight: 600; font-size: 14px; padding: 6px 0; border-bottom: 2px solid transparent; }
nav.main ul a.active { border-bottom-color: var(--coral); }
.btn { display: inline-block; background: var(--coral); color: white !important; padding: 12px 22px; border-radius: 999px; font-weight: 700; letter-spacing: 0.5px; }
.btn:hover { background: var(--coral-dark); text-decoration: none; }
.btn.secondary { background: var(--navy); }
.btn.ghost { background: transparent; color: var(--navy) !important; border: 2px solid var(--navy); padding: 10px 20px; }
.btn.large { padding: 16px 28px; font-size: 16px; }

/* Hero */
.hero { padding: 64px 24px 56px; }
.hero.tall { padding: 90px 24px 72px; }
.hero .wrap { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero .wrap.single { grid-template-columns: 1fr; max-width: 880px; text-align: center; }
.eyebrow { color: var(--coral); font-weight: 800; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 14px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.05; margin: 0 0 18px; color: var(--navy); letter-spacing: -0.5px; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero p.lead { font-size: 19px; color: var(--slate); margin: 0 0 28px; max-width: 600px; }
.hero .wrap.single p.lead { margin-left: auto; margin-right: auto; }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .wrap.single .ctas { justify-content: center; }
.hero .trust { margin-top: 28px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--slate); }
.hero .trust span::before { content: "✓ "; color: var(--sage); font-weight: 800; }

/* Quote card */
.quote-card { background: white; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.quote-card h3 { margin: 0 0 6px; color: var(--navy); }
.quote-card p.sub { margin: 0 0 18px; color: var(--slate); font-size: 14px; }
.quote-card label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin: 12px 0 6px; }
.quote-card input, .quote-card select, .quote-card textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: var(--cream); }
.quote-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card button { width: 100%; margin-top: 18px; cursor: pointer; border: none; }

/* Generic sections */
section { padding: 64px 24px; }
section .wrap { max-width: 1180px; margin: 0 auto; }
section h2 { font-size: 32px; color: var(--navy); margin: 0 0 8px; }
section .sec-eyebrow { color: var(--coral); font-weight: 800; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 8px; }
section p.intro { color: var(--slate); font-size: 17px; max-width: 720px; margin: 0 0 36px; }
section.bg-white { background: white; }
section.bg-cream { background: var(--cream); }
section.bg-navy { background: var(--navy); color: var(--cream); }
section.bg-navy h2, section.bg-navy h3, section.bg-navy h4 { color: white; }
section.bg-navy .sec-eyebrow { color: #ffb1a8; }
section.bg-navy p { color: rgba(250, 247, 242, 0.85); }

/* Cards/grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: transform 0.15s ease; display: block; color: var(--charcoal); }
.svc:hover { transform: translateY(-2px); text-decoration: none; }
.svc .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px; font-size: 20px; }
.svc h3 { margin: 0 0 6px; font-size: 17px; color: var(--navy); }
.svc p { margin: 0; color: var(--slate); font-size: 14px; }
.svc .more { color: var(--coral); font-weight: 700; font-size: 13px; margin-top: 10px; display: inline-block; }
section.bg-white .svc { background: var(--cream); }
section.bg-cream .svc { background: white; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: white; border-radius: 14px; padding: 22px 22px 22px; border: 1px solid var(--line); position: relative; margin-top: 18px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 22px; width: 36px; height: 36px; background: var(--coral); color: white; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.step h3 { margin: 8px 0 6px; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--slate); font-size: 14px; }
section.bg-cream .step { background: white; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tier { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--cream); }
.tier.feature { background: var(--navy); color: var(--cream); border: none; transform: scale(1.02); }
.tier.feature h3, .tier.feature .from, .tier.feature ul, .tier.feature li { color: white; }
.tier h3 { margin: 0 0 4px; }
.tier .from { font-size: 13px; opacity: 0.7; }
.tier .price { font-size: 36px; font-weight: 800; margin: 6px 0 12px; color: var(--coral); }
.tier.feature .price { color: white; }
.tier ul { padding-left: 18px; margin: 0 0 4px; font-size: 14px; }
.tier li { margin-bottom: 4px; }
.footnote { color: var(--slate); font-size: 13px; margin-top: 16px; }

/* Areas */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 8px 14px; border-radius: 999px; font-size: 14px; color: white; }
.chip.solid { background: var(--coral); border-color: var(--coral); color: white; }
section.bg-cream .chip, section.bg-white .chip { background: white; border: 1px solid var(--line); color: var(--charcoal); }

/* Testimonials */
.quote-block { background: white; border-radius: 14px; padding: 24px; border: 1px solid var(--line); }
.quote-block p { margin: 0 0 14px; font-size: 15px; color: var(--charcoal); font-style: italic; }
.quote-block .who { font-size: 13px; color: var(--slate); }
.stars { color: var(--coral); letter-spacing: 2px; margin-bottom: 8px; font-size: 16px; }

/* FAQ */
details { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 10px; }
details summary { cursor: pointer; font-weight: 700; color: var(--navy); }
details[open] summary { margin-bottom: 10px; }
details p { margin: 0; color: var(--slate); }
section.bg-cream details { background: white; }

/* CTA strip */
.cta-strip { background: var(--coral); color: white; padding: 56px 24px; text-align: center; }
.cta-strip .wrap { max-width: 720px; margin: 0 auto; }
.cta-strip h2 { color: white; }
.cta-strip p { color: rgba(255, 255, 255, 0.95); margin-bottom: 24px; }
.cta-strip .btn { background: white; color: var(--coral) !important; }
.cta-strip .btn:hover { background: var(--cream); }

/* Breadcrumb */
.breadcrumb { background: var(--cream); padding: 14px 24px; border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb .wrap { max-width: 1180px; margin: 0 auto; color: var(--slate); }
.breadcrumb a { color: var(--slate); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb .here { color: var(--navy); font-weight: 600; }

/* Article-style content for service / area / legal pages */
.prose { max-width: 760px; margin: 0 auto; }
.prose p, .prose li { font-size: 17px; color: var(--charcoal); }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; color: var(--navy); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.callout { background: var(--cream); border-left: 4px solid var(--coral); padding: 18px 22px; border-radius: 6px; margin: 24px 0; color: var(--charcoal); }
.callout strong { color: var(--navy); }

/* Footer */
footer { background: var(--navy); color: var(--cream); padding: 48px 24px 24px; }
footer .wrap { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
footer h4 { margin: 0 0 12px; font-size: 14px; letter-spacing: 1px; color: #ffb1a8; text-transform: uppercase; }
footer ul { padding: 0; list-style: none; margin: 0; }
footer li { margin-bottom: 6px; font-size: 14px; }
footer a { color: var(--cream); }
footer .legal { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 16px; font-size: 12px; opacity: 0.7; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Reviews list */
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-list .quote-block { padding: 28px; }

/* Floating WhatsApp button — sticky on every page */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white !important;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 3px 8px rgba(0,0,0,0.18); }
.wa-fab svg { width: 24px; height: 24px; flex-shrink: 0; }
@media (max-width: 540px) {
  .wa-fab { padding: 12px; }
  .wa-fab span { display: none; }
}

@media (max-width: 880px) {
  .hero .wrap, .grid-3, .grid-4, .grid-2, .steps, .price-grid, footer .wrap, .review-list { grid-template-columns: 1fr; }
  nav.main ul { display: none; }
  .tier.feature { transform: none; }
}
