/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0a0d10;
  --bg-2: #10151a;
  --card: rgba(255,255,255,0.035);
  --card-line: rgba(255,255,255,0.09);
  --ink: #eef1f4;
  --ink-soft: rgba(238,241,244,0.72);
  --ink-mute: rgba(238,241,244,0.48);
  --accent: #2f7dff;
  --accent-2: #3ecf6e;
  --line: rgba(238,241,244,0.1);
  --dark-bg: #06080a;
  --dark-ink: #eef1f4;

  --display: "Rajdhani", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 6px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 700; }
em { font-style: normal; color: var(--accent); }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #06080a; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; padding: .6rem 1rem; background: var(--accent); color: #06080a; border-radius: 6px; font-weight: 700; font-family: var(--sans); }
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Demo ribbon
   ============================================================= */
.demo-ribbon { display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--dark-bg); color: rgba(238,241,244,.75); font-size: .78rem; padding: .5rem 1rem; text-align: center; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.demo-ribbon a { color: var(--accent); font-weight: 700; }
.demo-ribbon a:hover { text-decoration: underline; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav-wrap { position: sticky; top: 0; z-index: 100; padding: 1rem 1.2rem 0; }
.nav-glass {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem .9rem;
  background: rgba(10,13,16,0.78); border: 1px solid var(--line);
  border-radius: 8px; backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.nav-logo { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: .03em; text-transform: uppercase; }
.nav-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(62,207,110,0.18); animation: statusPulse 2.2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.nav-links { display: none; gap: 1.7rem; font-size: .88rem; font-weight: 500; color: var(--ink-soft); font-family: var(--sans); }
.nav-links a { transition: color .2s var(--ease-out); }
.nav-links a:hover { color: var(--accent); }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.4rem; border-radius: 6px; font-weight: 700; font-size: .88rem; font-family: var(--sans); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #06080a; box-shadow: 0 10px 24px rgba(47,125,255,0.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,125,255,0.34); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: .6rem 1.1rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2rem; font-size: .96rem; }

/* =============================================================
   6. Card
   ============================================================= */
.glass-card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 1.6rem; }

/* =============================================================
   6b. Status pill
   ============================================================= */
.status-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: 999px; background: rgba(62,207,110,0.1); border: 1px solid rgba(62,207,110,0.3); font-size: .8rem; font-weight: 600; color: var(--accent-2); margin-bottom: 1.2rem; font-family: var(--sans); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); animation: statusPulse 2.2s ease-in-out infinite; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; padding: 3.5rem 1.2rem 4rem; overflow: clip; }
.hero-mesh {
  position: absolute; inset: -10% -10% 0; z-index: -1;
  background:
    radial-gradient(circle 480px at var(--mx, 25%) var(--my, 20%), rgba(47,125,255,0.18), transparent 60%),
    radial-gradient(circle 520px at calc(100% - var(--mx, 25%)) calc(100% - var(--my, 20%)), rgba(62,207,110,0.1), transparent 60%),
    var(--bg);
  filter: blur(50px) saturate(140%);
  transition: background .4s ease;
}
.hero-grid { max-width: 1140px; margin: 0 auto; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }

.eyebrow { font-family: var(--display); font-size: .92rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: .9rem; }
.hero-title { font-size: clamp(2.5rem, 6.2vw, 4rem); max-width: 15ch; text-transform: uppercase; }
.hero-sub { margin-top: 1.2rem; font-size: 1.05rem; color: var(--ink-soft); max-width: 46ch; font-family: var(--sans); }
.hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; min-height: 320px; }
.hero-photo-frame { position: absolute; inset: 0; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.hero-photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(47,125,255,0.14), rgba(10,13,16,0.05) 55%, rgba(62,207,110,0.08)); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .hero-visual { min-height: 460px; } }

/* =============================================================
   8. Strip stats
   ============================================================= */
