/* ============================================
   AldeIA — Design System
   ============================================ */

:root {
  --teal:    #3CBBB3;
  --teal-d:  #2A9A93;
  --teal-bg: rgba(60, 187, 179, .08);
  --brand:   #2A4A56;
  --dark:    #0d1319;
  --dark-2:  #152028;
  --dark-3:  #1c2d38;
  --soft:    #f7f6f3;
  --white:   #ffffff;
  --text:    #111827;
  --text-2:  #374151;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --line:    #e5e7eb;
  --radius:  14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow:  0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --max: 1180px;
  --fh: 'Outfit', sans-serif;
  --fb: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--fh);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
p  { line-height: 1.7; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}

.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  flex-shrink: 0;
}
.logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.logo-wordmark {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brand);
  letter-spacing: -.02em;
}
.logo-wordmark em { color: var(--teal); font-style: normal; }
.footer .logo-wordmark { color: #ffffff; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--teal);
  color: var(--dark);
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 900;
}

.links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.links a:hover,
.links a.active {
  color: var(--text);
  background: var(--soft);
}
.links a.active { font-weight: 600; }

.nav-cta { margin-left: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .875rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--dark);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,150,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-2);
  background: var(--soft);
}

/* Mobile nav */
.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}
.mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 16px 0 24px;
}
.mobile.open { display: block; }
.mobile .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile .container a {
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  transition: background .15s;
}
.mobile .container a:hover { background: var(--soft); }
.mobile .container .btn {
  margin-top: 10px;
  justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */

.section { padding: 88px 0; }
.section.soft { background: var(--soft); }
.section.dark {
  background: var(--dark);
  color: var(--white);
}
.section.dark p   { color: rgba(255,255,255,.6); }
.section.dark h2  { color: var(--white); }
.section.dark h3  { color: var(--white); }
.section.dark .eyebrow { color: var(--teal); }
.section.dark .lead    { color: rgba(255,255,255,.55); }

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-head h2 { max-width: 580px; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 10px;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--dark);
  padding: 100px 0 110px;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -180px; right: -100px;
  filter: blur(80px);
}
.hero::after {
  width: 300px; height: 300px;
  background: var(--teal);
  bottom: -100px; left: 10%;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,200,150,.1);
  border: 1px solid rgba(0,200,150,.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal), #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero .btn-ghost {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.2);
}
.hero .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
}

.kicker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.kicker span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
}

.proof { display: flex; gap: 32px; flex-wrap: wrap; }
.proof-card { display: flex; flex-direction: column; gap: 2px; }
.proof-card strong {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.proof-card span {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.hero-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.url {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  padding: 3px 12px;
  border-radius: 6px;
  margin-left: 8px;
  font-family: monospace;
}
.hero-card-inner {
  padding: 36px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float {
  margin-top: 16px;
  background: var(--teal);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.float strong {
  display: block;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--dark);
}
.float p {
  font-size: .85rem;
  color: rgba(13,19,25,.7);
  margin: 0;
}

/* ============================================
   CARD GRID (Pain)
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(0,200,150,.3);
}
.section.soft .card { background: var(--white); }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; color: var(--text); }
.card p  { font-size: .9rem; color: var(--muted); }

/* Dark section cards */
.section.dark .card {
  background: var(--dark-2);
  border-color: rgba(255,255,255,.07);
}
.section.dark .card:hover { border-color: rgba(0,200,150,.3); }
.section.dark .card p { color: rgba(255,255,255,.5); }

/* ============================================
   SERVICES
   ============================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal);
}
.service .icon  { font-size: 2rem; }
.service h3     { font-size: 1.1rem; color: var(--text); }
.service > p    { font-size: .88rem; color: var(--muted); flex: 1; }

.kpi {
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .8rem;
}
.kpi b {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
}
.kpi span { color: var(--muted); }

.price {
  font-size: .88rem;
  color: var(--text-2);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.price strong {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

/* ============================================
   PROCESS (Method)
   ============================================ */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process .card {
  counter-increment: step;
  padding-top: 24px;
}
.process .card::before {
  content: "0" counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--dark);
  font-family: var(--fh);
  font-weight: 900;
  font-size: .85rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.process .card h3 { margin-bottom: 8px; }

/* ============================================
   PANEL IMAGE
   ============================================ */

.panel-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

/* ============================================
   FORM
   ============================================ */

.form-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.form-shell > div > h2 { margin-bottom: 16px; }

.list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-2);
}
.list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

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

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--text);
  background: var(--soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color .15s, background .15s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,200,150,.1);
}
.field textarea { min-height: 100px; resize: vertical; }

button[type="submit"].btn {
  font-size: 1rem;
  padding: 14px 24px;
}

