@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,900;1,700;1,900&display=swap');

/* ── TOKENS ── */
:root {
  --orange:       #f5a520;
  --orange-dark:  #d4891a;
  --orange-glow:  rgba(245,165,32,0.28);
  --blue:         #1e2d4d;
  --blue-mid:     #243860;
  --blue-light:   #e8edf5;
  --navy:         #111d33;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-400:     #94a3b8;
  --gray-600:     #4a5568;
  --gray-800:     #1e293b;
  --border:       #e2e8f0;
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    28px;
  --radius-full:  9999px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --shadow-orange:0 8px 30px var(--orange-glow);
  /* legacy aliases so existing rules still compile */
  --green:        #f5a520;
  --green-dark:   #d4891a;
  --green-glow:   rgba(245,165,32,0.28);
  --shadow-green: 0 8px 30px rgba(245,165,32,0.28);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', system-ui, sans-serif;
  background:var(--white);
  color:var(--gray-600);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

/* ── NAVBAR ── */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 6%;
  position:fixed;
  top:0; width:100%;
  z-index:900;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:padding .3s;
}
.navbar.scrolled { padding:10px 6%; }

.logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.2rem;
  font-weight:900;
  color:var(--navy);
  text-decoration:none;
  letter-spacing:-0.5px;
}
.logo-icon {
  width:52px; height:36px;
  background:var(--blue);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo span { color:var(--blue-mid); }

.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a {
  text-decoration:none;
  color:var(--gray-600);
  font-size:.875rem;
  font-weight:500;
  transition:color .2s;
}
.nav-links a:hover { color:var(--navy); }

.nav-cta {
  background:var(--green) !important;
  color:white !important;
  padding:10px 22px;
  border-radius:var(--radius-full);
  font-weight:700 !important;
  font-size:.875rem !important;
  box-shadow:var(--shadow-green);
  transition:transform .2s, box-shadow .2s !important;
  display:flex !important;
  align-items:center;
  gap:6px;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 14px 40px var(--green-glow) !important; }

/* ── HERO ── */
.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-height:100vh;
  padding:110px 6% 80px;
  gap:60px;
  background:var(--gray-50);
  position:relative;
  overflow:hidden;
}

.hero::before {
  content:'';
  position:absolute;
  top:0; right:0;
  width:55%;
  height:100%;
  background:var(--blue-light);
  clip-path:ellipse(90% 100% at 100% 50%);
  opacity:.35;
  pointer-events:none;
}

/* Status badge */
.status-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(245,165,32,.1);
  border:1px solid rgba(245,165,32,.35);
  color:var(--orange-dark);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:7px 16px;
  border-radius:var(--radius-full);
  margin-bottom:24px;
}
.pulse {
  width:8px; height:8px;
  background:var(--green);
  border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.5; transform:scale(1.4); }
}

.hero-content h1 {
  font-size:clamp(2.6rem,4.5vw,4rem);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-1.5px;
  color:var(--navy);
  margin-bottom:20px;
}
.hero-content h1 em {
  font-style:italic;
  color:var(--blue-mid);
}
.hero-content h1 .green { color:var(--orange); }

.hero-sub {
  font-size:1.05rem;
  color:var(--gray-600);
  max-width:460px;
  margin-bottom:36px;
  line-height:1.75;
}

/* CTA buttons */
.hero-btns { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px; }
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:white;
  padding:16px 36px;
  border-radius:var(--radius-full);
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  box-shadow:var(--shadow-green);
  transition:transform .25s, box-shadow .25s;
  letter-spacing:.2px;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 20px 50px var(--green-glow); }

.btn-secondary {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:white;
  color:var(--navy);
  padding:16px 30px;
  border-radius:var(--radius-full);
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  border:2px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .25s, border-color .25s;
}
.btn-secondary:hover { transform:translateY(-3px); border-color:var(--blue-mid); }

/* Trust bar below buttons */
.hero-trust {
  display:flex;
  align-items:center;
  gap:16px;
  padding-top:28px;
  border-top:1px solid var(--border);
}
.avatars { display:flex; }
.avatars img {
  width:36px; height:36px;
  border-radius:50%;
  border:2px solid white;
  object-fit:cover;
  margin-left:-10px;
}
.avatars img:first-child { margin-left:0; }
.trust-text { font-size:.82rem; color:var(--gray-600); }
.trust-text strong { color:var(--navy); }
.stars-inline { color:#f59e0b; font-size:.85rem; letter-spacing:1px; }

/* Bullets */
.hero-bullets {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:36px;
}
.bullet {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  color:var(--gray-600);
}
.bullet-icon {
  width:22px; height:22px;
  background:rgba(245,165,32,.15);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange-dark);
  font-size:.75rem;
  font-weight:900;
  flex-shrink:0;
}

/* Hero image */
.hero-image { position:relative; z-index:1; }
.hero-image img {
  width:100%;
  border-radius:var(--radius-lg);
  aspect-ratio:4/3;
  object-fit:cover;
  box-shadow:var(--shadow-lg);
}
.hero-badge {
  position:absolute;
  bottom:-18px; left:-18px;
  background:white;
  border-radius:var(--radius-md);
  padding:16px 22px;
  box-shadow:var(--shadow-md);
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--border);
}
.hero-badge-icon {
  width:44px; height:44px;
  background:var(--blue);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
}
.hero-badge-num { font-size:1.4rem; font-weight:900; color:var(--navy); line-height:1; }
.hero-badge-label { font-size:.72rem; color:var(--gray-400); }

/* ── TRUST STRIP ── */
.trust-strip {
  background:var(--blue);
  padding:22px 6%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.strip-item {
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.85);
  font-size:.85rem;
  font-weight:500;
}
.strip-icon {
  width:32px; height:32px;
  background:rgba(255,255,255,.12);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.95rem;
}

/* ── SECTIONS SHARED ── */
section { padding:100px 6%; }
.section-eyebrow {
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.section-title {
  font-size:clamp(2rem, 3.5vw, 3rem);
  font-weight:900;
  color:var(--navy);
  letter-spacing:-1px;
  line-height:1.1;
  margin-bottom:16px;
}
.section-title em { font-style:italic; color:var(--orange); }
.section-desc { color:var(--gray-600); font-size:1rem; max-width:520px; }
.section-header { margin-bottom:60px; }
.section-header.centered { text-align:center; }
.section-header.centered .section-desc { margin:0 auto; }

/* ── SERVICES ── */
.services { background:var(--white); }
.services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:40px 32px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s, border-color .3s;
  cursor:default;
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--blue-light); }
.svc-icon {
  width:58px; height:58px;
  background:var(--blue);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  flex-shrink:0;
}
.service-card h3 { font-size:1.15rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.service-card p { font-size:.9rem; line-height:1.75; }

/* ── GALLERY ── */
.gallery { background:var(--gray-50); }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery-item {
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  height:240px;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; display:block; }
.gallery-item:hover img { transform:scale(1.07); }
.gallery-caption {
  position:absolute;
  bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(15,23,42,.8), transparent);
  color:white;
  padding:28px 24px 24px;
  font-weight:700;
  font-size:1rem;
  opacity:0;
  transition:opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity:1; }

/* ── DARK PROMO BAND ── */
.promo-band {
  background:var(--navy);
  padding:90px 6%;
  position:relative;
  overflow:hidden;
}
.promo-band::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(29,78,216,.3), transparent 70%);
  pointer-events:none;
}
.promo-band::after {
  content:'';
  position:absolute;
  bottom:-200px; left:-200px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(34,197,94,.1), transparent 70%);
  pointer-events:none;
}
.promo-inner {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:24px;
  position:relative;
  z-index:1;
}
.promo-card {
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  transition:background .3s, border-color .3s;
}
.promo-card:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.2); }
.promo-icon {
  font-size:1.8rem;
  margin-bottom:18px;
  display:block;
}
.promo-card h3 { color:white; font-size:1.15rem; font-weight:800; margin-bottom:10px; }
.promo-card p { color:rgba(255,255,255,.6); font-size:.88rem; line-height:1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background:var(--white); }
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card {
  background:var(--gray-50);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  transition:box-shadow .3s, transform .3s;
}
.testimonial-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.stars { color:#f59e0b; letter-spacing:2px; font-size:.9rem; margin-bottom:16px; }
.testimonial-card p {
  font-size:.95rem;
  line-height:1.8;
  color:var(--gray-600);
  margin-bottom:24px;
}
.t-footer { display:flex; align-items:center; gap:12px; }
.t-avatar { width:46px; height:46px; border-radius:50%; object-fit:cover; border:2px solid white; box-shadow:var(--shadow-sm); }
.t-name { font-weight:700; color:var(--navy); font-size:.9rem; }
.t-loc { font-size:.78rem; color:var(--gray-400); }

/* ── SERVICE AREAS ── */
.areas { background:var(--blue); padding:80px 6%; }
.areas .section-eyebrow { color:rgba(255,255,255,.6); }
.areas .section-title { color:white; }
.areas .section-desc { color:rgba(255,255,255,.65); }
.areas-pills {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:40px;
}
.area-pill {
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.9);
  padding:10px 22px;
  border-radius:var(--radius-full);
  font-size:.85rem;
  font-weight:600;
  transition:background .2s, border-color .2s;
}
.area-pill:hover { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.35); }

