/* =========================================================
   ELITE CLEANING FLORIDA — Brand System
   Palette: Deep Emerald + Gold + Cream (luxury / fresh / trust)
   Type: Fraunces (display), Sora (headings), Inter (body)
   ========================================================= */

:root {
  --emerald-900: #072a22;
  --emerald-800: #0a3b30;
  --emerald-700: #0e4a3c;
  --emerald-600: #14614e;
  --emerald-500: #1f7a63;
  --sage-200: #dceae0;
  --sage-100: #eef4ef;
  --gold-600: #d6a338;
  --gold-500: #e8b647;
  --gold-400: #f5c451;
  --cream: #f7f5ef;
  --cream-dark: #efece1;
  --ink: #16211d;
  --ink-soft: #40514a;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(7, 42, 34, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(7, 42, 34, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(7, 42, 34, 0.45);
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
}

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--emerald-800);
  margin: 14px 0 18px;
  max-width: 16ch;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: 100px; cursor: pointer;
  border: none; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn i { transition: transform 0.35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn-gold { background: var(--gold-500); color: var(--emerald-900); box-shadow: 0 12px 30px -10px rgba(214, 163, 56, 0.6); }
.btn-gold:hover { transform: translateY(-3px); background: var(--gold-400); }
.btn-emerald { background: var(--emerald-800); color: var(--cream); }
.btn-emerald:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; border: 1.5px solid var(--emerald-700); color: var(--emerald-800); }
.btn-outline:hover { background: var(--emerald-800); color: var(--cream); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 245, 239, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--cream); transition: color 0.4s; }
.scrolled .brand { color: var(--emerald-800); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: grid; place-items: center; color: var(--emerald-900); font-size: 1.1rem;
  box-shadow: 0 6px 18px -6px rgba(214,163,56,0.7);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: rgba(247,245,239,0.9); position: relative; transition: color 0.3s; }
.scrolled .nav-links a { color: var(--emerald-800); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold-500); transition: width 0.3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--cream); cursor: pointer; }
.scrolled .nav-toggle { color: var(--emerald-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(120% 120% at 80% 0%, var(--emerald-700) 0%, var(--emerald-900) 60%);
  overflow: hidden; padding-top: 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { position: relative; z-index: 3; }
.hero-title { font-size: clamp(2.6rem, 6.2vw, 5rem); color: var(--cream); line-height: 1.02; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }
.hero-title .accent { color: var(--gold-400); font-family: var(--font-display); font-style: italic; font-weight: 500; }
.hero-sub { color: rgba(247,245,239,0.82); font-size: 1.12rem; max-width: 46ch; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 44px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; color: rgba(247,245,239,0.7); font-size: 0.85rem; }
.hero-trust .stars { color: var(--gold-400); letter-spacing: 2px; }
.hero-trust strong { color: var(--cream); font-family: var(--font-head); }

.hero-visual { position: relative; z-index: 2; }
.hero-photo {
  position: relative; border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.12);
}
.hero-photo img { width: 100%; height: 560px; object-fit: cover; }
.hero-badge {
  position: absolute; background: var(--cream); border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--sage-100); color: var(--emerald-700); font-size: 1.1rem; }
.hero-badge .lbl { font-family: var(--font-head); font-weight: 700; color: var(--emerald-800); font-size: 1.05rem; line-height: 1; }
.hero-badge .sub { font-size: 0.72rem; color: var(--ink-soft); }
.hero-badge.b1 { top: 30px; left: -30px; }
.hero-badge.b2 { bottom: 34px; right: -24px; }

/* floating decor */
.float { position: absolute; pointer-events: none; opacity: 0.9; }
.leaf { color: var(--gold-400); font-size: 1.4rem; }
.bubble { border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.15); }

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,42,34,0.4); backdrop-filter: blur(6px);
  overflow: hidden; padding: 14px 0;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scrollX 28s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; color: rgba(247,245,239,0.55); display: inline-flex; align-items: center; gap: 14px; }
.marquee-track span i { color: var(--gold-400); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Reveal / animation base ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.will-anim { opacity: 0; }

/* ---------- Problem -> Solution ---------- */
.solution { background: var(--cream); }
.solution-pin { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 500; color: var(--ink-soft);
}
.pain .x { width: 34px; height: 34px; border-radius: 9px; background: #fdeaea; color: #d9534f; display: grid; place-items: center; flex-shrink: 0; }
.solution-answer { position: relative; padding: 40px; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--emerald-700), var(--emerald-900)); color: var(--cream); box-shadow: var(--shadow-lg); }
.solution-answer h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--cream); margin-bottom: 14px; }
.solution-answer .display { color: var(--gold-400); }
.solution-answer p { color: rgba(247,245,239,0.8); }

/* ---------- Trust cards ---------- */
.trust { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 54px; }
.trust-card { text-align: center; padding: 34px 22px; border-radius: var(--radius); background: var(--cream); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.trust-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: var(--white); }
.trust-ico { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; font-size: 1.7rem; background: radial-gradient(circle at 30% 30%, var(--sage-200), var(--sage-100)); color: var(--emerald-700); }
.trust-card h3 { font-size: 1.2rem; color: var(--emerald-800); margin-bottom: 8px; }
.trust-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { background: linear-gradient(180deg, var(--cream), var(--cream-dark)); }
.steps-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.step-card .num { font-family: var(--font-display); font-style: italic; font-size: 3.4rem; color: var(--sage-200); line-height: 1; }
.step-card h3 { font-size: 1.3rem; color: var(--emerald-800); margin: 6px 0 12px; }
.step-card p { color: var(--ink-soft); font-size: 0.96rem; }
.step-card .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold-500); }

/* ---------- Services ---------- */
.services { background: var(--emerald-900); color: var(--cream); }
.services .section-title { color: var(--cream); }
.services .section-lead { color: rgba(247,245,239,0.75); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.svc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; transition: transform 0.45s var(--ease), border-color 0.4s; }
.svc-card:hover { transform: translateY(-8px); border-color: rgba(245,196,81,0.4); }
.svc-media { height: 200px; overflow: hidden; position: relative; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media.gradient { display: grid; place-items: center; font-size: 3rem; color: var(--gold-400); }
.svc-media.g1 { background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800)); }
.svc-media.g2 { background: linear-gradient(135deg, #1a5c4a, #0a3b30); }
.svc-body { padding: 26px 24px 30px; }
.svc-body h3 { font-size: 1.28rem; color: var(--cream); margin-bottom: 10px; }
.svc-body p { color: rgba(247,245,239,0.72); font-size: 0.94rem; margin-bottom: 16px; }
.svc-link { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--gold-400); display: inline-flex; gap: 8px; align-items: center; }
.svc-tag { position: absolute; top: 14px; left: 14px; background: var(--gold-500); color: var(--emerald-900); font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }

/* ---------- Signature luxury ---------- */
.signature { background: var(--cream); }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sig-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.sig-photo img { width: 100%; height: 520px; object-fit: cover; }
.sig-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.sig-item { display: flex; gap: 18px; align-items: flex-start; }
.sig-item .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--emerald-800); color: var(--gold-400); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.sig-item h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--emerald-800); margin-bottom: 4px; }
.sig-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Stats ---------- */
.stats { background: var(--emerald-800); color: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-display); font-style: italic; font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--gold-400); line-height: 1; }
.stat .lbl { font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,245,239,0.75); margin-top: 8px; }

/* ---------- Testimonials ---------- */
.testi { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.testi-card { background: var(--cream); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--sage-200); line-height: 0.6; }
.testi-card p { color: var(--ink-soft); font-style: italic; margin: 10px 0 20px; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800)); color: var(--cream); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.testi-who .n { font-family: var(--font-head); font-weight: 600; color: var(--emerald-800); }
.testi-who .r { font-size: 0.8rem; color: var(--ink-soft); }
.testi-card .stars { color: var(--gold-500); margin-bottom: 4px; letter-spacing: 1px; }

