/* ============================================================
   MANOS POR CHINCHINÁ — hoja de estilos
   ============================================================ */

@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* paleta extraída del logo */
  --blue-900: #0c1f6b;
  --blue-800: #12309a;
  --blue-700: #1a3fc4;
  --blue-600: #2451e0;
  --blue-500: #3563f0;
  --blue-glow: #5f83ff;
  --pink: #ff8fbd;
  --pink-deep: #f45fa0;
  --red: #ee4430;
  --red-deep: #d4321f;
  --yellow: #ffcc33;
  --yellow-deep: #f2b100;
  --cream: #fff7ea;
  --ink: #0a1440;
  --paper: #fbf6ee;

  --font-display: "Creato Display", "Arial Black", sans-serif;

  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--yellow);
  color: var(--blue-900);
}

/* subtle grain texture reused everywhere */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  background-size: 180px 180px;
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.42s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease-out), background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 30px -18px rgba(10, 20, 64, 0.35);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--blue-800);
}
.nav.scrolled .nav-brand,
.nav .nav-brand {
  color: var(--blue-800);
}
.nav-brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 14.5px;
}
.nav-links a {
  position: relative;
  color: var(--blue-900);
  opacity: 0.75;
  transition: opacity 0.25s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--blue-700);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 24px -10px rgba(26, 63, 196, 0.65);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px -8px rgba(26, 63, 196, 0.75);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-900);
  border-radius: 2px;
  position: relative;
  transition: 0.3s;
}
.nav-toggle span::before {
  position: absolute;
  top: -8px;
}
.nav-toggle span::after {
  position: absolute;
  top: 8px;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--blue-900);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    font-size: 20px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    color: #fff;
    opacity: 0.9;
  }
  .nav-links .nav-cta {
    margin-top: 10px;
  }
  .nav-toggle {
    display: block;
    z-index: 110;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 90% at 15% -10%, var(--blue-glow) 0%, transparent 55%),
    radial-gradient(100% 80% at 100% 110%, var(--pink-deep) 0%, transparent 45%),
    linear-gradient(160deg, var(--blue-700) 0%, var(--blue-800) 55%, var(--blue-900) 100%);
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.45;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-eyebrow .pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 204, 51, 0.25);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin: 26px 0 8px;
  text-transform: uppercase;
  animation: fadeUp 0.9s 0.08s var(--ease-out) both;
}
.hero h1 .line2 {
  display: block;
  background: linear-gradient(92deg, var(--yellow) 0%, var(--pink) 55%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.6;
  animation: fadeUp 0.9s 0.16s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: fadeUp 0.9s 0.24s var(--ease-out) both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15.5px;
  border: none;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s, background 0.3s;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: 0 16px 34px -12px rgba(255, 204, 51, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 20px 40px -10px rgba(255, 204, 51, 0.7);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

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

/* floating hand illustrations */
.hero-hands {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hand-float {
  position: absolute;
  filter: drop-shadow(0 18px 30px rgba(4, 10, 40, 0.45));
  animation: floaty 6s ease-in-out infinite;
}
.hand-float.h1 { top: 8%; left: 6%; width: 130px; animation-delay: 0s; }
.hand-float.h2 { top: 14%; right: 7%; width: 150px; animation-delay: 1.2s; }
.hand-float.h3 { bottom: 10%; left: 9%; width: 145px; animation-delay: 0.6s; }
.hand-float.h4 { bottom: 6%; right: 10%; width: 125px; animation-delay: 1.8s; }
@media (max-width: 760px) {
  .hand-float { width: 78px !important; opacity: 0.85; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-16px) rotate(calc(var(--r, 0deg) + 2deg)); }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.scroll-cue .stick {
  width: 1.5px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
  animation: stickPulse 1.8s ease-in-out infinite;
}
@keyframes stickPulse {
  0% { transform: scaleY(0.3); opacity: 0.2; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0.3); opacity: 0.2; transform-origin: bottom; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section {
  position: relative;
}
.section-pad {
  padding: 110px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-deep);
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  color: var(--blue-900);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.section-lede {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: #3a3f66;
}

/* ============================================================
   INTRO / MISSION
   ============================================================ */
.mission {
  background: var(--paper);
  padding: 100px 0 40px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.mission-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 10px 10px 0 var(--blue-700);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.mission-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--blue-700);
}
.mission-card p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}
.mission-card strong {
  background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
}
.mission-badge {
  position: absolute;
  top: -22px;
  right: 28px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transform: rotate(4deg);
}
.mission-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-blob {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%;
  background: conic-gradient(from 210deg, var(--pink), var(--yellow), var(--blue-500), var(--pink));
  filter: saturate(1.15);
  animation: blobMove 10s ease-in-out infinite;
  position: relative;
}
@keyframes blobMove {
  0%, 100% { border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%; }
  50% { border-radius: 58% 42% 40% 60% / 40% 55% 45% 60%; }
}
.mission-visual .icon-hand {
  position: absolute;
  width: 40%;
}

/* ============================================================
   TIMELINE STEPS
   ============================================================ */
.steps {
  background: #fff;
}
.steps-list {
  margin-top: 60px;
  position: relative;
}
.steps-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: repeating-linear-gradient(
    180deg,
    var(--blue-600) 0 10px,
    transparent 10px 18px
  );
}
@media (max-width: 720px) {
  .steps-list::before { left: 27px; }
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding: 26px 0;
  position: relative;
}
@media (max-width: 720px) {
  .step { grid-template-columns: 56px 1fr; }
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce);
}
.step:hover .step-num {
  transform: scale(1.08) rotate(-6deg);
  background: var(--red);
  box-shadow: 6px 6px 0 var(--pink);
}
@media (max-width: 720px) {
  .step-num { width: 56px; height: 56px; font-size: 20px; border-width: 2px; }
}
.step-body {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  border: 2px solid transparent;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.step:hover .step-body {
  border-color: var(--blue-600);
  transform: translateX(6px);
}
.step-body h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 800;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-body p {
  margin: 0;
  color: #45496e;
  line-height: 1.65;
  font-size: 16px;
}

/* ============================================================
   PROGRESS
   ============================================================ */
.progress-section {
  background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.progress-section .grain { opacity: 0.35; }
.progress-section .eyebrow { color: var(--yellow); }
.progress-section .eyebrow::before { background: var(--yellow); }
.progress-section h2.section-title { color: #fff; }
.progress-section .section-lede { color: rgba(255, 255, 255, 0.82); }

.progress-panel {
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 46px;
  backdrop-filter: blur(10px);
}
@media (max-width: 640px) {
  .progress-panel { padding: 28px 22px; }
}
.progress-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 26px;
}
.progress-count {
  font-size: clamp(46px, 8vw, 84px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.progress-count small {
  font-size: 0.32em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.75);
  margin-left: 6px;
}
.progress-percent {
  text-align: right;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  color: var(--yellow);
}
.progress-percent span { font-size: 0.5em; opacity: 0.7; }

.bar-track {
  position: relative;
  width: 100%;
  height: 26px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.bar-fill {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, var(--pink) 45%, var(--yellow) 100%);
  transition: width 1.6s var(--ease-out);
  overflow: hidden;
}
.bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 40%,
    transparent 60%
  );
  background-size: 220% 100%;
  animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}
.bar-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.progress-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.progress-foot .updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.progress-foot .updated .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ee08a;
  box-shadow: 0 0 0 4px rgba(78, 224, 138, 0.25);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
@media (max-width: 640px) {
  .mini-stats { grid-template-columns: 1fr; }
}
.mini-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.mini-stat .num {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}
.mini-stat .lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ============================================================
   NEEDS / AUDIENCE CARDS
   ============================================================ */
.needs {
  background: var(--paper);
}
.needs-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .needs-grid { grid-template-columns: 1fr; }
}
.need-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s;
}
.need-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--card-color, var(--blue-500));
  opacity: 0.15;
  transition: transform 0.5s var(--ease-out);
}
.need-card:hover::before {
  transform: scale(1.5);
}
.need-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 12px 16px 0 -4px var(--card-color, var(--blue-500));
}
.need-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--card-color, var(--blue-500));
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.need-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-900);
}
.need-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4e70;
}

/* ============================================================
   PULL QUOTE / SUMMARY
   ============================================================ */
.summary {
  background: #fff;
  padding-bottom: 40px;
}
.summary-quote {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 640px) {
  .summary-quote { padding: 42px 24px; }
}
.summary-quote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 30px;
  font-size: 240px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.summary-quote p {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.5;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto;
}
.summary-quote .accent {
  color: var(--yellow);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(150deg, var(--blue-700), var(--pink-deep) 130%);
  color: #fff;
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 34px;
}
.final-cta .btn-primary {
  font-size: 17px;
  padding: 18px 38px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
}

/* ============================================================
   MISC / UTIL
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot.active { opacity: 1; }
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px -8px rgba(10, 20, 64, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.35s var(--ease-out);
  z-index: 90;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--red);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
