/* ============================================
   EpiCapy — Landing site
   Theme: Safety green + dark forest
   ============================================ */

:root {
  --green-50:  #e8f9ee;
  --green-100: #c9f1d6;
  --green-200: #8de4a9;
  --green-300: #4dd17b;
  --green-400: #22c55e;
  --green-500: #16a34a;
  --green-600: #138a3e;
  --green-700: #0f6e33;
  --green-800: #0c5226;
  --green-900: #0f3d2e;
  --forest:    #0a2d22;
  --ink:       #0b1a14;
  --text:      #1f2a25;
  --muted:     #5b6b63;
  --bg:        #f7faf8;
  --card:      #ffffff;
  --line:      #e3ebe6;
  --shadow-sm: 0 6px 18px rgba(15, 61, 46, .08);
  --shadow-md: 0 18px 40px rgba(15, 61, 46, .12);
  --shadow-lg: 0 30px 70px rgba(15, 61, 46, .18);
  --radius:    16px;
  --radius-lg: 24px;
  --grad: linear-gradient(135deg, #22c55e 0%, #138a3e 60%, #0f3d2e 100%);
  --grad-soft: linear-gradient(135deg, #e8f9ee 0%, #c9f1d6 100%);
  --grad-text: linear-gradient(90deg, #22c55e 0%, #4dd17b 50%, #138a3e 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  margin: 0 0 .4em;
  letter-spacing: -.02em;
  color: var(--forest);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; }

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

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(22, 163, 74, .45); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-200);
}
.btn-outline:hover { background: var(--green-50); border-color: var(--green-400); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--green-800);
}
.btn-ghost:hover { background: var(--green-50); }

/* ============================================
   Background decoration
   ============================================ */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 18s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; background: #22c55e; top: -160px; left: -120px; }
.blob-2 { width: 540px; height: 540px; background: #4dd17b; top: 40%; right: -180px; animation-delay: -6s; }
.blob-3 { width: 420px; height: 420px; background: #138a3e; bottom: -180px; left: 30%; animation-delay: -12s; }
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 61, 46, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 46, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 12px rgba(15, 61, 46, .06);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.logo-wordmark {
  height: 40px;
  width: auto;
  transition: transform .35s ease;
}
.logo-link:hover .logo-mark {
  transform: scale(1.08) rotate(-6deg);
}
.logo-link:hover .logo-wordmark {
  transform: translateX(2px);
}
@media (max-width: 540px) {
  .logo-wordmark { display: none; }
  .logo-mark { height: 44px; width: 44px; }
}

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--green-700); }
.main-nav a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-actions.open {
    display: flex;
    position: absolute;
    top: calc(100% + 230px);
    left: 0; right: 0;
    padding: 0 24px 18px;
    background: #fff;
    flex-direction: column;
    gap: 10px;
  }
  .nav-actions.open .btn { width: 100%; justify-content: center; }
}

/* ============================================
   Hero
   ============================================ */
.hero { padding: 80px 0 30px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--green-500);
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .8; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 18px;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--green-800);
}
.hero-points i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: inline-grid;
  place-items: center;
  font-size: .75rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: grid;
  place-items: center;
}
.hero-logo-wrap {
  position: relative;
  width: 380px; height: 380px;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(15, 61, 46, .28));
  animation: bob 6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.orbit {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--green-600);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  animation: orbit 14s linear infinite;
}
.orbit-1 { top: -10px;   left: 50%;   transform: translateX(-50%); animation-delay: 0s; }
.orbit-2 { top: 50%;     right: -10px; transform: translateY(-50%); animation-delay: -2.8s; }
.orbit-3 { bottom: -10px; left: 50%;  transform: translateX(-50%); animation-delay: -5.6s; }
.orbit-4 { top: 50%;     left: -10px; transform: translateY(-50%); animation-delay: -8.4s; }
.orbit-5 { top: 12%; right: 12%; animation-delay: -11.2s; }

@keyframes orbit {
  0%, 100% { transform: translate(var(--tx, 0), var(--ty, 0)) scale(1); box-shadow: var(--shadow-md); }
  50% { transform: translate(var(--tx, 0), var(--ty, 0)) scale(1.12); box-shadow: var(--shadow-lg); }
}

