/* ===========================
   TOKENS & RESETS
=========================== */
:root {
  --bg: #060a06;
  --surface: rgba(12, 20, 12, 0.6);
  --text: #f0faf0;
  --text-muted: #7a9b7a;
  --green-1: #22c55e;   /* neon green */
  --green-2: #16a34a;   /* mid green */
  --green-3: #15803d;   /* deep green */
  --teal:    #2dd4bf;   /* teal accent */
  --grad: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #2dd4bf 100%);
  --grad-glow: linear-gradient(135deg, rgba(34,197,94,.8), rgba(45,212,191,.8));
  --border: rgba(34, 197, 94, 0.12);
  --border-bright: rgba(34, 197, 94, 0.35);
  --font-h: 'Be Vietnam Pro', sans-serif;
  --font-b: 'Inter', sans-serif;
  --max: 1140px;
  --r: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

/* ===========================
   BACKGROUND EFFECTS
=========================== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 80%);
}

.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
  z-index: 0;
  transition: transform 1.5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.orb-1 {
  width: 700px; height: 500px;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 70%);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 10%; right: -100px;
  background: radial-gradient(circle, rgba(45,212,191,0.12) 0%, transparent 70%);
}
.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: -80px;
  background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%);
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative; z-index: 2;
}

/* ===========================
   HEADER / NAVBAR
=========================== */
.header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(6, 10, 6, 0.8);
}

.navbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
}

.brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.5px;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(34,197,94,.4);
}
.brand-mark svg { color: #fff; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green-1); }

.nav-cta { display: flex; gap: .75rem; align-items: center; }

.btn-nav-ghost {
  font-family: var(--font-b); font-weight: 500; font-size: .9rem;
  color: var(--text-muted); padding: .5rem 1rem; border-radius: 99px;
  transition: color .2s;
}
.btn-nav-ghost:hover { color: var(--text); }

.btn-nav-solid {
  font-family: var(--font-b); font-weight: 600; font-size: .9rem;
  background: var(--grad); color: #fff;
  padding: .55rem 1.25rem; border-radius: 99px;
  box-shadow: 0 4px 15px rgba(34,197,94,.3);
  transition: all .3s;
}
.btn-nav-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,.5);
}

/* ===========================
   HERO
=========================== */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }

.hero-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 500; color: var(--green-1);
  background: rgba(34,197,94,.06);
  border: 1px solid var(--border-bright);
  padding: .35rem 1.1rem; border-radius: 99px;
  margin-bottom: 2.25rem;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-1);
  box-shadow: 0 0 8px var(--green-1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.h1-gradient {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--green-1));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--text-muted); max-width: 660px;
  margin-bottom: 2.5rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-h); font-weight: 700; font-size: 1.1rem;
  color: #fff; background: var(--grad);
  padding: 1rem 2.5rem; border-radius: 99px;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(34,197,94,.55);
}
.btn-primary.btn-xl {
  font-size: 1.2rem; padding: 1.2rem 3rem;
}

.btn-ghost {
  font-family: var(--font-b); font-weight: 500; font-size: 1rem;
  color: var(--text-muted);
  transition: color .3s;
}
.btn-ghost:hover { color: var(--green-1); }

.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1rem;
}

.microcopy {
  font-size: .85rem; color: var(--text-muted); margin-bottom: 2.5rem;
}

/* COUNTDOWN TIMER */
.countdown-wrap {
  display: flex; align-items: flex-start; justify-content: center; gap: 1rem;
  margin-bottom: 3rem;
  background: rgba(34,197,94,0.04); border: 1px solid var(--border);
  padding: 1.25rem 2.5rem; border-radius: 20px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.cd-item { text-align: center; display: flex; flex-direction: column; min-width: 60px; }
.cd-number {
  font-family: var(--font-h); font-weight: 800; font-size: 2.2rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.cd-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; margin-top: .4rem; letter-spacing: 1px; }
.cd-sep {
  font-size: 1.8rem; font-weight: 700; color: var(--border-bright); line-height: 1.2;
}

/* SOCIAL PROOF */
.social-proof {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.avatars { display: flex; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.av-count {
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  background: rgba(34,197,94,.15); border: 1px solid var(--border-bright);
  color: var(--green-1); font-family: var(--font-h);
}
.sp-text { font-size: .9rem; color: var(--text-muted); }
.sp-text strong { color: var(--text); }

/* METRICS STRIP */
.metrics-strip {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(34,197,94,.04);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 1.5rem 3rem;
  max-width: 800px; width: 100%;
}
.metric { text-align: center; padding: 0 2.5rem; }
.metric-num {
  display: block; font-family: var(--font-h); font-weight: 800;
  font-size: 2.2rem; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.metric-label { display: block; font-size: .8rem; color: var(--text-muted); margin-top: .3rem; }
.metric-sep { width: 1px; height: 50px; background: var(--border); }

/* ===========================
   SECTION COMMONS
=========================== */
.sec-header { text-align: center; margin-bottom: 4rem; }
.sec-label {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-1);
  background: rgba(34,197,94,.07); border: 1px solid var(--border-bright);
  padding: .3rem 1rem; border-radius: 99px; margin-bottom: 1.2rem;
}
.sec-h2 {
  font-family: var(--font-h); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.h2-highlight {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ===========================
   FEATURES
=========================== */
.features { padding: 7rem 0; }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 130px;
  background: linear-gradient(to bottom, rgba(34,197,94,0.07), transparent);
  pointer-events: none;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  background: rgba(12, 22, 12, 0.8);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(34,197,94,.15);
}

.feat-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: flex-start;
}

.feat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(34,197,94,.1);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-1); margin-bottom: 1.75rem;
}

.feat-card h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  margin-bottom: .85rem; line-height: 1.25;
}
.feat-card p { color: var(--text-muted); font-size: .97rem; line-height: 1.65; }

.feat-list {
  list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .65rem;
}
.feat-list li {
  font-size: .95rem; color: var(--text); display: flex; align-items: center; gap: .7rem;
}
.feat-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(34,197,94,.12); border-radius: 50%;
  color: var(--green-1); font-size: .75rem; font-weight: 700;
}

/* ===========================
   PROCESS
=========================== */
.process { padding: 5rem 0 7rem; }

.process-grid {
  display: flex; align-items: flex-start; gap: .5rem; margin-top: 1rem;
}
.step {
  flex: 1; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: all .3s;
}
.step:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.step-arrow {
  font-size: 1.5rem; color: var(--border-bright);
  padding-top: 2rem; flex-shrink: 0; align-self: flex-start;
  margin-top: 2rem; padding: 0 .25rem;
}
.step-number {
  font-family: var(--font-h); font-size: 2.8rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: .75rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  display: inline-block;
}
.step h4 { font-family: var(--font-h); font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ===========================
   BENEFITS
=========================== */
.benefits { padding: 5rem 0 7rem; }

.benefit-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 3rem 2.5rem;
  text-align: center; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.benefit-card.benefit-green {
  background: linear-gradient(150deg, rgba(34,197,94,.1) 0%, rgba(45,212,191,.05) 100%);
  border-color: rgba(34,197,94,.25);
}
.big-num {
  font-family: var(--font-h); font-size: 4rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 1rem;
}
.benefit-card h4 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.benefit-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }

/* ===========================
   FINAL CTA
=========================== */
.cta-section {
  padding: 9rem 0;
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(34,197,94,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-h2 {
  font-family: var(--font-h); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.cta-sub {
  color: var(--text-muted); font-size: 1.2rem;
  max-width: 600px; margin: 0 auto 3rem; line-height: 1.65;
}
.cta-microcopy {
  margin-top: 1.5rem; font-size: .9rem; color: var(--text-muted); font-style: italic;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUpAnim .75s forwards ease-out;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

@keyframes fadeUpAnim { to { opacity: 1; transform: translateY(0); } }

.scroll-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.scroll-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: auto; grid-row: auto; }
  .benefit-cards { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; }
  .step-arrow { display: none; }
  .nav-links { display: none; }
  .metrics-strip { flex-wrap: wrap; padding: 1rem; gap: 1rem; }
  .metric-sep { display: none; }
  .metric { padding: 0 1rem; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 0; }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
  .hero-sub { font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.8rem; padding: 0 0.5rem; }
  .hero-chip { font-size: 0.8rem; line-height: 1.4; padding: 0.5rem 1rem; margin-bottom: 1.5rem; height: auto; white-space: normal; text-align: left; }
  .countdown-wrap { padding: 1rem 0.5rem; gap: 0.3rem; margin-bottom: 2rem; width: 100%; justify-content: space-evenly; }
  .cd-number { font-size: 1.8rem; }
  .cd-sep { font-size: 1.4rem; padding-top: 0.2rem; }
  .cd-item { min-width: 50px; }
  .hero-actions { flex-direction: column; gap: 1rem; width: 100%; margin-bottom: 1.5rem; }
  .btn-primary { width: 100%; justify-content: center; padding: 1rem; font-size: 1.05rem; }
  .btn-ghost { padding: 0.5rem; }
  .social-proof { flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
  .sp-text { text-align: center; font-size: 0.85rem; }
  .sec-h2 { font-size: 1.8rem; line-height: 1.25; }
  .cta-h2 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 1rem; }
  .cta-sub { font-size: 0.95rem; margin-bottom: 2rem; padding: 0 0.5rem; }
  .btn-primary.btn-xl { width: 100%; font-size: 1.05rem; padding: 1rem; }
  .cta-section { padding: 5rem 0 6rem; }
  .benefits, .process, .features { padding: 4rem 0; }
  .sec-header { margin-bottom: 2.5rem; }
  .metrics-strip { padding: 1.5rem 1rem; flex-direction: column; gap: 1.5rem; }
  .metric { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; width: 100%; }
  .metric:last-child { border-bottom: none; padding-bottom: 0; }
  .metric-num { font-size: 2rem; }
  .nav-cta .btn-nav-ghost { display: none; }
  .modal-box { padding: 2rem 1.5rem; margin: 1rem; width: calc(100% - 2rem); }
}

/* ===========================
   MODAL
=========================== */
.hidden { display: none !important; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}

.modal-box {
  background: #0b1a0b;
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 500px; width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,197,94,0.1), 0 0 80px rgba(34,197,94,0.07);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer;
  transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.modal-badge {
  display: inline-block; font-size: .8rem; font-weight: 600;
  color: var(--green-1);
  background: rgba(34,197,94,.08); border: 1px solid var(--border-bright);
  padding: .3rem 1rem; border-radius: 99px; margin-bottom: 1.25rem;
  letter-spacing: .5px;
}
.modal-title {
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: .75rem; line-height: 1.2;
}
.modal-sub {
  color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 2rem;
}

/* FORM */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 500;
  color: var(--text); margin-bottom: .4rem;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-b); font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-1);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #0b1a0b; color: var(--text); }

.modal-submit {
  width: 100%; margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-h); font-weight: 700; font-size: 1.05rem;
  color: #fff; background: var(--grad);
  padding: .95rem 2rem; border-radius: 99px; border: none; cursor: pointer;
  box-shadow: 0 8px 25px rgba(34,197,94,.35);
  transition: all .3s;
}
.modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(34,197,94,.55);
}
.modal-submit:disabled { opacity: .7; cursor: not-allowed; }

.form-error {
  margin-top: .75rem; text-align: center;
  font-size: .85rem; color: #f87171;
}

.spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* SUCCESS */
.success-wrapper { text-align: center; padding: 1rem 0; }
.success-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(34,197,94,.12); border: 2px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  color: var(--green-1);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 5rem 0 2rem;
  background: rgba(6, 10, 6, 0.95);
  border-top: 1px solid var(--border);
  position: relative; z-index: 10;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-side { max-width: 380px; }
.footer-tagline {
  margin-top: 1.5rem; color: var(--text-muted); line-height: 1.6; font-size: .95rem;
}

.footer-info-side {
  display: flex; flex-direction: column; gap: 1.75rem;
}
.info-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.info-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(34,197,94,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-1); flex-shrink: 0;
}
.info-text {
  font-size: .95rem; line-height: 1.5; color: var(--text-muted);
}
.info-text strong { color: var(--text); font-weight: 600; display: inline-block; margin-bottom: .2rem; }
.info-link { transition: color .2s; }
.info-link:hover { color: var(--green-1); }

.footer-bottom {
  text-align: center; padding-top: 2rem; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: .85rem;
}

@media (max-width: 900px) {
  .footer-inner { flex-direction: column; gap: 3rem; }
}
