/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --yellow: #FBBF24;
  --yellow-soft: #FEF3C7;
  --orange-tint: #FFF4E6;
  --ink: #1E2A3A;
  --ink-soft: #2C3848;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --dark: #171717;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(249,115,22,.25);
  --max-w: 1200px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header p { color: var(--gray); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- CONTAINER & SECTIONS ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 6rem 0; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(234,88,12,.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--gray-light);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- TOP BANNER ---------- */
.top-banner {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.top-banner strong { color: var(--yellow); }

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  transform: rotate(-6deg);
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.logo-img-footer {
  background: var(--white);
  padding: 3px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--orange); color: var(--white) !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.nav-cta-only { display: flex; }
  .nav-links.nav-cta-only li:not(:last-child) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse at top right, rgba(251,191,36,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(249,115,22,0.08) 0%, transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(249,115,22,0.05); }
}

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--orange);
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.3em;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.55;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-micro {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-micro::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
}

/* Hero illustration — stacked boxes CSS */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-stack {
  position: relative;
  width: 320px;
  height: 400px;
}
.box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 90px;
  border-radius: 8px;
  box-shadow:
    0 2px 0 rgba(0,0,0,0.1),
    0 15px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.box::before {
  content: '';
  position: absolute;
  left: 1.5rem; right: 1.5rem;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%);
}
.box::after {
  content: '';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 3px;
}
.box-1 { top: 0;   background: linear-gradient(135deg, #F97316, #EA580C); width: 260px; transform: translateX(-50%) rotate(-2deg); }
.box-2 { top: 100px; background: linear-gradient(135deg, #1F1F1F, #2C2C2C); width: 300px; transform: translateX(-50%) rotate(1.5deg); }
.box-3 { top: 200px; background: linear-gradient(135deg, #FBBF24, #F59E0B); width: 280px; transform: translateX(-52%) rotate(-1deg); color: var(--ink); }
.box-4 { top: 300px; background: linear-gradient(135deg, #1F1F1F, #2C2C2C); width: 320px; transform: translateX(-48%) rotate(2deg); }

.box:hover { transform: translateX(-50%) rotate(0) translateY(-4px); transition: transform 0.3s; }

.floating-tag {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.floating-tag-1 {
  top: 20px;
  right: -10px;
  color: var(--orange);
  animation: float 4s ease-in-out infinite;
}
.floating-tag-2 {
  bottom: 60px;
  left: -20px;
  animation: float 4s ease-in-out infinite 2s;
}
.floating-tag .icon {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  .hero-visual { height: 400px; transform: scale(0.85); }
  .floating-tag-1 { right: 10px; }
  .floating-tag-2 { left: 10px; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.trust-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---------- HOW IT WORKS ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }

.step-card {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.step-icon {
  width: 120px; height: 120px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  background: var(--white);
  transition: all 0.3s ease;
}
.step-card:hover .step-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}
.step-card:hover .step-icon svg { stroke: var(--white); }
.step-icon svg {
  width: 52px; height: 52px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.3s ease;
}
.step-num {
  position: absolute;
  top: -10px;
  right: calc(50% - 75px);
  background: var(--orange);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.step-card h3 {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.step-card p { color: var(--gray); font-size: 0.95rem; }

/* ---------- BEFORE / AFTER ---------- */
.beforeafter-section {
  background: var(--white);
  padding-bottom: 4rem;
}

.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .ba-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}

.ba-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.ba-card:hover { transform: translateY(-4px); }

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 40%);
  pointer-events: none;
}

.ba-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ba-label-before {
  background: var(--ink);
  color: var(--white);
}
.ba-label-after {
  background: var(--orange);
  color: var(--white);
}

.ba-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
.ba-arrow svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (max-width: 800px) {
  .ba-arrow { transform: rotate(90deg); }
  @keyframes arrowPulse {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(6px); }
  }
}

/* ---------- COMPARISON ---------- */
.comparison-section { background: var(--bg); }
.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.comparison-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  color: var(--white);
}
.comparison-head > div {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--ink);
}
.comparison-head .feature-col {
  background: var(--white);
  color: var(--gray);
  border-right: 1px solid var(--gray-light);
  font-size: 0.82rem;
}
.comparison-head .col-us {
  background: var(--orange);
  position: relative;
}
.comparison-head .col-us::before {
  content: '★ NOI';
  position: absolute;
  top: 10px; right: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--gray-light);
}
.comparison-row > div {
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
}
.comparison-row .feature {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
}
.comparison-row .col-them {
  color: var(--gray);
}
.comparison-row .col-us {
  background: rgba(249,115,22,0.05);
  color: var(--ink);
  font-weight: 600;
  border-left: 3px solid var(--orange);
}
.check-icon {
  display: inline-flex;
  margin-right: 0.5rem;
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.x-icon {
  display: inline-flex;
  margin-right: 0.5rem;
  color: #C5C5C5;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .comparison-head { grid-template-columns: 1fr 1fr; }
  .comparison-head .feature-col { display: none; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row .feature {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
  }
  .comparison-row .col-them,
  .comparison-row .col-us {
    border-top: 1px solid var(--gray-light);
  }
  .comparison-row .col-them::before {
    content: '✗ Cartone:';
    font-weight: 700;
    margin-right: 0.5rem;
    color: var(--gray);
  }
  .comparison-row .col-us::before {
    content: '✓ Zero Scatole:';
    font-weight: 700;
    margin-right: 0.5rem;
    color: var(--orange);
  }
}

/* ---------- FOUNDERS CLUB ---------- */
.founders-section {
  background: linear-gradient(135deg, #FFF4E6 0%, #FEF3C7 100%);
  position: relative;
  overflow: hidden;
}
.founders-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.founders-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(251,191,36,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.founders-section .section-tag { color: var(--orange-dark); }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .founders-grid { grid-template-columns: 1fr; } }

.founder-card {
  background: var(--white);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.founder-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.founder-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.founder-card p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.6;
}

.founders-counter {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--orange);
  position: relative;
  z-index: 1;
}
.counter-bar {
  width: 100%;
  height: 10px;
  background: var(--gray-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: var(--radius-pill);
  transition: width 0.6s ease;
}
.counter-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink);
}
.counter-text strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.founders-badge-inline {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange-tint);
  color: var(--orange-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px dashed var(--orange);
}

.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
  border: 1.5px solid var(--orange);
}
.hero-counter-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-counter strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
}

.eco-credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-left: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.2);
  border-radius: var(--radius-pill);
}
.eco-credential strong {
  color: #1a7a3e;
  font-weight: 700;
}
.eco-icon { font-size: 0.95rem; }
@media (max-width: 600px) {
  .eco-credential { margin-left: 0; font-size: 0.75rem; }
}

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1000px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: scale(1.03);
}
.price-card.featured:hover { border-color: var(--orange); transform: scale(1.03) translateY(-4px); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: inherit;
}
.price-card.featured h3 { color: var(--white); }

.price-box-count {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--gray-light);
}
.price-card.featured .price-box-count { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }

/* Tier blocks (BASIC / PREMIUM) */
.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.price-tier {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--gray-light);
}
.price-card.featured .price-tier {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.price-tier.tier-premium {
  background: var(--orange-tint);
  border-color: rgba(249,115,22,0.25);
}
.price-card.featured .price-tier.tier-premium {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4);
}

.tier-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  color: var(--gray);
}
.price-card.featured .tier-label { color: rgba(255,255,255,0.7); }
.tier-label .tier-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6B7280;
}
.tier-premium .tier-label { color: var(--orange-dark); }
.price-card.featured .tier-premium .tier-label { color: var(--yellow); }
.tier-premium .tier-dot { background: var(--orange); }
.tier-premium .tier-star { color: var(--yellow); font-size: 0.8rem; }

.tier-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.price-card.featured .tier-price { color: var(--white); }
.tier-premium .tier-price { color: var(--orange); }
.price-card.featured .tier-premium .tier-price { color: var(--yellow); }
.tier-price small {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
  margin-left: 0.2rem;
}
.price-card.featured .tier-price small { color: rgba(255,255,255,0.65); }

.tier-desc {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.35rem;
  line-height: 1.4;
}
.price-card.featured .tier-desc { color: rgba(255,255,255,0.65); }

.price-week-note {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  padding: 0.5rem;
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px dashed var(--gray-light);
}
.price-card.featured .price-week-note {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.price-features li {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.price-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.85rem;
}

.extras-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--orange-tint);
  border-radius: 16px;
  padding: 2rem;
  border: 1px dashed var(--orange);
}
.extras-box h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  font-size: 0.92rem;
}
@media (max-width: 600px) { .extras-grid { grid-template-columns: 1fr; } }
.extras-grid div { display: flex; gap: 0.5rem; align-items: flex-start; }
.extras-grid div::before { content: '+'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--dark); color: var(--white); }
.testimonials-section h2, .testimonials-section .section-header p { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-section .section-tag { color: var(--yellow); }

.testim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testim-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.testim-card {
  background: #242424;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.testim-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.testim-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testim-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testim-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.testim-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testim-city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.testim-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 800;
}
.faq-item.open .faq-toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CONTACT FORM ---------- */
.contact-section {
  background: var(--white);
  position: relative;
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.contact-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 150px; height: 150px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.15;
}
.contact-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}
@media (max-width: 600px) {
  .contact-inner { padding: 2rem 1.5rem; }
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form-group label .optional { color: var(--gray); font-weight: 400; font-size: 0.78rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group small { display: block; margin-top: 0.35rem; font-size: 0.78rem; color: var(--gray); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.form-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--gray);
  font-size: 0.85rem;
}
.form-alt::before, .form-alt::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}
.form-wa {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  padding: 0.95rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.form-wa:hover { background: #1ebb58; }
.form-wa svg { width: 20px; height: 20px; }

.form-trust {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.8;
}
.form-trust .check { color: var(--orange); font-weight: 800; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.92rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: all 0.3s ease;
  animation: bounceIn 0.6s ease 1.5s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }