/* ════════════════════════════════════════════
   PARKABLE — PORTAL WEB (versión final)
   Paleta corporativa Parkable + estética eco
════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

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

:root {
  /* ── Paleta Parkable (primary brand) ── */
  --pk-blue:        #1A6E9E;   /* azul corporativo principal */
  --pk-blue-dark:   #0F4C75;   /* azul oscuro */
  --pk-blue-light:  #3498DB;   /* azul claro hover */
  --pk-green:       #7CB342;   /* verde eco */
  --pk-green-dark:  #558B2F;
  --pk-green-light: #AED581;
  --pk-teal:        #26A69A;   /* teal intermedio */

  /* ── Superficie Mercury (dark mode) ── */
  --bg-deep:    #171721;   /* fondo más profundo */
  --bg-main:    #1e1e2a;   /* fondo principal */
  --bg-card:    #272735;   /* cards / superficies */
  --border:     #70707d;   /* bordes y divisores */

  /* ── Texto ── */
  --text-primary:   #ededf3;
  --text-secondary: #c3c3cc;
  --text-muted:     #70707d;
  --text-white:     #ffffff;

  /* ── Tipografía ── */
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, sans-serif;
  --font-body:    'Plus Jakarta Sans', ui-sans-serif, sans-serif;

  /* ── Espaciado ── */
  --sp-4:4px; --sp-8:8px; --sp-12:12px; --sp-16:16px;
  --sp-20:20px; --sp-24:24px; --sp-32:32px; --sp-40:40px;
  --sp-56:56px; --sp-72:72px; --sp-80:80px; --sp-112:112px;

  /* ── Radios ── */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px;
  --r-xl: 20px; --r-pill: 40px;

  --max-w: 1200px;
  --nav-h: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILS ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-40); }
@media(max-width:768px){ .container{ padding: 0 var(--sp-20); } }

.green-text { color: var(--pk-green); }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pk-green);
  margin-bottom: var(--sp-12);
}
.section-label--white { color: var(--pk-green-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: var(--sp-16);
}
.section-title--white { color: #fff; }
.section-sub {
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary); line-height: 1.7;
  max-width: 580px;
}
.section-sub--white { color: rgba(255,255,255,.75); }
.section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto var(--sp-72);
}
.section-header .section-sub { margin: 0 auto; }