.alert {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
}
.alert.warn {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.alert.ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer .logo-mark { background: var(--teal); color: var(--dark); }

.footer-grid > div > p {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.footer-grid > div > a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-grid > div > a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid > div:last-child { display: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section  { padding: 60px 0; }
  .hero     { padding: 64px 0 80px; }

  .card-grid,
  .service-grid { grid-template-columns: 1fr; }

  .form-shell { grid-template-columns: 1fr; gap: 40px; }
  .form-grid  { grid-template-columns: 1fr; }
  .field.full { grid-column: unset; }

  .section-head { flex-direction: column; }
  .section-head > a { align-self: flex-start; }

  .links    { display: none; }
  .nav-cta  { display: none; }
  .mobile-btn { display: flex; }

  .process { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .process     { grid-template-columns: 1fr; }
  .proof       { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}


/* ============================================
   AldeIA — v3 CRO/Brand update
   ============================================ */
.hero-brand-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  max-width: 560px;
}
.hero-brand-note strong { color: var(--white); font-weight: 800; }
.access-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.access-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.access-card h3 { margin-bottom: 8px; }
.access-card p { color: var(--muted); font-size: .9rem; }
.image-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.hero .image-card { background: var(--dark-2); }
.visual-caption {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.visual-caption span {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 5px 10px;
}
.solution-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.solution-pill {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: .88rem;
  color: var(--text-2);
}
.solution-pill strong { display:block; color: var(--text); font-family: var(--fh); margin-bottom: 3px; }
.embudo-explain {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}
.embudo-explain p { color: var(--text-2); max-width: 850px; }
.embudo-explain p + p { margin-top: 12px; }
.funnel-grid, .embudo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.funnel-card, .embudo-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:28px 24px; display:flex; flex-direction:column; gap:14px; transition:box-shadow .2s,transform .2s,border-color .2s; }
.funnel-card:hover, .embudo-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); border-color:rgba(0,200,150,.3); }
.funnel-card.highlight, .embudo-card.highlight { background:var(--dark); border-color:var(--dark); }
.funnel-card.highlight p, .embudo-card.highlight p { color:rgba(255,255,255,.55); }
.funnel-card.highlight h3, .embudo-card.highlight h3 { color:var(--white); }
.funnel-header, .embudo-header { display:flex; align-items:center; gap:12px; }
.funnel-icon, .embudo-icon { font-size:1.6rem; }
.funnel-card h3, .embudo-card h3 { font-size:1.05rem; margin:0; }
.funnel-card > p, .embudo-card > p { font-size:.88rem; color:var(--muted); }
.funnel-flow, .embudo-flow { display:flex; flex-wrap:wrap; align-items:center; gap:6px; font-size:.78rem; font-weight:600; color:var(--text-2); background:var(--soft); padding:10px 14px; border-radius:var(--radius-sm); }
.funnel-flow .arr, .embudo-flow .arr { color:var(--teal); }
.funnel-services, .embudo-services { font-size:.8rem; color:var(--muted); }
.funnel-services b, .embudo-services b { color:var(--text); font-weight:600; }
.funnel-price, .embudo-price { font-size:.9rem; color:var(--text-2); padding-top:10px; border-top:1px solid var(--border); margin-top:auto; }
.funnel-price strong, .embudo-price strong { font-family:var(--fh); font-size:1.1rem; font-weight:800; color:var(--text); }
.about-card { background:var(--soft); border-radius:var(--radius); padding:24px; border:1px solid var(--border); }
.about-card.no { border-color:rgba(239,68,68,.15); background:#fff5f5; }
.about-card h3 { margin-bottom:12px; font-size:1rem; }
.about-card.no h3 { color:#dc2626; }
.about-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:8px; }
.about-list li { font-size:.875rem; color:var(--text-2); display:flex; align-items:flex-start; gap:8px; }
.about-list li::before { content:'✓'; color:var(--teal); font-weight:800; flex-shrink:0; }
.about-card.no .about-list li::before { content:'✕'; color:#dc2626; }
.levels { display:flex; flex-direction:column; gap:10px; margin-top:2px; }
.level { background:var(--soft); border-radius:var(--radius-sm); padding:12px 14px; font-size:.82rem; color:var(--text-2); display:flex; flex-direction:column; gap:6px; }
.level-tag { align-self:flex-start; background:rgba(60,187,179,.14); color:var(--teal-d); border:1px solid rgba(60,187,179,.24); padding:3px 8px; border-radius:999px; font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.level-tag.adv { background:#111827; color:#fff; border-color:#111827; }
.level strong { color:var(--text); font-family:var(--fh); }
@media(max-width:900px){ .funnel-grid,.embudo-grid,.access-row { grid-template-columns:1fr 1fr; } .solution-strip { grid-template-columns:1fr 1fr; } }
@media(max-width:768px){ .about-grid { grid-template-columns:1fr !important; gap:40px !important; } }
@media(max-width:600px){ .funnel-grid,.embudo-grid,.access-row,.solution-strip { grid-template-columns:1fr; } }

/* ============================================
   LEGAL FORM LAYER
   ============================================ */

.legal-layer {
  margin: 22px 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.legal-layer .note {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-layer a {
  color: var(--teal);
  font-weight: 800;
}

.legal-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.45;
}

.legal-check:last-child {
  margin-bottom: 0;
}

.legal-check input {
  margin-top: 4px;
  min-width: 16px;
}