 
/* ================== RESET & BASE ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #1E293B;
  background: #F8FAFC;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ================== COLOR VARS ================== */
:root {
  --navy: #0F172A;
  --navy-2: #1E293B;
  --cyan: #06B6D4;
  --cyan-dark: #0891B2;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --bg: #F8FAFC;
  --bg-alt: #EFF6FF;
  --white: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --success: #10B981;
  --danger: #EF4444;
}

/* ================== LAYOUT ================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ================== HEADER ================== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar strong { color: var(--amber); }

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.96);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo span { color: var(--cyan); }
.header-cta {
  background: var(--cyan);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.header-cta:hover { background: var(--cyan-dark); transform: translateY(-1px); }
@media (max-width: 480px) {
  .header-cta { padding: 9px 14px; font-size: 13px; }
  .logo { font-size: 19px; }
}

/* ================== HERO ================== */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0891B2 100%);
  color: var(--white);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.35);
  color: #67E8F9;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 .highlight {
  color: var(--cyan);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}
.hero-sub {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 560px;
}
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }
.hero-checks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #E2E8F0;
}
.hero-checks li::before {
  content: '✓';
  color: #10B981;
  font-weight: 800;
  background: rgba(16,185,129,0.15);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 900px) { .hero-checks li { justify-content: flex-start; text-align: left; } .hero-checks { max-width: 400px; margin-left: auto; margin-right: auto; } }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--white);
  padding: 17px 38px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(245,158,11,0.35);
  transition: all 0.2s;
  text-transform: none;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,158,11,0.45); }
.cta-btn.large { padding: 20px 46px; font-size: 19px; }
.cta-note { color: #94A3B8; font-size: 13px; margin-top: 12px; }
.hero-image { position: relative; }
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-tag {
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(245,158,11,0.4);
  transform: rotate(6deg);
}
@media (max-width: 900px) { .hero-tag { right: 20px; } }

/* ================== SOCIAL PROOF STRIP ================== */
.proof-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}
.proof-item .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.proof-item .lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================== PROBLEM SECTION ================== */
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 900px) { .pains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pains-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,23,42,0.08); border-color: var(--cyan); }
.pain-icon {
  font-size: 34px;
  margin-bottom: 12px;
  display: block;
}
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================== PRODUCT INTRO ================== */
.intro {
  background: var(--bg-alt);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .intro-inner { grid-template-columns: 1fr; gap: 40px; } }
.intro-image img { border-radius: 14px; box-shadow: 0 20px 45px rgba(15,23,42,0.12); }
.intro h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.intro h2 .highlight { color: var(--cyan); }
.intro p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-list {
  list-style: none;
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
}
.intro-list li::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ================== HOW IT WORKS ================== */
.how {
  background: var(--white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s;
}
.step:hover { transform: translateY(-4px); border-color: var(--cyan); }
.step-num {
  width: 44px; height: 44px;
  background: var(--cyan);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 15px rgba(6,182,212,0.35);
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================== FEATURES ================== */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.1);
  border-color: var(--cyan);
}
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(6,182,212,0.3);
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================== TESTIMONIALS ================== */
.tests {
  background: var(--navy);
  color: var(--white);
}
.tests .section-title { color: var(--white); }
.tests .section-sub { color: #CBD5E1; }
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.test-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.test-text {
  font-size: 14.5px;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.test-name {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  display: block;
}
.test-loc {
  font-size: 12px;
  color: #94A3B8;
}

/* ================== BONUSES ================== */
.bonuses { background: var(--bg-alt); }
.bonus-badge-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.bonus-badge-wrap img {
  max-width: 180px;
  margin: 0 auto;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.bonus-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15,23,42,0.12);
  border-color: var(--amber);
}
.bonus-img-wrap {
  background: linear-gradient(135deg, #F1F5F9 0%, #E0F2FE 100%);
  padding: 30px;
  text-align: center;
}
.bonus-img-wrap img {
  max-height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(15,23,42,0.15));
}
.bonus-body { padding: 24px 22px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.bonus-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
  letter-spacing: 0.3px;
}
.bonus-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.bonus-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.bonus-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.bonus-value-strike {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 15px;
}
.bonus-value-now {
  color: var(--success);
  font-weight: 700;
  font-size: 15px;
}
.bonus-total {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}
.bonus-total strong { color: var(--success); font-size: 22px; }

/* ================== PRICING ================== */
.pricing { background: var(--white); }
.pricing-card {
  max-width: 620px;
  margin: 40px auto 0;
  background: var(--white);
  border: 3px solid var(--cyan);
  border-radius: 20px;
  padding: 44px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(6,182,212,0.15);
}
.pricing-flag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(245,158,11,0.35);
}
.pricing-card h2 {
  font-size: 26px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.pricing-card .sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 26px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.price-strike {
  color: var(--text-muted);
  font-size: 24px;
  text-decoration: line-through;
  font-weight: 600;
}
.price-main {
  font-size: 68px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
}
.price-main .dollar { font-size: 36px; vertical-align: top; }
.price-terms {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.price-terms strong { color: var(--success); }
.price-includes {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}
.price-includes h4 {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.price-includes ul { list-style: none; }
.price-includes li {
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-includes li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-cards-img {
  max-width: 240px;
  margin: 18px auto 0;
  opacity: 0.75;
}

/* ================== GUARANTEE ================== */
.guarantee {
  background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
}
.guar-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}
@media (max-width: 700px) { .guar-inner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; } }
.guar-badge {
  width: 170px; height: 170px;
  background: radial-gradient(circle at 30% 30%, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 15px 35px rgba(16,185,129,0.4);
  position: relative;
  border: 4px solid var(--white);
}
.guar-badge::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed #10B981;
  border-radius: 50%;
  opacity: 0.4;
}
.guar-badge .n { font-size: 44px; font-weight: 900; line-height: 1; }
.guar-badge .d { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.guar-badge .g { font-size: 15px; font-weight: 700; margin-top: 6px; letter-spacing: 0.5px; }
@media (max-width: 700px) { .guar-badge { margin: 0 auto; } }
.guar-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.guar-content p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}
.guar-content p strong { color: var(--navy); }

/* ================== FAQ ================== */
.faq { background: var(--white); }
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--cyan); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
}
.faq-q .icon {
  width: 28px; height: 28px;
  background: var(--bg-alt);
  color: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-q .icon { background: var(--cyan); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 22px; }

/* ================== FINAL CTA ================== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1E293B 60%, var(--cyan-dark) 100%);
  color: var(--white);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.final-cta h2 .highlight { color: var(--cyan); }
.final-cta p {
  font-size: 17px;
  color: #CBD5E1;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.final-cta-price {
  font-size: 15px;
  color: #94A3B8;
  margin-top: 16px;
}
.final-cta-price strong { color: var(--white); font-size: 17px; }

/* ================== FOOTER ================== */
.footer {
  background: #0A0F1C;
  color: #94A3B8;
  padding: 50px 0 30px;
  font-size: 13.5px;
  line-height: 1.7;
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.footer-logo span { color: var(--cyan); }
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
  text-align: left;
  color: #CBD5E1;
}
.footer-disclaimer strong { color: var(--white); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a { color: #CBD5E1; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: #64748B;
}
.footer-bottom p { margin-bottom: 8px; }

/* ================== UTIL ================== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
 
