:root {
  --green: #00E676;
  --green-dark: #00875A;
  --navy: #092333;
  --navy-soft: #0E2E42;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-light: #F5F7F6;
  --text: #1A2229;
  --text-muted: #5B6B72;
  --border: #E4E9E7;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(9, 35, 51, 0.06);
  --shadow-md: 0 12px 32px rgba(9, 35, 51, 0.1);
  --header-h: 72px;
  --mobile-bar-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.text-accent {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section--dark .text-accent,
.manifesto .text-accent,
.cta-final .text-accent {
  background: linear-gradient(100deg, var(--green) 0%, #6dffb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .15s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 230, 118, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 230, 118, 0.45); }
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.header--scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(9,35,51,0.06);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo img { height: 30px; width: auto; }
.header__nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.header__nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: right .2s ease;
}
.header__nav a:hover { color: var(--green-dark); }
.header__nav a:hover::after { right: 0; }
.header__actions { display: flex; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu.is-open { display: flex; }

@media (max-width: 860px) {
  .header__nav, .header__actions { display: none; }
  .header__burger { display: flex; }
}

/* HERO */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 88px) 0 88px;
  background: var(--white);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -220px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(0,230,118,0.16), transparent 68%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9,35,51,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,35,51,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black, transparent 75%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 800px; text-align: center; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--green-dark); }
.eyebrow--light { color: var(--green); }
.hero__title {
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}
.pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.hero__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* SECTIONS */
.section { position: relative; padding: 100px 0; }
.section--tint { background: var(--gray-light); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark .section__head p { color: rgba(255,255,255,0.72); }

.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.section--dark .section__head h2 { color: var(--white); }
.section__head p { font-size: 16px; color: var(--text-muted); }
.section__cta { text-align: center; margin-top: 52px; }

/* STATEMENT */
.statement { padding: 88px 0; }
.statement__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.statement h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.statement__lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.statement__lines {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--green);
  text-align: left;
}
.statement__lines p {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

/* GRID / CARDS */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,230,118,0.35);
}
.card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,230,118,0.12);
  color: var(--green-dark);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background .2s ease, transform .2s ease;
}
.card:hover .card__icon { background: var(--green); color: var(--navy); transform: scale(1.06); }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-muted); }

/* MANIFESTO */
.manifesto { position: relative; text-align: center; overflow: hidden; }
.manifesto__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,230,118,0.10), transparent 62%);
  pointer-events: none;
}
.manifesto__inner { position: relative; max-width: 640px; margin: 0 auto; }
.manifesto h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 6px 0 14px;
  letter-spacing: -0.015em;
}
.manifesto__sub {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.manifesto__note {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.manifesto__flow {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.manifesto__flow li {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  padding-left: 32px;
  counter-increment: flow;
}
.manifesto__flow li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,230,118,0.18);
}
.manifesto__flow li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 3px; top: 18px;
  width: 2px; height: calc(100% + 6px);
  background: rgba(0,230,118,0.25);
}

/* STEPS */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 28px; } }
.step { position: relative; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  background: var(--green);
  border-radius: 999px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-muted); }
@media (min-width: 861px) {
  .steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .step { z-index: 1; background: var(--white); }
}

/* HIGHLIGHT (trust) */
.highlight {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, background .2s ease;
}
.highlight:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.highlight h3 { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.highlight p { font-size: 15px; color: rgba(255,255,255,0.78); }

.highlight--light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.highlight--light:hover { background: var(--white); box-shadow: var(--shadow-md); }
.highlight--light h3 { color: var(--navy); }
.highlight--light p { color: var(--text-muted); }

/* PRICING */
.pricing {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 56px 40px 44px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(9,35,51,0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,230,118,0.25);
}
.pricing::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,230,118,0.28), transparent 70%);
  pointer-events: none;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,230,118,0.14), transparent 70%);
  pointer-events: none;
}
.pricing__badge {
  position: relative;
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pricing__head h3 { font-size: 26px; font-weight: 800; margin-bottom: 32px; position: relative; }
.pricing__price { margin-bottom: 8px; position: relative; }
.pricing__amount {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing__note { font-size: 14px; color: rgba(255,255,255,0.65); }
.pricing__included {
  position: relative;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin: 32px 0 16px;
  text-transform: uppercase;
}
.pricing__list {
  position: relative;
  list-style: none;
  text-align: left;
  margin: 0 0 36px;
  display: grid;
  gap: 13px;
}
.pricing__list li {
  font-size: 15px;
  padding-left: 30px;
  position: relative;
  color: rgba(255,255,255,0.92);
}
.pricing__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: -1px;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,230,118,0.18);
  color: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.pricing__footnote {
  position: relative;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.pricing__footnote strong { color: rgba(255,255,255,0.85); }

/* ACCORDION */
.accordion { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.accordion__item[open] {
  border-color: rgba(0,230,118,0.4);
  box-shadow: var(--shadow);
}
.accordion__item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: '+';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,230,118,0.12);
  font-size: 18px;
  color: var(--green-dark);
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}
.accordion__item[open] summary::after { transform: rotate(45deg); background: var(--green); color: var(--navy); }
.accordion__content { padding-bottom: 20px; }
.accordion__content p { color: var(--text-muted); font-size: 15px; }

/* CTA FINAL */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final__glow {
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 780px; height: 560px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.14), transparent 65%);
  pointer-events: none;
}
.cta-final h2 { position: relative; font-size: clamp(28px, 4.2vw, 42px); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.015em; }
.cta-final__sub { position: relative; color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-final__sub strong { color: var(--white); }
.cta-final__price { position: relative; font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 36px; }
.cta-final__actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-final__phone { position: relative; font-size: 14px; color: rgba(255,255,255,0.55); }

/* FOOTER */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 52px 0 96px; }
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__logo { height: 26px; width: auto; }
.footer__tagline { font-size: 14px; max-width: 380px; }
.footer__contact { color: var(--green); text-decoration: none; font-weight: 700; font-size: 15px; transition: opacity .15s ease; }
.footer__contact:hover { opacity: 0.8; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 8px; }

@media (min-width: 861px) { .footer { padding-bottom: 52px; } }

/* MOBILE STICKY BAR */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--mobile-bar-h);
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  z-index: 100;
}
@media (max-width: 860px) {
  .mobile-bar { display: flex; }
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter .15s ease;
}
.mobile-bar__btn:active { filter: brightness(0.95); }
.mobile-bar__btn--whatsapp {
  background: var(--green);
  color: var(--navy);
}
.mobile-bar__btn--call {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }
  .statement { padding: 60px 0; }
  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 24px; }
  .hero__subtitle { margin-bottom: 24px; }
  .hero__ctas { margin-bottom: 14px; }
  .hero__grid { background-size: 40px 40px; }
  .pricing { padding: 44px 26px 36px; }
  .pricing__amount { font-size: 52px; }
  body { padding-bottom: var(--mobile-bar-h); }
}
