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

:root {
  --white:      #FFFFFF;
  --cream:      #F7F5F1;
  --navy:       #1A2E4A;
  --navy-light: #243d61;
  --gray:       #4A5568;
  --gray-light: #718096;
  --sage:       #7A9E7E;
  --sage-dark:  #5F7F64;
  --sage-bg:    #EEF4EF;
  --border:     #E8E4DC;
  --wa:         #25D366;
  --shadow-sm:  0 2px 16px rgba(26,46,74,.08);
  --shadow-md:  0 4px 24px rgba(26,46,74,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════
   LAYOUT HELPERS
══════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 24px);
}

.section        { padding: clamp(56px, 8vw, 96px) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }

/* ══════════════════════════════
   TYPOGRAPHY
══════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-bg);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 16px;
}

h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px;
}
h1 .highlight { color: var(--sage); }

h2.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600; line-height: 1.2; margin-bottom: 12px;
}

.section-intro {
  color: var(--gray);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.section-intro--center { margin-inline: auto; text-align: center; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 17px; }

.btn-primary   { background: var(--sage);  color: var(--white); box-shadow: 0 2px 8px rgba(122,158,126,.3); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 2px 12px rgba(37,211,102,.35); }
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px, 5vw, 24px);
}

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

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 44px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: .01em; }
.logo-sub  { font-size: 10.5px; color: var(--gray-light); font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }

nav { display: flex; gap: 28px; }
nav a { color: var(--gray); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .15s; }
nav a:hover { color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link  { color: var(--gray); font-size: 14px; text-decoration: none; }
.hamburger   { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--navy); }

@media (max-width: 1023px) {
  nav, .phone-link { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn span.btn-label { display: none; }
  .header-cta .btn { padding: 10px 14px; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: linear-gradient(150deg, var(--white) 0%, var(--cream) 100%);
  padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 24px);
  position: relative; overflow: hidden;
}
/* Soft blob accents */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: clamp(280px, 40vw, 480px); height: clamp(280px, 40vw, 480px);
  background: radial-gradient(circle, rgba(122,158,126,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: clamp(200px, 25vw, 320px); height: clamp(200px, 25vw, 320px);
  background: radial-gradient(circle, rgba(26,46,74,.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px); align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}

/* Hero copy */
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage-bg); border-radius: 100px;
  padding: 6px 14px; font-size: 13px; font-weight: 500;
  color: var(--sage-dark); margin-bottom: 20px;
  border: 1px solid rgba(122,158,126,.22);
}
.hero-badge::before { content: '●'; font-size: 8px; color: var(--sage); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--gray);
  line-height: 1.65; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-micro {
  margin-top: 16px; font-size: 13px; color: var(--gray-light);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-micro span::before { content: '✓ '; color: var(--sage); }

/* ── Hero image ─────────────────────────────────
   Container centres the image and constrains it.
   On mobile (stacked): full width, capped at 400px.
   On desktop (side-by-side): fills the right column.
   The image itself uses object-fit so it never
   distorts whatever aspect ratio the PNG has.
──────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;        /* cap on mobile */
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero-img-wrap { max-width: 100%; }  /* let the grid column decide */
}

.hero-img-wrap img {
  display: block;
  width: 100%;
  height: auto;            /* preserve aspect ratio */
  max-height: 560px;       /* avoid giant image on wide screens */
  object-fit: contain;     /* never crop — show full phone mockup */
  border-radius: 20px;
  /* Subtle drop shadow so the image floats off the background */
  filter: drop-shadow(0 12px 40px rgba(26,46,74,.18));
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar { background: var(--navy); padding: 18px clamp(16px,5vw,24px); }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
@media (min-width: 640px) {
  .trust-inner { flex-direction: row; justify-content: center; gap: 0; }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 0 28px;
}
.trust-item + .trust-item { border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; }
@media (min-width: 640px) {
  .trust-item + .trust-item { border-top: none; border-left: 1px solid rgba(255,255,255,.15); padding-top: 0; }
}
.trust-icon { font-size: 18px; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-header { margin-bottom: 40px; }

.category-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.category-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px;
}
@media (min-width: 560px)  { .services-grid                { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid.grid-4         { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .services-grid.grid-3         { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: clamp(18px, 3vw, 24px);
  display: flex; flex-direction: column; gap: 10px;
  transition: all .2s ease;
}
.service-card:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.service-icon {
  width: 48px; height: 48px; background: var(--sage-bg);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.service-name  { font-size: 15px; font-weight: 600; line-height: 1.3; }
.service-desc  { font-size: 13px; color: var(--gray); line-height: 1.55; flex: 1; }
.service-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; gap: 10px; flex-wrap: wrap;
}
.service-price { font-size: 16px; font-weight: 700; color: var(--sage-dark); flex-shrink: 0; }

.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage-bg); color: var(--sage-dark);
  border: 1.5px solid rgba(122,158,126,.4); border-radius: 8px;
  padding: 7px 13px; font-size: 13px; font-weight: 600;
  font-family: inherit; text-decoration: none; cursor: pointer;
  transition: all .18s ease; white-space: nowrap;
}
.service-cta:hover { background: var(--sage); color: white; border-color: var(--sage); }
.service-cta svg  { transition: transform .18s; }
.service-cta:hover svg { transform: translateX(2px); }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.step {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .step {
    flex-direction: column; align-items: center; text-align: center;
    padding: 32px 20px; border-bottom: none;
  }
}

.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: white;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 768px) { .step-num { margin-bottom: 16px; } }

.step-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-desc  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-inner {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
}
@media (min-width: 1024px) { .about-inner { grid-template-columns: 5fr 7fr; } }

/* ── About photo container ──────────────────────
   aspect-ratio keeps proportions on any screen.
   SVG inside uses preserveAspectRatio="xMidYMid slice"
   so it scales correctly.
──────────────────────────────────────────────── */
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: linear-gradient(160deg, #e8f0e9 0%, #d4e4f0 100%);
  box-shadow: var(--shadow-md);
}
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: white; border-radius: 12px; padding: 10px 16px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center;
  gap: 10px; border: 1px solid var(--border);
}
.about-badge-icon { font-size: 22px; }
.about-badge-text { font-size: 12px; font-weight: 600; line-height: 1.3; }
.about-badge-sub  { font-size: 11px; color: var(--gray); }

.about-content h2 { margin-bottom: 16px; }
.about-content p  { color: var(--gray); margin-bottom: 18px; line-height: 1.75; font-size: clamp(15px,2vw,17px); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 500;
}
.check-list li::before {
  content: '✓'; color: white; background: var(--sage);
  border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-family: inherit; font-size: 15px;
  font-weight: 500; color: var(--navy); text-align: left; gap: 14px;
  transition: background .15s;
}
.faq-question:hover { background: var(--cream); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sage-bg); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--sage); font-size: 18px; font-weight: 700;
  transition: transform .25s, background .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sage); color: white; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 22px 18px; color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner h2 { color: var(--white); font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.cta-inner p  { color: rgba(255,255,255,.7); font-size: clamp(15px,2vw,17px); margin-bottom: 32px; line-height: 1.65; }
.cta-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #111D2B; color: rgba(255,255,255,.72);
  padding: clamp(40px,6vw,60px) clamp(16px,5vw,24px) 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo-name { color: white; font-size: 17px; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.4); }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); }

.footer-col h4  { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col a   { display: block; color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 9px; }

.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 22px; }
.footer-bottom  { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   WA FLOATING BUTTON
══════════════════════════════ */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; display: flex; align-items: center; gap: 10px; }
.wa-tooltip {
  background: var(--navy); color: white; padding: 8px 14px;
  border-radius: 100px; font-size: 13px; font-weight: 500;
  opacity: 0; transform: translateX(8px); transition: all .2s;
  pointer-events: none; white-space: nowrap; box-shadow: var(--shadow-sm);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .2s, box-shadow .2s; flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   MOBILE-ONLY TWEAKS
══════════════════════════════ */
@media (max-width: 559px) {
  .hero-actions .btn-lg    { width: 100%; justify-content: center; }
  .cta-actions .btn        { width: 100%; justify-content: center; }
  .service-footer          { flex-direction: column; align-items: flex-start; }
  .service-cta             { align-self: stretch; justify-content: center; }
}

@media (max-width: 1023px) {
  .hero-badge { display: none; }
  h1 { font-size: clamp(22px, 6.5vw, 27px); }
  h1 .highlight { white-space: nowrap; display: inline-block; }
}