/* ── FAQ ── */
.faq { background:var(--gray-50); }
.faq-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.faq-list { display:flex; flex-direction:column; gap:10px; }
details {
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:20px 26px;
  cursor:pointer;
  transition:border-color .3s, box-shadow .3s;
}
details[open] { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(29,78,216,.08); }
summary {
  font-weight:700;
  color:var(--navy);
  font-size:.95rem;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  user-select:none;
}
summary::-webkit-details-marker { display:none; }
.faq-toggle {
  width:26px; height:26px;
  background:var(--gray-100);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-mid);
  font-size:1rem;
  font-weight:900;
  flex-shrink:0;
  transition:background .2s, color .2s;
}
details[open] .faq-toggle { background:var(--blue-mid); color:white; }
details p { margin-top:14px; font-size:.9rem; line-height:1.8; color:var(--gray-600); }

/* FAQ side card */
.faq-cta {
  background:var(--blue);
  border-radius:var(--radius-lg);
  padding:48px 40px;
  text-align:center;
  position:sticky;
  top:100px;
  color:white;
}
.faq-cta-icon { font-size:2.5rem; margin-bottom:18px; }
.faq-cta h3 { font-size:1.7rem; font-weight:900; line-height:1.1; margin-bottom:12px; }
.faq-cta p { font-size:.9rem; color:rgba(255,255,255,.7); margin-bottom:30px; line-height:1.7; }
.btn-green {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--green);
  color:white;
  padding:15px 32px;
  border-radius:var(--radius-full);
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  width:100%;
  box-shadow:var(--shadow-green);
  transition:transform .25s, box-shadow .25s;
}
.btn-green:hover { transform:translateY(-3px); box-shadow:0 20px 50px var(--green-glow); }
.btn-note { font-size:.75rem; color:rgba(255,255,255,.5); margin-top:12px; }

/* ── WHATSAPP CTA ── */
.cta-section {
  background:var(--white);
  padding:100px 6%;
}
.cta-box {
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:80px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.cta-box::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(34,197,94,.15), transparent 70%);
  pointer-events:none;
}
.cta-box .section-eyebrow { color:rgba(255,255,255,.5); }
.cta-title { font-size:clamp(2rem,3.5vw,3.2rem); font-weight:900; color:white; line-height:1.1; letter-spacing:-1px; margin-bottom:16px; }
.cta-title em { color:var(--green); font-style:italic; }
.cta-desc { color:rgba(255,255,255,.65); font-size:1rem; line-height:1.75; }

.cta-right { position:relative; z-index:1; }
.wa-card {
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);
  padding:44px 36px;
  text-align:center;
  min-width:300px;
}
.wa-bubble {
  width:80px; height:80px;
  background:var(--green);
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  box-shadow:0 16px 50px var(--green-glow);
  animation:breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%,100%{ box-shadow:0 16px 50px var(--green-glow); }
  50%{ box-shadow:0 24px 70px rgba(34,197,94,.45); }
}
.wa-bubble svg { width:44px; fill:white; }
.wa-card h3 { color:white; font-size:1.3rem; font-weight:800; margin-bottom:8px; }
.wa-card p { color:rgba(255,255,255,.6); font-size:.85rem; margin-bottom:28px; line-height:1.7; }
.wa-note { font-size:.72rem; color:rgba(255,255,255,.4); margin-top:12px; }

/* ── FLOATING WA ── */
.floating-wa {
  position:fixed;
  bottom:28px; right:28px;
  width:60px; height:60px;
  background:var(--green);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:800;
  box-shadow:0 8px 30px var(--green-glow);
  animation:breathe 3s ease-in-out infinite;
  transition:transform .2s;
}
.floating-wa:hover { transform:scale(1.1); }
.floating-wa svg { width:30px; fill:white; }

/* ── FOOTER ── */
.footer {
  background:var(--navy);
  padding:70px 6% 32px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px;
  margin-bottom:50px;
}
.footer-logo {
  font-size:1.25rem;
  font-weight:900;
  color:white;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.footer-logo .logo-icon { background:var(--blue-mid); }
.footer-logo span { color:var(--green); }
.footer-about { color:rgba(255,255,255,.5); font-size:.85rem; line-height:1.75; max-width:320px; }
.footer-col h4 { color:white; font-size:.85rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.85rem; transition:color .2s; }
.footer-col ul li a:hover { color:rgba(255,255,255,.9); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.8rem;
  color:rgba(255,255,255,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns:1fr; text-align:center; padding-top:130px; }
  .hero::before { display:none; }
  .hero-sub { margin:0 auto 36px; }
  .hero-btns { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-bullets { align-items:flex-start; display:inline-flex; flex-direction:column; margin:0 auto 36px; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .promo-inner { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .faq-layout { grid-template-columns:1fr; }
  .faq-cta { position:static; }
  .cta-box { grid-template-columns:1fr; padding:56px 40px; text-align:center; }
  .cta-right { display:flex; justify-content:center; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding:70px 5%; }
  .nav-links { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .trust-strip { gap:24px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  h1 { font-size:2.4rem !important; }
}