/* Float cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-size: .88rem;
  animation: cardFloat 6s ease-in-out infinite;
}
.float-card-1 { top: 20px; left: -20px; animation-delay: 0s; }
.float-card-2 { top: 50%; right: -30px; animation-delay: -2s; }
.float-card-3 { bottom: 30px; left: 20px; animation-delay: -4s; }

.fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fc-icon.green  { background: var(--green-100); color: var(--green-700); }
.fc-icon.yellow { background: #fff3cd; color: #b97403; }
.fc-icon.blue   { background: #e0f0ff; color: #1366c2; }

.fc-title { font-weight: 700; color: var(--forest); font-size: .9rem; }
.fc-sub   { color: var(--muted); font-size: .78rem; }
.fc-tag {
  margin-left: auto;
  background: var(--green-100);
  color: var(--green-700);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -9px; top: 12%;
  width: 1px; height: 76%;
  background: var(--line);
}
.stat-num {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-700);
}
.stat span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--green-500);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}
.stat-label {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 460px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .hero-logo-wrap { width: 280px; height: 280px; }
  .float-card { min-width: 190px; padding: 10px; }
  .float-card-1 { left: -8px; }
  .float-card-2 { right: -8px; }
  .float-card-3 { left: 8px; }
}

/* ============================================
   Trust strip
   ============================================ */
.trust { padding: 50px 0; }
.muted-eyebrow {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--muted);
  margin: 0 0 22px;
  font-weight: 700;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-item {
  text-align: center;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--green-800);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.trust-item i { color: var(--green-500); margin-right: 6px; }

