:root {
  --navy: #0A1628;
  --blue: #1A4FD8;
  --blue-light: #2563EB;
  --cyan: #06B6D4;
  --cyan-light: #22D3EE;
  --white: #FFFFFF;
  --gray-bg: #F6F9FF;
  --gray-soft: #EEF3FB;
  --gray-text: #4B5E78;
  --gray-muted: #8A9BB5;
  --green: #10B981;
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-soft); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,79,216,0.08);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(10,22,40,0.1); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}
.logos2 {
      height: 3.9rem;
    }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.35rem; color: var(--navy); text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-text);
  text-decoration: none; padding: 6px 14px; border-radius: 8px;
  transition: all 0.2s;
}
nav a:hover { color: var(--blue); background: rgba(26,79,216,0.06); }
.btn-primary {
  background: var(--blue); color: white; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 10px;
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(26,79,216,0.3);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,79,216,0.38); }
.btn-secondary {
  background: white; color: var(--blue); border: 1.5px solid var(--blue);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 10px; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { background: rgba(26,79,216,0.06); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; padding: 120px 32px 80px;
  background: linear-gradient(160deg, #F0F6FF 0%, #FAFCFF 50%, #EFF9FB 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-blob {
  position: absolute; top: -100px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-bg-blob2 {
  position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,79,216,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan); font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--navy);
  margin-bottom: 20px; line-height: 1.1;
}
.hero h1 em { font-style: normal; color: var(--blue); position: relative; }
.hero h1 em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px; opacity: 0.4;
}
.hero-sub {
  font-size: 1.05rem; color: var(--gray-text); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary.lg { font-size: 0.95rem; padding: 13px 28px; border-radius: 12px; }
.btn-secondary.lg { font-size: 0.95rem; padding: 13px 28px; border-radius: 12px; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--gray-muted); font-weight: 500;
}
.trust-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: white; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; stroke: var(--blue); }

/* ─── MOCKUP ─── */
.hero-visual { position: relative; }
.mockup-shell {
  background: var(--navy); border-radius: 20px;
  padding: 20px; box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.4s ease;
}
.mockup-shell:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mockup-topbar {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red{background:#FF5F57} .dot.yellow{background:#FFBD2E} .dot.green{background:#28C840}
.mockup-title { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-left: 8px; }
.dashboard {
  background: #111C2E; border-radius: 12px; padding: 16px;
}
.dash-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.dash-title { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: white; }
.dash-badge {
  background: rgba(6,182,212,0.15); color: var(--cyan);
  font-size: 0.65rem; padding: 3px 8px; border-radius: 6px; font-weight: 600;
}
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 12px;
}
.kpi-label { font-size: 0.62rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.kpi-value { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; }
.kpi-change { font-size: 0.6rem; color: var(--green); margin-top: 2px; }
.chart-area {
  background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px; margin-bottom: 12px;
}
.chart-label { font-size: 0.62rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 50px; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  animation: growBar 1s ease forwards; transform-origin: bottom;
}
@keyframes growBar { from{transform:scaleY(0)} to{transform:scaleY(1)} }
.activity-list { display: flex; flex-direction: column; gap: 8px; }
.activity-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border-radius: 8px; padding: 8px 10px;
}
.activity-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.activity-text { font-size: 0.65rem; color: rgba(255,255,255,0.55); flex: 1; }
.activity-time { font-size: 0.6rem; color: rgba(255,255,255,0.3); }

/* floating cards */
.float-card {
  position: absolute; background: white;
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg);
  animation: floatUp 3s ease-in-out infinite alternate;
}
.float-card.left { left: -50px; bottom: 80px; animation-delay: 0.5s; }
.float-card.top { right: -20px; top: 60px; }
@keyframes floatUp { from{transform:translateY(0)} to{transform:translateY(-10px)} }
.float-num { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.float-label { font-size: 0.7rem; color: var(--gray-muted); }
.float-green { color: var(--green); font-size: 0.72rem; font-weight: 600; }

/* ─── SECTION BASE ─── */
section { padding: 90px 32px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy);
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--gray-text); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── LOGOS STRIP ─── */
.logos-strip {
  background: var(--navy); padding: 28px 32px;
  overflow: hidden;
}
.logos-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.logos-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.35); white-space: nowrap; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.08em; }
.logos-track { display: flex; gap: 48px; align-items: center; flex: 1; }
.logo-chip {
  font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.35); white-space: nowrap; letter-spacing: 0.02em;
}

/* ─── PROBLEM/SOLUTION ─── */
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ps-card {
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ps-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ps-card.problem { background: #FFF8F0; border: 1.5px solid #FFE8CC; }
.ps-card.solution { background: linear-gradient(135deg, var(--blue) 0%, #1565C0 100%); color: white; }
.ps-card.result { background: #F0FFF8; border: 1.5px solid #BBEDE0; }
.ps-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.ps-card.problem .ps-icon { background: rgba(251,146,60,0.15); }
.ps-card.solution .ps-icon { background: rgba(255,255,255,0.15); }
.ps-card.result .ps-icon { background: rgba(16,185,129,0.15); }
.ps-icon svg { width: 22px; height: 22px; }
.ps-card .ps-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.ps-card.problem .ps-label { color: #F97316; }
.ps-card.solution .ps-label { color: rgba(255,255,255,0.7); }
.ps-card.result .ps-label { color: var(--green); }
.ps-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.ps-card.solution h3 { color: white; }
.ps-card p { font-size: 0.88rem; line-height: 1.65; }
.ps-card.problem p { color: var(--gray-text); }
.ps-card.solution p { color: rgba(255,255,255,0.8); }
.ps-card.result p { color: var(--gray-text); }

/* ─── HOW IT WORKS ─── */
.how-bg { background: var(--navy); }
.how-bg .section-eyebrow { color: var(--cyan); }
.how-bg .section-title { color: white; }
.how-bg .section-sub { color: rgba(255,255,255,0.6); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 12px;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,79,216,0.3), rgba(6,182,212,0.3));
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step-icon svg { width: 22px; height: 22px; stroke: var(--cyan); }
.step-card h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── BENEFITS ─── */
.benefits-bg { background: var(--gray-bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: white; border-radius: 18px; padding: 28px;
  box-shadow: 0 2px 12px rgba(10,22,40,0.05);
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid transparent;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(26,79,216,0.12); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26,79,216,0.1), rgba(6,182,212,0.1));
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.benefit-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-card p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.6; }

/* ─── AUDIENCES ─── */
.audiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card {
  background: white; border-radius: 16px; padding: 24px 20px;
  text-align: center; border: 1.5px solid var(--gray-soft);
  transition: all 0.3s; cursor: default;
}
.audience-card:hover {
  border-color: var(--blue); background: rgba(26,79,216,0.03);
  transform: translateY(-4px); box-shadow: var(--shadow);
}
.audience-emoji { font-size: 2rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.audience-card p { font-size: 0.78rem; color: var(--gray-muted); }

/* ─── PLATFORM SECTION ─── */
.platform-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.platform-text .section-sub { margin-bottom: 32px; }
.platform-features { display: flex; flex-direction: column; gap: 14px; }
.platform-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--gray-text); font-weight: 500;
}
.platform-feature::before {
  content: ''; width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' stroke='white' stroke-width='2.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.big-mockup {
  background: var(--navy); border-radius: 24px; padding: 24px;
  box-shadow: var(--shadow-lg);
}
.big-dash { background: #111C2E; border-radius: 16px; padding: 20px; }
.big-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.big-kpi {
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px;
  text-align: center;
}
.big-kpi-v { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; }
.big-kpi-l { font-size: 0.6rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.big-chart { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; }
.big-chart-title { font-size: 0.65rem; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.chart-line { display: flex; align-items: flex-end; gap: 5px; height: 70px; }
.bar2 { flex: 1; border-radius: 5px 5px 0 0; }
.table-area { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; margin-top: 10px; }
.table-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.table-row:last-child { border-bottom: none; }
.table-circle { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.table-name { font-size: 0.65rem; color: rgba(255,255,255,0.6); flex: 1; }
.table-badge { font-size: 0.58rem; padding: 2px 7px; border-radius: 5px; font-weight: 600; }
.tb-active { background: rgba(16,185,129,0.15); color: var(--green); }
.tb-prog { background: rgba(6,182,212,0.15); color: var(--cyan); }

/* ─── IMPACT ─── */
.impact-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2147 100%);
  position: relative; overflow: hidden;
}
.impact-bg::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; transition: background 0.3s, transform 0.3s;
}
.impact-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.impact-num {
  font-family: 'Syne', sans-serif; font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(90deg, var(--cyan-light), white);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.impact-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ─── TESTIMONIAL ─── */
.testimonial-bg { background: var(--gray-bg); }
.testimonial-card {
  background: white; border-radius: 24px; padding: 48px;
  max-width: 760px; margin: 0 auto; box-shadow: var(--shadow);
  position: relative; text-align: center;
}
.quote-mark {
  font-family: 'Syne', sans-serif; font-size: 6rem; color: rgba(26,79,216,0.1);
  line-height: 0.6; margin-bottom: 24px; display: block;
}
.testimonial-text {
  font-size: 1.1rem; color: var(--navy); line-height: 1.75;
  font-style: italic; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; color: white; font-size: 0.9rem;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.author-org { font-size: 0.8rem; color: var(--gray-muted); }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-value {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--gray-bg); border-radius: 14px;
  border-left: 3px solid var(--blue);
}
.about-value h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-value p { font-size: 0.82rem; color: var(--gray-text); }
.about-value-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-visual {
  background: linear-gradient(135deg, var(--blue) 0%, #0D3A8E 100%);
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(6,182,212,0.2); border-radius: 50%;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  background: rgba(255,255,255,0.1); border-radius: 14px; padding: 20px;
  backdrop-filter: blur(10px);
}
.about-stat-num {
  font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: white;
}
.about-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.about-mission {
  background: rgba(255,255,255,0.08); border-radius: 14px; padding: 20px;
  margin-top: 16px;
}
.about-mission p { font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, #0A1628 0%, #1A4FD8 60%, #0891B2 100%);
  padding: 100px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--blue);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.btn-ghost {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 12px; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
footer {
  background: #060E1C; padding: 60px 32px 32px; color: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-desc { font-size: 0.82rem; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: rgba(26,79,216,0.4); border-color: var(--blue); }
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .platform-inner, .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: white; padding: 24px 32px; box-shadow: var(--shadow-lg); gap: 4px; }
  .hamburger { display: flex; }
  .ps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .audiences-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 60px; }
  .header-inner { padding: 0 20px; }
  .big-kpi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .audiences-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}


/* Dropdown wrapper */
.dropdown-wrapper {
  position: relative;
}

/* Menú desplegable */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}

.dropdown-menu.open {
  display: block;
}

/* Items del menú */
.dropdown-item {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #333;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #000;
}

/* CARRUSEL ALIADOS*/
  .allies-carousel-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 48px;
    }

    .allies-carousel {
      overflow: hidden;
      flex: 1;
      padding: 20px 0 28px;
    }

    .allies-track {
      display: flex;
      gap: 28px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      padding: 0 16px;
    }

    .ally-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      width: 100px;
      cursor: default;
    }

    .ally-logo {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      transition: transform 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
    }

    .ally-card:hover .ally-logo {
      transform: translateY(-5px) scale(1.06);
      box-shadow: 0 14px 32px rgba(0,0,0,0.18);
    }

    .ally-logo span {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: white;
      letter-spacing: 0.02em;
    }

    .ally-name {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--gray-text);
      text-align: center;
      line-height: 1.3;
    }

    .carousel-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: white;
      border: 1.5px solid rgba(26,79,216,0.15);
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: all 0.25s;
      box-shadow: 0 2px 12px rgba(10,22,40,0.08);
      z-index: 2;
    }

    .carousel-arrow:hover {
      background: var(--blue);
      color: white;
      border-color: var(--blue);
      box-shadow: 0 4px 20px rgba(26,79,216,0.3);
    }

    .carousel-arrow.left { margin-right: 8px; }
    .carousel-arrow.right { margin-left: 8px; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(26,79,216,0.18);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }

    .carousel-dot.active {
      background: var(--blue);
      width: 24px;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .carousel-arrow { width: 36px; height: 36px; }
      .ally-logo { width: 62px; height: 62px; }
      .ally-card { width: 80px; }
      .ally-logo span { font-size: 0.85rem; }
    }