/* ---------- Map / service area ---------- */
.area { background: linear-gradient(180deg, var(--cream-dark), var(--cream)); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.area-chip { background: var(--white); border: 1px solid var(--sage-200); border-radius: 100px; padding: 10px 20px; font-family: var(--font-head); font-weight: 500; color: var(--emerald-800); display: inline-flex; align-items: center; gap: 8px; }
.area-chip i { color: var(--gold-600); }
.area-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--white); min-height: 380px; }
.area-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- CTA ---------- */
.cta { background: var(--emerald-900); position: relative; overflow: hidden; }
.cta-box { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--cream); margin-bottom: 18px; }
.cta-box .display { color: var(--gold-400); }
.cta-box p { color: rgba(247,245,239,0.8); margin-bottom: 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,196,81,0.16), transparent 70%); top: -200px; right: -100px; }

/* ---------- Footer ---------- */
.footer { background: var(--emerald-900); color: rgba(247,245,239,0.7); padding: 70px 0 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-family: var(--font-head); color: var(--cream); font-size: 1rem; margin-bottom: 18px; letter-spacing: 0.04em; }
.footer a { color: rgba(247,245,239,0.7); display: block; margin-bottom: 10px; font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.footer a:hover { color: var(--gold-400); padding-left: 4px; }
.footer .brand { color: var(--cream); margin-bottom: 16px; }
.footer p { font-size: 0.9rem; margin-bottom: 8px; }
.footer .social { display: flex; gap: 12px; margin-top: 16px; }
.footer .social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; margin: 0; color: var(--cream); }
.footer .social a:hover { background: var(--gold-500); color: var(--emerald-900); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: radial-gradient(120% 120% at 80% 0%, var(--emerald-700), var(--emerald-900)); padding: 160px 0 80px; color: var(--cream); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: rgba(247,245,239,0.8); max-width: 60ch; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: rgba(247,245,239,0.6); margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; color: var(--emerald-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--sage-200);
  font-family: var(--font-body); font-size: 0.98rem; background: var(--cream); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald-600); box-shadow: 0 0 0 4px rgba(31,122,99,0.1); background: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }
.form-success { background: var(--sage-100); border: 1px solid var(--sage-200); color: var(--emerald-700); padding: 16px; border-radius: 12px; margin-top: 16px; display: none; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; align-items: stretch; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-sm); border: 1.5px solid transparent; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card.featured { background: linear-gradient(160deg, var(--emerald-700), var(--emerald-900)); color: var(--cream); border-color: var(--gold-500); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.price-badge { align-self: flex-start; background: var(--gold-500); color: var(--emerald-900); font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.price-card h3 { font-size: 1.4rem; color: var(--emerald-800); margin-bottom: 6px; }
.price-card.featured h3 { color: var(--cream); }
.price-amount { font-family: var(--font-display); font-style: italic; font-size: 3rem; color: var(--emerald-800); line-height: 1; margin: 10px 0; }
.price-card.featured .price-amount { color: var(--gold-400); }
.price-amount small { font-family: var(--font-body); font-style: normal; font-size: 0.9rem; color: var(--ink-soft); }
.price-card.featured .price-amount small { color: rgba(247,245,239,0.7); }
.price-feats { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { display: flex; gap: 12px; align-items: center; font-size: 0.94rem; }
.price-feats i { color: var(--gold-600); }
.price-card.featured .price-feats i { color: var(--gold-400); }
.price-feats span { color: var(--ink-soft); }
.price-card.featured .price-feats span { color: rgba(247,245,239,0.85); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 44px auto 0; }
.faq-item { background: var(--white); border-radius: 16px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--emerald-800); font-size: 1.05rem; }
.faq-q i { transition: transform 0.4s var(--ease); color: var(--gold-600); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--ink-soft); }

/* ---------- About specifics ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 540px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.value-card .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--sage-100); color: var(--emerald-700); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 18px; }
.value-card h3 { color: var(--emerald-800); font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .solution-pin, .sig-grid, .area-grid, .about-grid, .steps-head { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .trust-grid, .svc-grid, .testi-grid, .price-grid, .values-grid, .steps-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .trust-grid, .svc-grid, .testi-grid, .price-grid, .values-grid, .steps-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .container { padding: 0 18px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--emerald-900); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; transform: translateY(-100%); transition: transform 0.5s var(--ease); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; color: var(--cream); }
.mobile-menu .close { position: absolute; top: 26px; right: 26px; font-size: 1.8rem; color: var(--cream); background: none; border: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .will-anim { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}