@media (max-width: 980px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Sections
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section.bg-soft { background: linear-gradient(180deg, transparent 0%, var(--green-50) 100%); }
.section.section-dark {
  background: linear-gradient(160deg, var(--forest) 0%, var(--green-900) 60%, #0c5226 100%);
  color: #d8efe1;
}
.section.section-dark h2,
.section.section-dark h3 { color: #fff; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { max-width: 900px; margin: 0 auto .4em; }
.section-head .light { color: #fff; }
.section-sub {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-sub.light { color: #b8d6c4; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow.light {
  background: rgba(255,255,255,.08);
  color: var(--green-200);
}

/* ============================================
   Features grid
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(34,197,94,.18), transparent 70%);
  border-radius: 50%;
  transition: transform .6s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.feature-card:hover::after { transform: scale(1.4); }
.feature-card > * { position: relative; z-index: 1; }

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform .35s ease;
}
.feature-card:hover .feat-icon {
  transform: scale(1.1) rotate(-6deg);
}
.feature-card h3 { color: var(--forest); margin-bottom: .35em; }
.feature-card p  { color: var(--muted); margin: 0; }

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   Modules
   ============================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.module {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #d8efe1;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  backdrop-filter: blur(10px);
}
.module i {
  font-size: 1.5rem;
  color: var(--green-300);
  transition: transform .3s ease, color .3s ease;
}
.module:hover {
  transform: translateY(-4px);
  background: rgba(34, 197, 94, .14);
  border-color: rgba(77, 209, 123, .4);
}
.module:hover i { color: #fff; transform: scale(1.15); }

@media (max-width: 980px) { .modules-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Timeline / Como funciona
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 56px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.t-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease;
}
.t-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  font-weight: 800;
  color: var(--green-500);
  margin-bottom: 10px;
}
.t-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 24px rgba(22,163,74,.35);
}
.t-step p { color: var(--muted); margin: 0; }

@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 540px) { .timeline { grid-template-columns: 1fr; } }

/* ============================================
   Benefits
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.b-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.benefit h4 { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0 0 .35em; color: var(--forest); }
.benefit p  { color: var(--muted); font-size: .94rem; margin: 0; }

@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================
   NR-06 section
   ============================================ */
.nr06-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nr06-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.nr06-list { display: grid; gap: 12px; margin: 22px 0; }
.nr06-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}
.nr06-list i {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 4px;
}
.disclaimer {
  background: var(--green-50);
  color: var(--green-800);
  padding: 14px 18px;
  border-left: 4px solid var(--green-500);
  border-radius: 12px;
  font-size: .9rem;
  margin-top: 20px;
}
.disclaimer i { margin-right: 6px; }

.nr06-card {
  background: linear-gradient(160deg, #fff 0%, var(--green-50) 100%);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.cert-shield {
  position: absolute;
  top: -22px; right: 28px;
  width: 64px; height: 76px;
  background: var(--grad);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 4px;
  box-shadow: 0 12px 24px rgba(15, 110, 51, .35);
}
.cert-shield i { font-size: 1.3rem; }
.cert-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.cert-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0 0 22px;
  color: var(--forest);
}
.conf-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: .95rem;
}
.conf-row span { color: var(--green-800); font-weight: 500; }
.conf-row b { color: var(--green-700); font-weight: 700; }
.bar {
  height: 8px;
  background: var(--green-100);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
  animation: barGrow 1.6s ease-out;
  transform-origin: left;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.score {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--forest);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score span { font-weight: 500; opacity: .9; }
.score strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  color: var(--green-300);
}

@media (max-width: 880px) {
  .nr06-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   Diff cards
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}
.diff-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff-card i {
  font-size: 1.8rem;
  color: var(--green-500);
  margin-bottom: 14px;
  display: inline-block;
  transition: transform .3s ease;
}
.diff-card:hover i { transform: scale(1.15) rotate(-6deg); }
.diff-card.big {
  grid-row: span 1;
  background: var(--grad);
  color: #fff;
  border: 0;
}
.diff-card.big h3 { color: #fff; font-size: 1.4rem; }
.diff-card.big i { color: #fff; font-size: 2.2rem; }
.diff-card.big p { color: rgba(255,255,255,.92); }
.diff-card p { color: var(--muted); margin: 0; }

@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--green-400);
  box-shadow: 0 24px 50px rgba(22, 163, 74, .18);
  transform: translateY(-8px);
}
.ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(22,163,74,.4);
}
.price-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 6px;
  color: var(--forest);
}
.price-head p { color: var(--muted); margin: 0; font-size: .95rem; }
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-700);
}
.price-tag .price-currency { font-size: 1rem; font-weight: 700; }
.price-tag .price-value { font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--forest); }
.price-tag small { color: var(--muted); font-size: .82rem; font-weight: 500; margin-left: 6px; font-family: 'Inter', sans-serif; }
.price-feats {
  display: grid;
  gap: 10px;
  flex-grow: 1;
  margin: 8px 0;
}
.price-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--text);
}
.price-feats i {
  color: var(--green-500);
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details[open] {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  color: var(--green-500);
  transition: transform .3s ease;
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .95rem;
}

/* ============================================
   CTA section
   ============================================ */
.cta {
  padding: 100px 0;
  background: var(--grad);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0%, transparent 35%);
}
.cta-inner { position: relative; text-align: center; max-width: 740px; margin: 0 auto; }
.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: #fff;
  color: var(--green-700);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.cta .btn-primary:hover { background: #fff; color: var(--green-800); transform: translateY(-2px); }
.cta-note {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: #b8d6c4;
  padding: 70px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark { height: 56px; width: 56px; }
.footer-wordmark { height: 44px; width: auto; }
.footer-brand p { font-size: .92rem; color: #97b9a6; max-width: 320px; margin: 0; }
.site-footer h5 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  margin: 8px 0 14px;
  letter-spacing: .02em;
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer a {
  color: #97b9a6;
  font-size: .94rem;
  transition: color .25s ease;
}
.site-footer a:hover { color: var(--green-300); }
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .94rem;
}
.contact-list i { color: var(--green-400); width: 18px; text-align: center; }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #6c8b7b;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   WhatsApp floater
   ============================================ */
.float-whats {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .45);
  z-index: 80;
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-whats::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
.float-whats:hover { transform: scale(1.08); box-shadow: 0 18px 36px rgba(37, 211, 102, .55); }

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
