/* =============================================
   ABBI WEBSITE — STYLESHEET
   --mango:   #F4A300  (Primary Warm Mango)
   --charcoal:#2C2C2C  (Anchor Soft Charcoal)
   --cream:   #FFF6E6  (Background Cream)
   --coral:   #FF6B4A  (Accent Fresh Coral)
============================================= */

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

:root {
  --mango:         #F4A300;
  --charcoal:      #2C2C2C;
  --cream:         #FFF6E6;
  --coral:         #FF6B4A;
  --white:         #ffffff;
  --mango-dark:    #D4900A;
  --mango-light:   #FFF1CC;
  --coral-dark:    #E05030;
  --charcoal-60:   rgba(44,44,44,0.60);
  --charcoal-40:   rgba(44,44,44,0.40);
  --border:        rgba(44,44,44,0.10);
  --shadow-xs:     0 2px 6px rgba(44,44,44,0.06);
  --shadow-sm:     0 4px 14px rgba(44,44,44,0.09);
  --shadow-md:     0 8px 28px rgba(44,44,44,0.13);
  --shadow-lg:     0 20px 48px rgba(44,44,44,0.16);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full:9999px;
  --ease:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--charcoal-60); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

/* ---- Layout ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-dark    { background: var(--charcoal); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary  { background: var(--mango); color: var(--charcoal); border-color: var(--mango); }
.btn-primary:hover  { background: var(--mango-dark); border-color: var(--mango-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline  { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover  { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

.btn-coral    { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover    { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark     { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover     { background: #1a1a1a; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,246,230,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--charcoal); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--coral); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--ease);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 11px 0;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 10px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
============================================= */
#hero {
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mango-light);
  border: 1px solid rgba(244,163,0,0.45);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--mango);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero-content h1 { margin-bottom: 18px; color: var(--charcoal); }
.hero-content h1 em { font-style: normal; color: var(--coral); }

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--charcoal-60);
  margin-bottom: 28px;
}

.hero-example {
  background: var(--white);
  border-left: 3px solid var(--mango);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-xs);
}
.hero-example .ex-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  display: block;
  margin-bottom: 5px;
}
.hero-example .ex-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- UI Mockup ---- */
.mockup-wrap {
  position: relative;
}

.mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 50%, rgba(244,163,0,0.18) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.ui-mockup {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mock-bar {
  background: var(--mango);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(44,44,44,0.22);
}
.mock-bar-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  flex: 1;
  text-align: center;
}

.mock-body { padding: 18px 18px 8px; }

.chat-msg {
  max-width: 86%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.chat-msg.user {
  margin-left: auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-bottom-right-radius: 3px;
  color: var(--charcoal);
}
.chat-msg.abbi {
  background: var(--mango-light);
  border: 1px solid rgba(244,163,0,0.28);
  border-bottom-left-radius: 3px;
  color: var(--charcoal);
}
.abbi-tag {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mango-dark);
  margin-bottom: 3px;
}

.inv-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 8px;
}
.inv-card-head {
  background: var(--charcoal);
  color: var(--white);
  padding: 9px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.inv-rows { padding: 10px 14px 6px; }
.inv-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-60);
}
.inv-row:last-child { border-bottom: none; }
.inv-row.total {
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.85rem;
  padding-top: 6px;
}
.inv-row.total .amt { color: var(--coral); }

.mock-actions {
  display: flex;
  gap: 8px;
  padding: 4px 18px 18px;
}
.mock-btn {
  flex: 1;
  padding: 9px;
  border-radius: var(--r-sm);
  font-size: 0.79rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--ease);
}
.mock-btn.confirm { background: var(--mango); color: var(--charcoal); }
.mock-btn.confirm:hover { background: var(--mango-dark); }
.mock-btn.edit { background: var(--white); border: 1px solid var(--border); color: var(--charcoal); }
.mock-btn.edit:hover { background: var(--cream); }

/* =============================================
   PROBLEMA
============================================= */
#problema { background: var(--charcoal); }

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

#problema .section-tag { color: var(--mango); }
#problema h2 { color: var(--white); margin-bottom: 10px; }
#problema .lead { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 36px; }

.prob-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.prob-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.prob-list li::before {
  content: '—';
  color: var(--coral);
  font-weight: 800;
  flex-shrink: 0;
}

.prob-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.prob-tag {
  background: rgba(255,107,74,0.14);
  border: 1px solid rgba(255,107,74,0.28);
  color: var(--coral);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.79rem;
  font-weight: 600;
}

/* Chaos illustration */
.prob-illustration {
  display: flex;
  justify-content: center;
}

/* =============================================
   SOLUCIÓN
============================================= */
#solucion { background: var(--white); }

.sol-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.sol-header h2 { margin-bottom: 14px; }
.sol-header p  { font-size: 1.03rem; line-height: 1.75; }

.sol-intro-text {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--charcoal-60);
}

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

.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mango);
}
.benefit-icon {
  width: 58px; height: 58px;
  background: var(--mango-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p  { font-size: 0.85rem; line-height: 1.65; }

/* =============================================
   CÓMO FUNCIONA
============================================= */
#como-funciona { background: var(--cream); }

.steps-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.steps-header h2 { margin-bottom: 10px; }

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--mango) 0%, var(--coral) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-num.n1 { background: var(--mango); }
.step-num.n2 { background: var(--charcoal); }
.step-num.n3 { background: var(--coral); }
.step-num.n4 { background: var(--mango); }

.step h3 { font-size: 0.95rem; margin-bottom: 7px; }
.step p   { font-size: 0.82rem; line-height: 1.6; }

.step-quote {
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 9px 11px;
  font-size: 0.77rem;
  font-style: italic;
  color: var(--charcoal);
  border: 1px solid var(--border);
  line-height: 1.5;
}

/* =============================================
   FUNCIONES
============================================= */
#funciones { background: var(--white); }

.func-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.func-header h2 { margin-bottom: 12px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feat-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: all var(--ease);
}
.feat-card:hover {
  border-color: var(--mango);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feat-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feat-icon.mg  { background: var(--mango-light); }
.feat-icon.cr  { background: rgba(255,107,74,0.12); }

.feat-text h3  { font-size: 1rem; margin-bottom: 6px; }
.feat-text p   { font-size: 0.85rem; line-height: 1.65; }

/* =============================================
   POR QUÉ DIFERENTE
============================================= */
#diferente { background: var(--cream); }

.dif-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.dif-header h2 { margin-bottom: 12px; }
.dif-header p  { font-size: 1.03rem; line-height: 1.75; }

.comparison {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.comp-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--charcoal);
}
.comp-head-cell {
  padding: 18px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.comp-head-cell:first-child { text-align: left; font-weight: 400; }
.comp-head-cell.hl { background: var(--mango); color: var(--charcoal); }

.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,246,230,0.7); }

.comp-cell {
  padding: 16px 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal-60);
}
.comp-cell:first-child { font-weight: 600; color: var(--charcoal); }
.comp-cell:not(:first-child) { justify-content: center; text-align: center; }
.comp-cell.abbi-val { font-weight: 600; color: var(--charcoal); }

.icon-check { color: #16A34A; font-size: 1.1rem; font-weight: 800; }
.icon-cross  { color: var(--coral); font-size: 1.1rem; font-weight: 800; }

/* =============================================
   PARA QUIÉN
============================================= */
#para-quien { background: var(--white); }

.pq-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.pq-header h2 { margin-bottom: 12px; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.target-card {
  text-align: center;
  padding: 24px 10px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  transition: all var(--ease);
  cursor: default;
}
.target-card:hover {
  border-color: var(--mango);
  background: var(--mango-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.target-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.target-card h4 { font-size: 0.77rem; color: var(--charcoal); line-height: 1.4; }

.pq-cta {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}
.pq-cta p {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0;
}
.pq-cta strong { color: var(--coral); }

/* =============================================
   VISIÓN
============================================= */
#vision { background: var(--charcoal); }

#vision .section-tag { color: var(--mango); }
#vision h2  { color: var(--white); margin-bottom: 12px; }
#vision .lead { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 36px; }

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.vision-body p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 18px;
}

.vision-quote {
  border-left: 3px solid var(--mango);
  padding: 14px 20px;
  margin: 28px 0;
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.vision-quote p {
  font-style: italic;
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.92rem !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

.vision-map-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--ease);
}
.stat-card:hover {
  background: rgba(244,163,0,0.1);
  border-color: rgba(244,163,0,0.3);
  transform: translateY(-3px);
}
.stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--mango);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* =============================================
   TECNOLOGÍA
============================================= */
#tecnologia { background: var(--cream); }

.tec-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.tec-header h2 { margin-bottom: 12px; }

.pipeline-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.pipeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  text-align: center;
  margin-bottom: 28px;
}

.pipeline-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
  min-width: 90px;
}
.pipe-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.pipe-icon.c1 { background: var(--mango-light); }
.pipe-icon.c2 { background: rgba(44,44,44,0.07); }
.pipe-icon.c3 { background: rgba(255,107,74,0.10); }
.pipe-icon.c4 { background: rgba(22,163,74,0.10); }
.pipe-icon.c5 { background: var(--mango-light); }
.pipe-icon.c6 { background: rgba(44,44,44,0.07); }
.pipe-step span { font-size: 0.7rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.pipe-arrow { color: var(--charcoal-40); font-size: 1.2rem; flex-shrink: 0; }

.tec-highlight {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  text-align: center;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.tec-highlight strong { color: var(--mango); }

.access-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.access-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.access-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-xs);
}

/* =============================================
   CTA
============================================= */
#cta { background: var(--white); }

.cta-box {
  background: var(--mango);
  border-radius: var(--r-xl);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-text h2 { color: var(--charcoal); margin-bottom: 14px; }
.cta-text .cta-sub {
  color: rgba(44,44,44,0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.cta-text .fine {
  font-size: 0.79rem;
  color: rgba(44,44,44,0.5);
}

.cta-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mango);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 70px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--ease);
  margin-top: 4px;
}
.form-submit:hover { background: var(--coral); transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-emoji { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { color: var(--charcoal); margin-bottom: 8px; }
.form-success p  { font-size: 0.9rem; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--charcoal);
  padding: 44px 0 24px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.foot-logo img { width: 30px; height: 30px; border-radius: 7px; }
.foot-logo span { font-size: 1.15rem; font-weight: 800; color: var(--white); }

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color var(--ease);
}
.foot-links a:hover { color: var(--mango); }

.foot-social { display: flex; gap: 10px; }
.soc-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--ease);
  font-weight: 700;
}
.soc-link:hover { background: var(--mango); color: var(--charcoal); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.33); margin: 0; }
.foot-bottom a { color: rgba(255,255,255,0.33); text-decoration: none; font-size: 0.78rem; }
.foot-bottom a:hover { color: var(--mango); }

/* =============================================
   ANIMATIONS
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .target-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .steps-track::before { display: none; }
}

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

  .nav-links, .nav-inner .btn { display: none; }
  .hamburger { display: flex; }

  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .hero-content    { text-align: center; }
  .hero-buttons    { justify-content: center; }
  .hero-example    { text-align: left; }

  .prob-grid       { grid-template-columns: 1fr; }
  .benefit-grid    { grid-template-columns: 1fr; }
  .steps-track     { grid-template-columns: 1fr; gap: 28px; }
  .features-grid   { grid-template-columns: 1fr; }
  .target-grid     { grid-template-columns: repeat(2, 1fr); }
  .vision-grid     { grid-template-columns: 1fr; gap: 40px; }
  .stats-row       { grid-template-columns: 1fr; gap: 14px; }
  .cta-box         { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .foot-top        { flex-direction: column; align-items: flex-start; }
  .foot-bottom     { flex-direction: column; align-items: flex-start; }
  .pipeline-steps  { gap: 4px; }
  .access-row      { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .container { padding: 0 16px; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form-card { padding: 24px 18px; }
  .pipeline-box  { padding: 24px 18px; }
  .comp-head-cell, .comp-cell { padding: 12px 10px; font-size: 0.78rem; }
}