.strip { max-width: 1000px; margin: 0 auto; padding: 2rem 1.2rem 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.strip-item { position: relative; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.stat, .stat-suffix { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--accent); }
.strip-item p { margin-top: .3rem; color: var(--ink-mute); font-size: .84rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .02em; }

/* =============================================================
   9. Sections
   ============================================================= */
.section { max-width: 1140px; margin: 0 auto; padding: 4.5rem 1.2rem; }
.section-tight { padding-top: 0; }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); text-transform: uppercase; }

.section-dark { max-width: none; background: var(--dark-bg); padding: 4.5rem 1.2rem; margin-top: 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* =============================================================
   10. Services
   ============================================================= */
.services-figure { margin-bottom: 2rem; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.services-figure img { width: 100%; aspect-ratio: 21/8; object-fit: cover; display: block; }
.services-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-card { transition: transform .35s var(--ease-out), border-color .35s var(--ease-out); }
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 6px; background: rgba(47,125,255,0.14); color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.12rem; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .01em; }
.service-card p { color: var(--ink-mute); font-size: .92rem; font-family: var(--sans); }

/* =============================================================
   11. Cobertura showcase
   ============================================================= */
.agenda-showcase { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .agenda-showcase { grid-template-columns: 1fr 1fr; } }
.agenda-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.4rem); margin: .6rem 0 1rem; text-transform: uppercase; }
.agenda-text { color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 44ch; font-family: var(--sans); }
.agenda-photo { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.agenda-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   12. Testimonials
   ============================================================= */
.testi-figure { margin-bottom: 2rem; border-radius: 6px; overflow: hidden; max-width: 900px; margin-inline: auto; border: 1px solid var(--line); }
.testi-figure img { width: 100%; aspect-ratio: 21/9; object-fit: cover; object-position: center 25%; display: block; }
.testi-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.testi-card p { font-size: 1rem; margin-bottom: 1.2rem; font-family: var(--sans); }
.testi-card footer { display: flex; flex-direction: column; font-size: .85rem; font-family: var(--sans); }
.testi-card footer strong { font-weight: 700; }
.testi-card footer span { color: var(--ink-mute); }

/* =============================================================
   13. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.hours-list li { display: flex; justify-content: space-between; padding: .7rem 0; border-top: 1px solid var(--line); font-size: .92rem; font-family: var(--sans); }
.hours-list li:first-child { border-top: 0; }
.map-illustration { border-radius: 6px; overflow: hidden; margin: 1rem 0; }
.contact-address { color: var(--ink-soft); font-size: .92rem; font-family: var(--sans); }

/* =============================================================
   14. CTA final
   ============================================================= */
.cta-final { position: relative; text-align: center; padding: 5.5rem 1.2rem; overflow: clip; }
.cta-photo { position: absolute; inset: 0; z-index: -2; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .3; }
.cta-mesh { position: absolute; inset: -20%; z-index: -1; background: radial-gradient(circle at 50% 40%, rgba(47,125,255,0.26), transparent 60%), rgba(6,8,10,0.82); filter: blur(60px); }
.cta-final h2 { font-size: clamp(2rem, 4.2vw, 2.8rem); margin-bottom: .8rem; text-transform: uppercase; }
.cta-final p { color: var(--ink-soft); margin-bottom: 1.8rem; font-family: var(--sans); }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { text-align: center; padding: 2.5rem 1.2rem 3rem; color: var(--ink-mute); font-size: .85rem; font-family: var(--sans); }
.footer-demo { margin-top: .3rem; }
.footer-demo a { text-decoration: underline; color: var(--accent); }

/* =============================================================
   16. Floating WhatsApp button
   ============================================================= */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #25d366; color: #06070a; box-shadow: 0 10px 28px rgba(0,0,0,0.4); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(0,0,0,0.5); }
.whatsapp-float-ring { position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .55; animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float-ring { animation: none; display: none; } .status-dot, .nav-dot { animation: none; } }
@media (max-width: 540px) { .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* =============================================================
   17. Reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
