/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0A0A0A;
  --bg-soft: #121212;
  --bg-card: #161616;
  --border: #1F1F1F;
  --border-strong: #2A2A2A;
  --text: #FFFFFF;
  --text-dim: #A0A0A0;
  --text-mute: #6B6B6B;
  --accent: #C5F82A;
  --accent-hover: #D4FF40;
  --accent-dark: #8FB81E;
  --danger: #FF4D4D;
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

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

.h-display {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.h-xl {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.h-lg {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.h-md {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}

.accent { color: var(--accent); }
.dim { color: var(--text-dim); }
.mute { color: var(--text-mute); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ===========================================
   LAYOUT
   =========================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}

section {
  padding-block: clamp(64px, 10vw, 140px);
  position: relative;
}

/* ===========================================
   ANNOUNCEMENT BAR
   =========================================== */
.announcement {
  background: var(--accent);
  color: var(--bg);
  padding: 10px var(--pad);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 50;
}

.announcement .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name { line-height: 1; }

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.85;
}

.hero-claim {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
}

.nav-links {
  display: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--bg-card);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  padding-block: clamp(64px, 10vw, 120px) clamp(48px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 28px;
  max-width: 18ch;
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
}

.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 0.08em;
  background: var(--accent);
  transform: rotate(-3deg);
}

.hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.metric { position: relative; }

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-value .up {
  color: var(--accent);
  font-size: 0.7em;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ===========================================
   PROBLEM SECTION
   =========================================== */
.problem { background: var(--bg); position: relative; }
.problem h2 { max-width: 22ch; margin-bottom: 64px; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

.pain {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pain:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 77, 77, 0.1);
  color: var(--danger);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.pain h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.3; }
.pain p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }

.problem-close {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.problem-close .accent { font-style: italic; }

/* ===========================================
   PILLARS SECTION
   =========================================== */
.pillars { background: var(--bg); }
.pillars-header { max-width: 720px; margin-bottom: 72px; }
.pillars-header h2 { margin-bottom: 20px; }
.pillars-header p { color: var(--text-dim); font-size: 1.1rem; max-width: 50ch; }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.pillar {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar:hover { border-color: var(--accent); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.pillar h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.pillar p { color: var(--text-dim); line-height: 1.6; }

.pillar-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  color: var(--text-mute);
  transition: color 0.3s, transform 0.3s;
}

.pillar:hover .pillar-icon {
  color: var(--accent);
  transform: rotate(10deg) scale(1.1);
}

/* ===========================================
   MARQUEE
   =========================================== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 64px;
}

.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.7em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================
   CASES SECTION
   =========================================== */
.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.cases-header h2 { max-width: 16ch; }
.cases-header p { color: var(--text-dim); max-width: 28ch; }

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}

.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.case:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.case-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.case-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

.case-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.case-sector { color: var(--text-mute); font-size: 0.9rem; }

.case-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.case-compare > div h4 {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.case-compare > div p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.45; }
.case-compare .after p { color: var(--text); }

.case-results { display: flex; flex-wrap: wrap; gap: 12px; }

.case-results .chip {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: rgba(197, 248, 42, 0.1);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 500;
}

.case-coming {
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-mute);
  min-height: 200px;
}

.case-coming-inner span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dim);
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-header { max-width: 720px; margin-bottom: 64px; }
.pricing-header h2 { margin-bottom: 20px; }
.pricing-header p { color: var(--text-dim); font-size: 1.1rem; }

.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.plan:hover { transform: translateY(-4px); }

.plan.featured {
  background: #0F1505;
  border: 2px solid var(--accent);
  box-shadow: 0 20px 60px -20px rgba(197, 248, 42, 0.25);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}

.plan.featured .plan-name { color: var(--accent); }

.plan-tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 28px;
  min-height: 48px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.plan-price .euro { font-size: 0.6em; vertical-align: top; margin-right: 4px; color: var(--text-mute); }
.plan-price .from { font-size: 0.45em; color: var(--text-mute); display: block; line-height: 1; margin-bottom: 6px; font-weight: 500; }

.plan-features {
  list-style: none;
  margin-block: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5F82A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-features li.strong { color: var(--text); font-weight: 500; }

.plan-ideal {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}

.plan .btn { width: 100%; }

.pricing-extra {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.pricing-extra-left { display: flex; align-items: center; gap: 16px; }

.pricing-extra-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 248, 42, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-extra h4 { font-family: var(--font); font-size: 1rem; margin-bottom: 4px; }
.pricing-extra p { font-size: 0.88rem; color: var(--text-dim); }
.pricing-extra .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }

.addons {
  margin-bottom: 32px;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}

.addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.addon-info { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; }

.addon-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 248, 42, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.addon h4 { font-family: var(--font); font-size: 1rem; margin-bottom: 4px; }
.addon p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.45; }

.addon-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-price small { font-size: 0.5em; color: var(--text-mute); font-weight: 400; }

.plan-explainers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.plan-explainer {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}

.plan-explainer-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.plan-explainer p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 700px) {
  .plan-explainers .plan-explainer:nth-child(1) { order: 2; }
  .plan-explainers .plan-explainer:nth-child(2) { order: 3; }
  .plan-explainers .plan-explainer:nth-child(3) { order: 1; }
}

.pricing-note {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--text);
  padding: 32px 0 0;
  letter-spacing: -0.02em;
}

.pricing-note strong { color: var(--accent); }

/* ===========================================
   PROCESS
   =========================================== */
.process { background: var(--bg); }
.process-header { max-width: 720px; margin-bottom: 72px; }
.process-header h2 { margin-bottom: 20px; }
.process-header p { color: var(--text-dim); font-size: 1.1rem; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background 0.3s;
}

.step:hover { background: var(--bg-soft); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.step h3 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--text);
}

.step p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }

/* ===========================================
   STATS
   =========================================== */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(56px, 8vw, 100px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-num small { font-size: 0.5em; vertical-align: super; color: var(--text-dim); margin-left: 2px;}

.stat-label { font-size: 0.95rem; color: var(--text-dim); max-width: 22ch; }

/* ===========================================
   WHY
   =========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
  line-height: 1.5;
}

.why-list li:last-child { border-bottom: 1px solid var(--border); }

.why-list li svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-top: 2px;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-header { max-width: 720px; margin-bottom: 56px; }

.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 28px;
}

.faq-a p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 70ch;
}

/* ===========================================
   CONTACT
   =========================================== */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.contact-info h2 { margin-bottom: 24px; max-width: 16ch; }
.contact-info p.lede { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 40px; max-width: 38ch; }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-channel:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  background: rgba(197, 248, 42, 0.1);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-channel-label { font-size: 0.8rem; color: var(--text-mute); }
.contact-channel-value { font-size: 1rem; font-weight: 500; }

.contact-promise {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.contact-promise .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}

.field label .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  font-feature-settings: 'ss01';
}

.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-soft);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.5;
}

.consent input { margin-top: 3px; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; }

.form .btn { margin-top: 4px; }

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(197, 248, 42, 0.1);
  color: var(--accent);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-success.show { display: block; }

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.95rem; max-width: 30ch; }

.footer-col h4 {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 0.85rem;
}

.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-bottom .socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===========================================
   STICKY MOBILE CTA
   =========================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 30;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 12px 32px -8px rgba(197, 248, 42, 0.4);
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 899px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

.sticky-cta .arrow { transition: transform 0.2s; }
.sticky-cta:active .arrow { transform: translateX(4px); }

/* ===========================================
   COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6);
  max-width: 480px;
}

.cookie-banner.show { display: flex; }

@media (min-width: 768px) {
  .cookie-banner { bottom: 24px; left: 24px; right: auto; }
}

.cookie-banner h4 { font-family: var(--font); font-size: 1rem; }
.cookie-banner p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.5; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions button {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.cookie-banner-actions .accept { background: var(--accent); color: var(--bg); }
.cookie-banner-actions .accept:hover { background: var(--accent-hover); }
.cookie-banner-actions .reject { background: transparent; color: var(--text-dim); border: 1px solid var(--border-strong); }
.cookie-banner-actions .reject:hover { color: var(--text); border-color: var(--text-mute); }

/* ===========================================
   MODALS
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.show { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal h4 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.modal p, .modal li {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.modal ul { padding-left: 20px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover { color: var(--text); border-color: var(--text); }

/* ===========================================
   LEGAL PAGES (páginas independientes en /legal)
   =========================================== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--pad) 120px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal-page .legal-meta {
  color: var(--text-mute);
  font-size: 0.9rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page p, .legal-page li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page a { color: var(--accent); text-decoration: underline; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--accent); }

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================
   FOCUS STATES (a11y)
   =========================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* skip link */
.skip {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
}
.skip:focus { top: 16px; }