/* ─── botones ─── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-8);
  padding: 13px var(--sp-24); border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary {
  background: var(--pk-blue); color: #fff;
}
.btn--primary:hover {
  background: var(--pk-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,110,158,.4);
}
.btn--soft {
  background: rgba(124,179,66,.12);
  color: var(--pk-green-light);
  border: 1px solid rgba(124,179,66,.25);
}
.btn--soft:hover { background: rgba(124,179,66,.2); }
.btn--ghost {
  background: rgba(237,237,243,.06);
  color: var(--text-primary);
  border: 1px solid rgba(237,237,243,.12);
}
.btn--ghost:hover { background: rgba(237,237,243,.12); }
.btn--outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--text-primary); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ════ NAV ════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  transition: all .3s;
}
.nav.scrolled {
  background: rgba(23,23,33,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(112,112,125,.2);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--sp-40); height: 100%;
  display: flex; align-items: center; gap: var(--sp-32);
}
.nav__logo {
  display: flex; align-items: center; gap: var(--sp-8);
  text-decoration: none; flex-shrink: 0;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -.02em;
}
.nav__links {
  display: flex; list-style: none; gap: var(--sp-20);
  margin-left: var(--sp-12);
  align-items: center;
}
.nav__link {
  font-size: 14px; color: var(--text-secondary);
  text-decoration: none; transition: color .2s;
  white-space: nowrap; line-height: 1;
}
.nav__link:hover { color: var(--text-primary); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-12); margin-left: auto; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: var(--sp-8);
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: all .3s;
}
@media(max-width:960px){
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
}

/* ════ HERO ════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(26,110,158,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 90%, rgba(124,179,66,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(38,166,154,.08) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,179,66,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,179,66,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero__orb--blue {
  width: 480px; height: 480px;
  background: rgba(26,110,158,.2);
  right: -80px; top: 40%; transform: translateY(-50%);
  animation: orb 9s ease-in-out infinite;
}
.hero__orb--green {
  width: 320px; height: 320px;
  background: rgba(124,179,66,.15);
  left: 5%; bottom: 5%;
  animation: orb 11s ease-in-out infinite reverse;
}
.hero__orb--teal {
  width: 240px; height: 240px;
  background: rgba(38,166,154,.12);
  right: 40%; top: 10%;
  animation: orb 13s ease-in-out infinite;
}
@keyframes orb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.06); }
}

/* Hero content */
.hero__content {
  position: relative; z-index: 2;
  padding: var(--sp-80) var(--sp-32) var(--sp-80) var(--sp-80);
  max-width: 600px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-8);
  padding: 7px 16px; border-radius: var(--r-pill);
  background: rgba(124,179,66,.1); border: 1px solid rgba(124,179,66,.25);
  font-size: 13px; font-weight: 500; color: var(--pk-green-light);
  margin-bottom: var(--sp-32);
  animation: fade-up .6s ease both;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.025em; color: var(--text-primary);
  margin-bottom: var(--sp-24);
  animation: fade-up .6s .1s ease both;
}
.hero__headline-green { color: var(--pk-green); display: inline-block; }
.hero__sub {
  font-size: 18px; font-weight: 300; color: var(--text-secondary);
  line-height: 1.65; max-width: 460px;
  margin-bottom: var(--sp-40);
  animation: fade-up .6s .2s ease both;
}
.hero__cta {
  display: flex; align-items: center; gap: var(--sp-16); flex-wrap: wrap;
  margin-bottom: var(--sp-56);
  animation: fade-up .6s .3s ease both;
}
.hero__stats {
  display: flex; align-items: center; gap: var(--sp-24);
  animation: fade-up .6s .4s ease both;
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; color: var(--pk-green);
}
.hero__stat-label { font-size: 12px; color: var(--text-muted); }
.hero__stat-divider {
  width: 1px; height: 38px;
  background: rgba(112,112,125,.3);
}

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

/* Phone mockup */
.hero__visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  padding: var(--sp-80) var(--sp-40);
  animation: fade-up .8s .25s ease both;
}
.phone-wrap { position: relative; }
.phone {
  width: 270px;
  background: var(--bg-deep);
  border-radius: 44px;
  border: 1.5px solid rgba(112,112,125,.3);
  padding: 14px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.phone__notch {
  width: 70px; height: 6px;
  background: var(--bg-card);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone__screen {
  background: var(--bg-main);
  border-radius: 32px; overflow: hidden;
  aspect-ratio: 9/17;
}
.phone__shadow {
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 40px;
  background: rgba(26,110,158,.3);
  filter: blur(30px);
  border-radius: 50%;
}
.phone__glow {
  position: absolute;
  inset: -2px; border-radius: 46px;
  background: linear-gradient(135deg, rgba(26,110,158,.3), rgba(124,179,66,.2));
  z-index: -1; filter: blur(16px);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity:.5; } 50% { opacity:.9; }
}

/* App UI inside phone */
.app-ui { padding: 14px; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.app-ui__bar {
  display: flex; justify-content: space-between; align-items: center;
}
.app-ui__loc { font-size: 11px; color: var(--text-secondary); }
.app-ui__live {
  font-size: 9px; font-weight: 700;
  color: var(--pk-green); letter-spacing: .05em;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.app-ui__map {
  flex: 1; background: var(--bg-card);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
}
.map-roads {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
}
.app-pin {
  position: absolute;
  background: var(--bg-card); border: 1.5px solid var(--border);
  color: var(--text-secondary); font-size: 8px; font-weight: 700;
  padding: 3px 6px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.app-pin--eco {
  background: rgba(124,179,66,.12);
  border-color: rgba(124,179,66,.4);
  color: var(--pk-green-light);
}
.app-pin--hot {
  background: var(--pk-blue); border-color: var(--pk-blue);
  color: white; font-size: 8px;
  box-shadow: 0 0 10px rgba(26,110,158,.6);
}
.app-pin__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(26,110,158,.5);
  animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform:scale(1); opacity:.8; }
  100% { transform:scale(2.2); opacity:0; }
}
.app-me {
  position: absolute; bottom: 15%; left: 47%;
  width: 20px; height: 20px;
  background: var(--pk-green);
  border-radius: 50%; border: 2px solid white;
  font-size: 7px; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center;
}
.app-ui__card {
  background: var(--bg-card); border-radius: var(--r-lg);
  padding: 10px; display: flex; gap: 8px;
}
.app-ui__photo {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-teal));
  flex-shrink: 0;
}
.app-ui__info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.app-ui__name { font-size: 10px; font-weight: 700; color: var(--text-primary); }
.app-ui__dist { font-size: 9px; color: var(--pk-green); }
.app-ui__row { display: flex; justify-content: space-between; align-items: center; }
.app-ui__price {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800; color: var(--pk-blue);
}
.app-ui__price small { font-size: 8px; font-weight: 400; color: var(--text-muted); }
.app-ui__btn {
  background: var(--pk-blue); color: white;
  border: none; border-radius: var(--r-pill);
  font-size: 9px; font-weight: 700; padding: 4px 10px;
  cursor: pointer; font-family: var(--font-body);
}

/* Hero scroll hint */
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-8); z-index: 2;
}
.hero__scroll span { font-size: 11px; color: var(--text-muted); letter-spacing: .06em; }
.hero__scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--pk-green), transparent);
  animation: scroll-bar 2s ease-in-out infinite;
}
@keyframes scroll-bar {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

@media(max-width:960px){
  .hero { grid-template-columns: 1fr; min-height:auto; padding-bottom:var(--sp-40); }
  .hero__content { padding: var(--sp-80) var(--sp-20) var(--sp-32); max-width:100%; }
  .hero__visual { padding: 0 var(--sp-20) var(--sp-56); }
  .hero__scroll { display: none; }
}

/* ════ TRUST BAR ════ */
.trust-bar {
  border-top: 1px solid rgba(112,112,125,.15);
  border-bottom: 1px solid rgba(112,112,125,.15);
  padding: var(--sp-20) 0;
  overflow: hidden;
}
.trust-bar__track {
  display: flex; gap: var(--sp-56);
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-8);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  white-space: nowrap;
  transition: color .2s;
}
.trust-item:hover { color: var(--text-secondary); }
.trust-item span { font-size: 16px; }

/* ════ WHY ════ */
.why { padding: var(--sp-112) 0; background: var(--bg-deep); }
.why__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-80); align-items: center;
}
.why__text .section-title { text-align: left; }
.why__text .section-sub { max-width: 100%; }
.why__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}
.why__card {
  padding: var(--sp-24);
  border-radius: var(--r-lg);
  border: 1px solid rgba(112,112,125,.15);
  display: flex; flex-direction: column; gap: var(--sp-8);
}
.why__card--bad { background: rgba(231,76,60,.06); border-color: rgba(231,76,60,.15); }
.why__card--good { background: rgba(124,179,66,.06); border-color: rgba(124,179,66,.2); }
.why__card-emoji { font-size: 28px; }
.why__card-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800; line-height: 1;
}
.why__card--bad .why__card-num { color: #e87070; }
.why__card--good .why__card-num { color: var(--pk-green); }
.why__card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media(max-width:900px){
  .why__grid { grid-template-columns: 1fr; gap: var(--sp-56); }
}

/* ════ HOW ════ */
.how { padding: var(--sp-112) 0; background: var(--bg-main); }
.how__tabs {
  display: flex; gap: var(--sp-8); justify-content: center;
  margin-bottom: var(--sp-56); flex-wrap: wrap;
}
.how__tab {
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--bg-card); border: 1px solid rgba(112,112,125,.2);
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .2s;
}
.how__tab:hover { border-color: var(--pk-blue); color: var(--text-primary); }
.how__tab--active {
  background: rgba(26,110,158,.15);
  border-color: rgba(26,110,158,.4);
  color: var(--pk-blue-light);
}
.how__panels { max-width: 660px; margin: 0 auto; }
.how__panel { display: none; }
.how__panel--active { display: block; }
.how__steps {
  display: flex; flex-direction: column; gap: 0;
}
.how__step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: var(--sp-24); padding-bottom: var(--sp-48);
  position: relative;
}
.how__step:last-child { padding-bottom: 0; }
.how__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px; top: 52px; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, rgba(26,110,158,.4), transparent);
}
.how__step-num {
  width: 48px; height: 48px;
  background: rgba(26,110,158,.12);
  border: 1px solid rgba(26,110,158,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800; color: var(--pk-blue-light);
  flex-shrink: 0; position: relative; z-index: 1;
}
.how__step-body { padding-top: 10px; }
.how__step-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--sp-8); letter-spacing: -.02em;
}
.how__step-body p { font-size: 15px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }

/* ════ FEATURES ════ */
.features { padding: var(--sp-112) 0; background: var(--bg-deep); }
.features__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
}
.feat {
  background: var(--bg-main);
  border: 1px solid rgba(112,112,125,.15);
  border-radius: var(--r-sm);
  padding: var(--sp-32);
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.feat::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,110,158,.04), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat:hover::after { opacity: 1; }
.feat:hover { border-color: rgba(26,110,158,.3); }
.feat__icon { font-size: 28px; margin-bottom: var(--sp-16); }
.feat h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--sp-8); letter-spacing: -.02em;
}
.feat p { font-size: 14px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }
.feat--green {
  background: rgba(124,179,66,.06);
  border-color: rgba(124,179,66,.2);
}
.feat--green:hover { border-color: rgba(124,179,66,.5); }
.feat--green::after { background: linear-gradient(135deg, rgba(124,179,66,.06), transparent); }
.feat--blue {
  background: rgba(26,110,158,.06);
  border-color: rgba(26,110,158,.2);
}
.feat__eco-bar {
  margin-top: var(--sp-16);
  display: flex; flex-direction: column; gap: var(--sp-8);
}
.feat__eco-bar > span { font-size: 11px; color: var(--pk-green); font-weight: 600; }
.feat__eco-bar::before {
  content: '';
  display: block; height: 4px;
  background: rgba(124,179,66,.2); border-radius: 2px;
  position: relative;
}
.feat__eco-fill {
  height: 4px; width: 65%; background: var(--pk-green);
  border-radius: 2px; margin-top: -14px;
  animation: eco-grow 2s 1s ease both;
}
@keyframes eco-grow { from{width:0} }
.feat__flags { display: flex; gap: var(--sp-8); margin-bottom: var(--sp-16); }
.feat__flag {
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid rgba(112,112,125,.2);
}
.feat__flag--on {
  background: rgba(26,110,158,.15);
  color: var(--pk-blue-light);
  border-color: rgba(26,110,158,.3);
}

/* grid layout adjustments */
.features__grid .feat:nth-child(1) { grid-column: span 2; }
.features__grid .feat:nth-child(8) { grid-column: span 2; }

@media(max-width:1024px){
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .features__grid .feat:nth-child(1) { grid-column: span 2; }
  .features__grid .feat:nth-child(8) { grid-column: span 2; }
}
@media(max-width:600px){
  .features__grid { grid-template-columns: 1fr; }
  .features__grid .feat { grid-column: span 1 !important; }
}

/* ════ IMPACT ════ */
.impact {
  padding: var(--sp-112) 0;
  background: linear-gradient(160deg, #0d1a0d 0%, #111a11 40%, var(--bg-deep) 100%);
  position: relative; overflow: hidden;
}
.impact__bg { position: absolute; inset: 0; pointer-events: none; }
.impact__foliage {
  position: absolute; top: -20px; left: 0; right: 0;
  font-size: 40px; letter-spacing: 20px; opacity: .07;
  user-select: none; white-space: nowrap; overflow: hidden;
  animation: foliage-drift 20s linear infinite;
}
@keyframes foliage-drift {
  from { transform: translateX(-10%); }
  to   { transform: translateX(10%); }
}
.impact__grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: var(--sp-20);
}
.impact__card {
  background: rgba(124,179,66,.05);
  border: 1px solid rgba(124,179,66,.15);
  border-radius: var(--r-lg);
  padding: var(--sp-32);
  text-align: center;
  transition: border-color .25s;
}
.impact__card:hover { border-color: rgba(124,179,66,.4); }
.impact__card--big {
  background: rgba(124,179,66,.1);
  border-color: rgba(124,179,66,.3);
}
.impact__card-icon { font-size: 36px; margin-bottom: var(--sp-16); }
.impact__card-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--pk-green); margin-bottom: var(--sp-12);
  letter-spacing: -.02em;
}
.impact__card--big .impact__card-num { font-size: 44px; }
.impact__card-label {
  font-size: 14px; font-weight: 500; color: var(--text-primary);
  margin-bottom: var(--sp-8); line-height: 1.4;
}
.impact__card-note { font-size: 12px; color: var(--text-muted); font-style: italic; }
.impact__mission {
  display: flex; align-items: center; gap: var(--sp-20);
  margin-top: var(--sp-56);
  padding: var(--sp-24) var(--sp-32);
  background: rgba(124,179,66,.08);
  border: 1px solid rgba(124,179,66,.2);
  border-radius: var(--r-lg);
}
.impact__mission-icon { font-size: 28px; flex-shrink: 0; }
.impact__mission p { font-size: 15px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }
.impact__mission strong { color: var(--text-primary); font-weight: 700; }

@media(max-width:900px){
  .impact__grid { grid-template-columns: 1fr; }
  .impact__card--big { order: -1; }
}

/* ════ POINTS ════ */
.points { padding: var(--sp-112) 0; background: var(--bg-main); }
.points__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-56); align-items: start;
}
.points__subtitle {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--sp-24); letter-spacing: -.02em;
}
.earn-item {
  display: flex; align-items: center; gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-20);
  background: var(--bg-card);
  border: 1px solid rgba(112,112,125,.15);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-12);
  transition: border-color .2s;
}
.earn-item:hover { border-color: rgba(26,110,158,.3); }
.earn-item__icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(112,112,125,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.earn-item__icon--primary { background: rgba(26,110,158,.15); }
.earn-item__text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.earn-item__text strong { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.earn-item__text span  { font-size: 12px; color: var(--text-muted); }
.earn-item__pts {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  color: var(--pk-green-light);
  background: rgba(124,179,66,.1);
  padding: 4px 10px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.earn-item__pts--big { font-size: 16px; color: var(--pk-green); }
.catalog-grid { display: flex; flex-direction: column; gap: var(--sp-12); }
.catalog-item {
  display: flex; align-items: center; gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-20);
  background: var(--bg-card);
  border: 1px solid rgba(112,112,125,.15);
  border-radius: var(--r-sm);
  transition: border-color .2s;
}
.catalog-item:hover { border-color: rgba(26,110,158,.3); }
.catalog-item--featured {
  background: rgba(26,110,158,.08);
  border-color: rgba(26,110,158,.25);
}
.catalog-item > span:first-child { font-size: 22px; }
.catalog-item > div { flex: 1; }
.catalog-item > div strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.catalog-item > div span  { font-size: 12px; color: var(--text-muted); }
.catalog-pts {
  font-size: 12px; font-weight: 700; color: var(--pk-blue-light);
  background: rgba(26,110,158,.12);
  padding: 3px 10px; border-radius: var(--r-pill);
  white-space: nowrap;
}

@media(max-width:900px){
  .points__layout { grid-template-columns: 1fr; }
}

/* ════ TESTIMONIALS ════ */
.testis { padding: var(--sp-112) 0; background: var(--bg-deep); }
.testis__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: var(--sp-20);
}
.testi {
  padding: var(--sp-32);
  background: var(--bg-main);
  border: 1px solid rgba(112,112,125,.15);
  border-radius: var(--r-sm);
  display: flex; flex-direction: column; gap: var(--sp-20);
  transition: border-color .25s;
}
.testi:hover { border-color: rgba(26,110,158,.3); }
.testi--featured {
  background: rgba(26,110,158,.08);
  border-color: rgba(26,110,158,.25);
}
.testi__stars { color: var(--pk-green); font-size: 14px; letter-spacing: 2px; }
.testi p { font-size: 15px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; font-style: italic; flex: 1; }
.testi__author { display: flex; align-items: center; gap: var(--sp-12); }
.testi__avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testi__author strong { display: block; font-size: 14px; color: var(--text-primary); }
.testi__author span  { font-size: 12px; color: var(--text-muted); }

@media(max-width:900px){ .testis__grid { grid-template-columns:1fr; } }

/* ════ DOWNLOAD ════ */
.download {
  padding: var(--sp-112) 0;
  background: var(--bg-main);
  position: relative; overflow: hidden; text-align: center;
}
.download__bg { position: absolute; inset: 0; pointer-events: none; }
.download__glow--green {
  position: absolute;
  left: 30%; top: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,179,66,.15) 0%, transparent 70%);
  filter: blur(50px);
}
.download__glow--blue {
  position: absolute;
  right: 20%; top: 50%; transform: translate(50%,-50%);
  width: 400px; height: 350px;
  background: radial-gradient(ellipse, rgba(26,110,158,.18) 0%, transparent 70%);
  filter: blur(50px);
}
.download__inner { position: relative; z-index: 1; }
.download__deco { font-size: 48px; margin-bottom: var(--sp-24); }
.download__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; color: var(--text-primary);
  margin-bottom: var(--sp-20);
}
.download__sub {
  font-size: 18px; font-weight: 300; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto var(--sp-40); line-height: 1.6;
}
.download__btns {
  display: flex; gap: var(--sp-16); justify-content: center;
  flex-wrap: wrap; margin-bottom: var(--sp-32);
}
.download__store {
  display: inline-flex; align-items: center; gap: var(--sp-12);
  padding: 14px 24px; border-radius: var(--r-pill);
  background: var(--pk-blue); color: white;
  text-decoration: none; font-family: var(--font-body);
  transition: all .2s;
}
.download__store:hover {
  background: var(--pk-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,110,158,.4);
}
.download__store div { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.download__store div span { font-size: 11px; opacity: .75; }
.download__store div strong { font-size: 16px; font-weight: 700; }
.download__badges {
  display: flex; gap: var(--sp-16); justify-content: center; flex-wrap: wrap;
}
.download__badges span {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid rgba(112,112,125,.2);
  padding: 5px 14px; border-radius: var(--r-pill);
}

/* ════ FOOTER ════ */
.footer {
  border-top: 1px solid rgba(112,112,125,.12);
  padding: var(--sp-72) 0 var(--sp-40);
  background: var(--bg-deep);
}
.footer__top {
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--sp-80); margin-bottom: var(--sp-56); align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-12); }
.footer__tagline { font-size: 13px; color: var(--text-muted); font-style: italic; }
.footer__eco { font-size: 13px; color: var(--pk-green-light); }
.footer__cols { display: flex; gap: var(--sp-56); }
.footer__col { display: flex; flex-direction: column; gap: var(--sp-12); }
.footer__col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-primary); margin-bottom: var(--sp-4);
}
.footer__col a {
  font-size: 14px; color: var(--text-secondary);
  text-decoration: none; transition: color .2s;
}
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid rgba(112,112,125,.1);
  padding-top: var(--sp-24);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-8);
}
.footer__bottom p { font-size: 12px; color: var(--text-muted); }
.footer__green { color: var(--pk-green) !important; }

@media(max-width:768px){
  .footer__top { grid-template-columns:1fr; gap: var(--sp-40); }
  .footer__cols { flex-wrap: wrap; gap: var(--sp-32); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ════ REVEAL ════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
