/* ============================================
   VELOCTIVE — SHARED CSS v3.0
   Design: Bold & energetic cycling brand
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   Colors: Electric green #00E676 on deep dark #0A0F1E
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --green: #00E676;
  --green-dark: #00C853;
  --dark: #0A0F1E;
  --dark2: #111827;
  --dark3: #1C2333;
  --white: #FFFFFF;
  --gray: #8892A4;
  --light: #F0F4FF;
  --nav-h: 70px;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,230,118,.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,15,30,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,230,118,.1);
  transition: background .3s;
}
.site-header.scrolled { background: rgba(10,15,30,.98); }

.navbar { height: 100%; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--white);
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
}
.logo-icon { font-size: 1.6rem; }
.logo-text { color: var(--white); }
.logo-text span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .82rem; font-weight: 600; padding: .4rem .7rem;
  border-radius: 8px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(0,230,118,.08); }
.nav-links .nav-cta a {
  background: var(--green); color: var(--dark) !important;
  padding: .5rem 1rem; border-radius: 999px;
}
.nav-links .nav-cta a:hover { background: var(--green-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--dark2); flex-direction: column; align-items: flex-start;
    padding: 1.5rem; gap: .25rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .3s;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: .75rem 1rem; width: 100%; }
}

/* ─── HERO (VIDEO BG) ─── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,15,30,.75) 0%,
    rgba(10,15,30,.55) 50%,
    rgba(10,15,30,.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,230,118,.12); border: 1px solid rgba(0,230,118,.3);
  color: var(--green); font-size: .8rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
  color: var(--white);
}
.hero h1 .accent { color: var(--green); }
.hero p.sub {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(255,255,255,.78);
  max-width: 580px; margin: 0 auto 2rem;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: .6rem 1.25rem; text-align: center;
}
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.4rem; color: var(--green); }
.hero-stat span { font-size: .75rem; color: rgba(255,255,255,.6); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: .9rem; border-radius: 999px; text-decoration: none;
  padding: .75rem 1.75rem; transition: .2s; cursor: pointer; border: none;
}
.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,230,118,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }

/* ─── SECTIONS ─── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block; background: rgba(0,230,118,.1);
  color: var(--green); font-size: .75rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.section-title .accent { color: var(--green); }
.section-sub { color: var(--gray); font-size: 1rem; max-width: 580px; margin-bottom: 3rem; }

/* ─── CARDS ─── */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid.col2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-grid.col3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cards-grid.col4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(0,230,118,.3); transform: translateY(-4px); }

.card-icon {
  font-size: 2.5rem; margin-bottom: 1rem; display: block;
  filter: drop-shadow(0 0 12px rgba(0,230,118,.4));
}
.card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: .5rem; }
.card p { color: var(--gray); font-size: .9rem; line-height: 1.7; }
.card.featured { border-color: var(--green); background: rgba(0,230,118,.05); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.price-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden;
}
.price-card.popular { border-color: var(--green); }
.popular-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--green); color: var(--dark); font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 999px; text-transform: uppercase;
}
.price-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.price-name { font-size: .85rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: .25rem; }
.price-period { font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.price-features li { font-size: .875rem; color: rgba(255,255,255,.8); display: flex; gap: .5rem; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── STATS ROW ─── */
.stats-row {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  overflow: hidden; margin: 3rem 0;
}
.stat-item {
  flex: 1; min-width: 120px; padding: 2rem 1.5rem; text-align: center;
  background: var(--dark3);
}
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--green); display: block; }
.stat-label { font-size: .8rem; color: var(--gray); }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 1.75rem;
}
.stars { color: #FFD700; font-size: 1rem; margin-bottom: .75rem; }
.testi-text { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testi-author { font-weight: 700; font-size: .875rem; }
.testi-loc { font-size: .8rem; color: var(--gray); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,230,118,.1) 0%, rgba(0,200,83,.05) 100%);
  border: 1px solid rgba(0,230,118,.2);
  border-radius: 24px; padding: 3.5rem 2rem; text-align: center;
  margin: 2rem 0;
}
.cta-banner h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--gray); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── PROCESS STEPS ─── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem; padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: rgba(0,230,118,.2); flex-shrink: 0; line-height: 1; min-width: 50px;
}
.step h3 { font-family: 'Syne', sans-serif; margin-bottom: .4rem; }
.step p { color: var(--gray); font-size: .9rem; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0;
}
.faq-q {
  font-weight: 700; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--green); font-size: 1.4rem; flex-shrink: 0; transition: .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--gray); font-size: .9rem; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: .75rem; }

/* ─── FOOTER ─── */
.site-footer {
  background: #060A14; border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.site-footer p { color: var(--gray); font-size: .875rem; line-height: 1.7; }
.footer-contacts { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.footer-contacts a { color: var(--green); text-decoration: none; font-size: .875rem; font-weight: 600; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: .9rem; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { color: var(--gray); text-decoration: none; font-size: .85rem; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col ul li { color: var(--gray); font-size: .85rem; }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3.5rem 1.25rem; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); }
.wa-float svg { width: 32px; height: 32px; }

/* ─── SHARED JS INLINE ─── */
/* Breadcrumb */
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* Schema hidden */
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }
