:root {
  --bg-deep:    #000000;
  --bg-section: #0d0d0d;
  --bg-card:    #161616;
  --bg-card-2:  #1c1c1c;
  --border:     #2a2a2a;
  --border-hi:  #3a3a3a;
  --accent:     #1A75FF;
  --accent-hi:  #4d94ff;
  --accent-yel: #FFD600;
  --accent-grn: #00D26A;
  --accent-red: #FF3B5C;
  --text:       #FFFFFF;
  --text-mid:   #B5BAC9;
  --text-low:   #6F7585;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Mukta", Roboto, Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
  background-image:
    radial-gradient(circle at 80% 0%, rgba(26, 117, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 0% 60%, rgba(255, 214, 0, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}
a { color: var(--accent-hi); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ================ HEADER ================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 22px rgba(26, 117, 255, 0.40);
}
.btn-primary:hover { background: var(--accent-hi); box-shadow: 0 8px 26px rgba(26, 117, 255, 0.55); }
.btn-yellow {
  background: var(--accent-yel);
  color: #000;
  box-shadow: 0 6px 22px rgba(255, 214, 0, 0.32);
}
.btn-yellow:hover { background: #FFE233; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-hi);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hi); }
.btn-large {
  padding: 18px 38px;
  font-size: 17px;
  border-radius: 12px;
}
.btn-block { width: 100%; }
.btn-icon { font-size: 19px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ================ HERO ================ */
.hero {
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26, 117, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 214, 0, 0.12);
  border: 1px solid rgba(255, 214, 0, 0.40);
  border-radius: 999px;
  color: var(--accent-yel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent-yel), #FFB800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-low);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--accent-grn); font-weight: 700; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 117, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-floating {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.hero-floating-1 {
  top: 16%; left: -20px;
}
.hero-floating-2 {
  bottom: 12%; right: -16px;
}
.hero-floating .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-floating .amt { color: var(--accent-yel); font-weight: 900; font-size: 16px; }

/* ================ BONUS BANNER ================ */
.bonus-banner {
  margin: 40px 0;
  padding: 36px 32px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(26, 117, 255, 0.18), rgba(255, 214, 0, 0.10)),
    var(--bg-section);
  border: 1px solid var(--border-hi);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: "";
  position: absolute;
  top: -40%; right: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-yel);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.bonus-title .amt { color: var(--accent-yel); }
.bonus-sub { font-size: 15px; color: var(--text-mid); }
.bonus-features {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mid);
}
.bonus-features span { display: flex; align-items: center; gap: 6px; }
.bonus-features .check { color: var(--accent-grn); }
@media (max-width: 768px) {
  .bonus-banner { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .bonus-features { justify-content: center; }
}

/* ================ SECTIONS ================ */
section { padding: 60px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--accent-hi);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.6px;
  line-height: 1.18;
  margin-bottom: 14px;
  max-width: 780px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 780px;
  margin-bottom: 38px;
}

/* ================ WHY (benefits) ================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-yel));
  opacity: 0;
  transition: opacity 0.2s;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.why-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.why-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; }

/* ================ STEPS (registration) ================ */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  list-style: none !important;
  padding: 0 !important;
  counter-reset: step;
}
.steps-list li {
  list-style: none !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px 22px 70px;
  position: relative;
  margin: 0 !important;
  counter-increment: step;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  top: 22px; left: 22px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(26, 117, 255, 0.4);
}
.step-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}
.step-desc strong { color: var(--accent-yel); }

/* ================ REG METHODS (4 cards) ================ */
.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.reg-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  transition: all 0.2s;
}
.reg-method:hover { border-color: var(--accent); transform: translateY(-3px); }
.reg-method-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.reg-method-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.reg-method-time {
  font-size: 12px;
  color: var(--accent-grn);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.reg-method-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ================ LOGIN SECTION ================ */
.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}
.login-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.login-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.login-card p { color: var(--text-mid); margin-bottom: 18px; font-size: 14.5px; }
.login-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px;
}
.login-list li {
  list-style: none !important;
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
  border-bottom: 1px dashed var(--border);
}
.login-list li:last-child { border-bottom: none; }
.login-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--accent-grn);
  font-weight: 800;
}
@media (max-width: 768px) {
  .login-grid { grid-template-columns: 1fr; }
}

/* ================ MIRROR SECTION ================ */
.mirror-section {
  background: linear-gradient(135deg, rgba(26, 117, 255, 0.10), rgba(255, 214, 0, 0.05));
  border: 1px solid var(--border-hi);
  border-radius: 24px;
  padding: 44px 36px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
.mirror-section::before {
  content: "🔓";
  position: absolute;
  top: -40px; right: -20px;
  font-size: 220px;
  opacity: 0.04;
  pointer-events: none;
}
.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.mirror-grid h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.mirror-grid p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.mirror-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}
.mirror-list li {
  list-style: none !important;
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
.mirror-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 10px;
  color: var(--accent-yel);
  font-weight: 900;
  font-size: 16px;
}
.mirror-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.mirror-cta-card .icon { font-size: 36px; margin-bottom: 10px; }
.mirror-cta-card h4 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.mirror-cta-card p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 18px; }
.mirror-warn {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255, 59, 92, 0.08);
  border-left: 3px solid var(--accent-red);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.mirror-warn strong { color: var(--accent-red); }
@media (max-width: 768px) {
  .mirror-grid { grid-template-columns: 1fr; }
  .mirror-section { padding: 30px 22px; }
}

/* ================ PAYMENTS ================ */
.payments-block {
  margin-bottom: 24px;
}
.payments-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-yel);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.payment {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  transition: all 0.2s;
}
.payment:hover { border-color: var(--accent); }
.payment-name { font-weight: 800; font-size: 14.5px; color: #fff; }
.payment-meta { font-size: 11.5px; color: var(--text-low); margin-top: 4px; font-weight: 600; }

/* ================ FEATURES (after registration) ================ */
.features-section { padding-top: 30px; }
.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 30px;
  margin-bottom: 22px;
  position: relative;
}
.feature-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.feature-block-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.feature-block-meta {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-yel);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-block h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
}
.feature-block-lead {
  font-size: 14.5px;
  color: var(--text-mid);
  margin: 14px 0 18px;
  line-height: 1.65;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.feature-tag {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.feature-tag.featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  border-color: var(--accent);
  color: #fff;
}
.feature-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
}
.feature-bullets li {
  list-style: none !important;
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: rgba(0, 210, 106, 0.18);
  color: var(--accent-grn);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
}
.feature-bullets li strong { color: #fff; font-weight: 700; }

/* ================ BIG CTA ================ */
.cta-big {
  margin: 60px 0;
  padding: 60px 40px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--accent) 0%, #0a47a8 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-big::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 214, 0, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.30) 0%, transparent 50%);
  pointer-events: none;
}
.cta-big > * { position: relative; z-index: 1; }
.cta-big .eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-yel);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-big h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-big h2 .amt { color: var(--accent-yel); }
.cta-big p {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-big .btn-yellow {
  background: var(--accent-yel);
  color: #000;
  padding: 20px 44px;
  font-size: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.30);
}
.cta-big-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .cta-big { padding: 44px 22px; }
  .cta-big h2 { font-size: 30px; }
}

/* ================ FAQ ================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
details.faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq[open] { border-color: var(--accent); }
details.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--accent-hi);
  transition: transform 0.2s;
  line-height: 1;
}
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-content {
  padding: 0 22px 20px;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ================ FOOTER ================ */
.footer {
  margin-top: 80px;
  padding: 40px 0 110px;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand strong { color: #fff; display: block; margin-bottom: 8px; font-size: 15px; }
.footer-brand { color: var(--text-mid); font-size: 14px; max-width: 600px; line-height: 1.65; }
.footer-disclaimer {
  color: var(--text-low);
  font-size: 12px;
  margin-top: 18px;
  line-height: 1.7;
}
.footer-buttons { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ================ STICKY BAR ================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #000 0%, var(--accent) 100%);
  border-top: 2px solid var(--accent-yel);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
}
.sticky-bar-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.sticky-bar-text strong {
  color: var(--accent-yel);
  font-size: 17px;
}
.sticky-bar-close {
  background: transparent; border: none; color: #fff;
  font-size: 22px; cursor: pointer; padding: 0 6px; line-height: 1; margin-left: 4px;
}
@media (max-width: 600px) {
  .sticky-bar-text { font-size: 13px; }
  .sticky-bar { padding: 10px 14px; gap: 10px; }
  .sticky-bar .btn { padding: 10px 18px; font-size: 13px; }
}

/* ================ MOBILE ================ */
@media (max-width: 900px) {
  .hero { padding: 40px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .feature-block { padding: 26px 22px; }
  .feature-block h3 { font-size: 19px; }
  .hero-floating-1 { left: 0; }
  .hero-floating-2 { right: 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-floating { display: none; }
}