:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #1d2430;
  --muted: #8a8179;
  --line: #e5e8ee;
  --primary: #086bd8;
  --primary-dark: #073d82;
  --primary-soft: #e8f2ff;
  --gold: #f2c94c;
  --shadow: 0 22px 55px rgba(25, 42, 70, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: var(--bg);
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

body { overflow-x: hidden; padding-bottom: 86px; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: #fff;
  background: linear-gradient(90deg, #052b5f, #0755b5);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  min-width: 72px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, #0b75e6, #053d86);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(4, 54, 120, .28);
  font-size: 13px;
  font-weight: 900;
}

.brand strong { display: block; font-size: 17px; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: rgba(255,255,255,.72); font-size: 11px; }
.support-link { position: absolute; left: 38px; color: #fff; font-weight: 900; }

.icon-btn {
  position: absolute;
  right: 18px;
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 0;
  border-radius: 12px;
}

.icon-btn span {
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu { display: none; }

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 17, 38, .58);
  backdrop-filter: blur(9px);
}

.promo-modal.hidden { display: none; }

.promo-card {
  position: relative;
  width: min(92vw, 920px);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 20, 50, .38);
}

.promo-close {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #0755b5;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 22, 60, .24);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.promo-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 24px;
  cursor: pointer;
}

.promo-image-button img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #eaf4ff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 116px 18px 90px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(3, 25, 67, .74), rgba(7, 91, 188, .58)),
    url("assets/images/watch-cib.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(2, 24, 58, .38));
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow, .section-title span, .final-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  color: #d9ebff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-weight: 900;
}

.hero h1 {
  max-width: 1060px;
  margin: 26px auto 18px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.8;
  font-weight: 700;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.actions.center { justify-content: center; }

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  color: #fff;
  background: linear-gradient(135deg, #0d7bf2, #064a9f);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 107, 216, .25);
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(8, 107, 216, .32); }
.btn.ghost { color: var(--primary); background: var(--primary-soft); box-shadow: none; }
.text-link { color: var(--primary); background: transparent; border: 0; font-weight: 900; cursor: pointer; }

.ticker {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(90deg, #073d82, #095fc5);
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 36px clamp(18px, 8vw, 260px);
  background: #fff;
}

.stat { display: flex; align-items: center; justify-content: center; gap: 16px; text-align: right; }
.stat i { width: 70px; height: 70px; display: grid; place-items: center; background: #fff2df; border: 2px solid #ffd5aa; border-radius: 50%; font-style: normal; font-size: 28px; }
.stat strong { display: block; font-size: 30px; }
.stat span { color: var(--muted); }

.section { padding: clamp(52px, 8vw, 92px) clamp(18px, 7vw, 150px); background: #fff; }
.section.soft { background: #f6f8fb; }

.section-title { max-width: 860px; margin: 0 auto 42px; text-align: center; }
.section-title span { color: var(--primary); background: #fff4e4; border-color: #ffd9b5; }
.section-title h2 { margin: 22px 0 8px; font-size: clamp(34px, 5vw, 58px); line-height: 1.15; }
.section-title p { margin: 0; color: var(--muted); font-size: 20px; line-height: 1.7; }

.showcase-card {
  max-width: 1324px;
  min-height: 337px;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 50px;
  color: #fff;
  background: linear-gradient(135deg, #0b6ed4, #063773);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-media, .gift-img, .raffle-img, .prize-img {
  min-height: 250px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.money {
  background-image: linear-gradient(135deg, rgba(5,22,45,.1), rgba(5,22,45,.18)), url("assets/images/cash.png");
}
.smartwatch {
  background-image: linear-gradient(135deg, rgba(5,22,45,.05), rgba(5,22,45,.16)), url("assets/images/watch.png");
}
.card {
  background-image: linear-gradient(135deg, rgba(255,255,255,.02), rgba(5,22,45,.12)), url("assets/images/card.png");
}
.phone {
  background-image: linear-gradient(135deg, rgba(5,22,45,.05), rgba(5,22,45,.12)), url("assets/images/phone.png");
}
.appliance {
  background-image: linear-gradient(135deg, rgba(5,22,45,.05), rgba(5,22,45,.12)), url("assets/images/appliances.png");
}
.cash {
  background-image: linear-gradient(135deg, rgba(5,22,45,.06), rgba(5,22,45,.16)), url("assets/images/cash.png");
}
.watch {
  background-image: linear-gradient(135deg, rgba(5,22,45,.05), rgba(5,22,45,.14)), url("assets/images/watch.png");
}

.showcase-copy h2 { margin: 20px 0 12px; font-size: clamp(34px, 5vw, 62px); line-height: 1.1; }
.showcase-copy p { color: rgba(255,255,255,.9); font-size: 21px; line-height: 1.8; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badges span { padding: 9px 16px; color: #ffe58a; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-weight: 900; }
.dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.dots i { width: 11px; height: 11px; background: #b5cbe4; border-radius: 50%; }
.dots i:first-child { width: 34px; background: var(--primary); }

.gift-grid, .testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1324px;
  margin: 0 auto;
}

.gift-card, .raffle-card, .feature-card, .quote-card, .faq-item, .info-banner, .mini-card, .rules-card, .login-card, .welcome-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gift-card { overflow: hidden; }
.gift-card div:last-child { padding: 30px; }
.gift-card h3, .raffle-card h3 { margin: 0 0 10px; font-size: 30px; }
.gift-card p, .raffle-card p, .feature-card p, .quote-card p { color: var(--muted); line-height: 1.8; font-size: 17px; }

.info-banner {
  max-width: 1374px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto 34px;
  padding: 34px 42px;
}

.check { width: 74px; height: 74px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--primary); border-radius: 18px; font-size: 36px; font-weight: 900; }
.info-banner h3 { margin: 0 0 8px; font-size: 30px; }
.info-banner p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }

.raffle-grid, .features-grid, .prize-grid {
  max-width: 1374px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0 auto;
}

.raffle-card, .prize-card { overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.raffle-card div:last-child, .prize-card div:last-child { padding: 26px; }
.raffle-card span, .prize-card span { display: inline-flex; padding: 8px 14px; color: var(--primary); background: var(--primary-soft); border-radius: 999px; font-weight: 900; }

.mini-grid {
  max-width: 1374px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 42px auto 0;
}

.mini-card { display: flex; align-items: center; gap: 18px; padding: 24px; }
.mini-card i, .feature-card i { width: 62px; height: 62px; display: grid; place-items: center; background: linear-gradient(135deg, #0d7bf2, #064a9f); border-radius: 16px; font-style: normal; font-size: 26px; }
.mini-card h3, .feature-card h3 { margin: 0 0 4px; font-size: 22px; }
.mini-card p { margin: 0; color: var(--muted); }

.feature-card { padding: 34px; text-align: center; }
.feature-card i { margin: 0 auto 18px; color: #fff; }
.testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-card { padding: 34px; }
.stars { color: #eab308; font-size: 22px; }
.quote-card strong { display: block; margin-top: 20px; font-size: 20px; }
.quote-card span { color: var(--muted); }

.faq-list { max-width: 1080px; display: grid; gap: 14px; margin: 0 auto; }
.faq-question { width: 100%; min-height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; background: transparent; border: 0; cursor: pointer; font-weight: 900; font-size: 20px; text-align: right; }
.faq-question i { width: 36px; height: 36px; display: grid; place-items: center; color: var(--primary); background: #fff3e5; border-radius: 50%; font-style: normal; }
.faq-item p { display: none; margin: 0; padding: 0 28px 24px; color: var(--muted); line-height: 1.8; }
.faq-item.open p { display: block; }
.faq-item.open .faq-question i { background: var(--primary); color: #fff; }

.final-cta {
  max-width: 1080px;
  margin: 0 auto;
  padding: 46px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #0b7df1, #063a80);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.final-cta h2 { margin: 22px 0 8px; font-size: 36px; }
.final-cta p { color: rgba(255,255,255,.86); font-size: 18px; }

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 20vw, 520px);
  padding: 12px 24px;
  background: rgba(255,255,255,.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.sticky-cta strong { display: block; font-size: 20px; }
.sticky-cta span { color: var(--muted); }
.sticky-cta .btn { min-height: 54px; background: linear-gradient(135deg, #0d7bf2, #053d86); }
.float-logo { position: fixed; right: 24px; bottom: 30px; z-index: 70; width: 76px; height: 76px; color: #fff; background: linear-gradient(135deg, #0b75e6, #052f68); border: 0; border-radius: 50%; box-shadow: 0 12px 34px rgba(8,107,216,.28); font-weight: 900; }

.prize-page { padding-top: 118px; background: #f4f7fb; }
.alert { max-width: 1334px; margin: 0 auto 24px; padding: 20px; color: #0753aa; background: #e8f2ff; border: 1px solid #add0ff; border-radius: 14px; font-weight: 900; text-align: center; }
.prize-card { min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: #07111f; }
.prize-card h3 { margin: 0 0 12px; font-size: 24px; }
.rules-card { max-width: 1334px; margin: 44px auto; padding: 38px; }
.rules-card h2 { margin: 0 0 20px; }
.rules-card b { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-left: 10px; color: #fff; background: var(--primary); border-radius: 50%; }

.login-page { min-height: 100vh; padding: 92px 18px 120px; background: #f2f6fc; }
.login-hero { height: 118px; margin: -28px -18px 36px; background: linear-gradient(135deg, rgba(5, 42, 92, .72), rgba(5, 102, 204, .42)), url("assets/images/watch.png") center / cover; }
.welcome-card, .login-note, .login-card { width: min(100%, 900px); margin: 0 auto 22px; }
.welcome-card { display: flex; align-items: center; gap: 18px; padding: 24px; }
.welcome-card h1 { margin: 0 0 6px; font-size: 26px; }
.welcome-card p { margin: 0; color: var(--muted); }
.login-note { padding: 18px 22px; color: #064174; background: #e8f2ff; border: 1px solid #bdd7ff; border-radius: 14px; text-align: center; font-weight: 800; }
.login-card { padding: 26px; }
.form-title { display: flex; align-items: center; justify-content: flex-start; gap: 14px; margin-bottom: 22px; }
.form-title span { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: var(--primary); border-radius: 14px; }
.form-title h2 { margin: 0; }
.login-card label { display: block; margin: 18px 0 8px; font-weight: 900; }
.input {
  width: 100%;
  min-height: 60px;
  padding: 14px 18px;
  color: var(--ink);
  background: #f9fbfe;
  border: 1px solid #cfd8e5;
  border-radius: 12px;
  outline: 0;
}
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8,107,216,.12); }
.safe-line { margin: 24px 0; padding: 14px; color: #0a6b3d; background: #ecfdf5; border: 1px solid #bbf7d0; border-radius: 12px; text-align: center; }
.login-submit { width: 100%; min-height: 66px; margin-top: 14px; font-size: 24px; }

.secure-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 18px 120px;
  background:
    radial-gradient(circle at 22% 22%, rgba(32, 159, 255, .28), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(83, 214, 255, .14), transparent 28%),
    linear-gradient(135deg, #061b3c, #0a4f9e 54%, #06295d);
}

.secure-panel {
  position: relative;
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  color: #fff;
  text-align: right;
  background:
    linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.06)),
    rgba(3, 20, 48, .72);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 12, 32, .34);
  backdrop-filter: blur(18px);
}

.secure-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.14), transparent 42%);
  pointer-events: none;
}

.secure-orbit {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 195, 255, .2), rgba(255,255,255,.04) 58%, transparent 59%);
}

.secure-orbit span {
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(119, 218, 255, .5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.secure-orbit i {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1ba1ff, #0757bc);
  border-radius: 26px;
  box-shadow: 0 22px 46px rgba(8, 107, 216, .38);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
}

.secure-copy {
  position: relative;
  z-index: 1;
}

.secure-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  color: #bfe7ff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.secure-panel h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.18;
}

.secure-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.8;
  font-weight: 800;
}

.secure-checks {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  color: #dff5ff;
  font-weight: 900;
}

.secure-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
}

.secure-checks b {
  color: #64e8ff;
}

.secure-progress {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}

.secure-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1c76ff, #54e4ff);
  border-radius: inherit;
  transform-origin: right;
  animation: secureLoad 15s linear forwards;
}

.secure-time {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  color: rgba(255,255,255,.68);
  font-weight: 900;
}

.form-page { min-height: 100vh; display: grid; place-items: center; padding: 104px 18px 120px; background: linear-gradient(180deg, #f7faff, #edf4fd); }
.form-card, .bank-frame { width: min(100%, 470px); padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.bank-frame { padding: 0; overflow: hidden; }
.bank-frame-header { padding: 18px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); text-align: center; font-weight: 900; }
.bank-frame-body { padding: 28px; }
.form-head { text-align: center; }
.form-head h1 { margin: 14px 0 8px; }
.form-head p { color: var(--muted); line-height: 1.7; }
.otp-row { display: flex; justify-content: center; gap: 8px; margin: 24px 0; direction: ltr; }
.otp-row input { width: 48px; height: 58px; text-align: center; border: 2px solid #cfd8e5; border-radius: 12px; color: var(--primary); font-size: 24px; font-weight: 900; outline: 0; }
.otp-row input:focus { border-color: var(--primary); }
.otp-error {
  display: none;
  margin: -8px 0 18px;
  padding: 12px 14px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
}
.otp-error[hidden] { display: none !important; }
.otp-error.show { display: block; }
.form-actions { display: grid; gap: 10px; margin-top: 20px; }
.muted-link { color: var(--primary); background: transparent; border: 0; font-weight: 900; cursor: pointer; }
.waiting { text-align: center; }
.spinner { width: 58px; height: 58px; margin: 0 auto 20px; border: 5px solid #dbeafe; border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
.progress { height: 8px; margin: 22px 0; overflow: hidden; background: #dce7f5; border-radius: 999px; }
.progress span { display: block; width: 45%; height: 100%; background: linear-gradient(90deg, var(--primary), #4fb3ff); animation: progress 2s ease-in-out infinite; }
.review-box { margin-top: 18px; padding: 16px; text-align: right; background: #fbfcfe; border: 1px solid #e1eaf4; border-radius: 14px; }
.review-step { display: flex; align-items: center; gap: 10px; padding: 8px; border-bottom: 1px dashed #e3ebf5; font-weight: 800; }
.review-step:last-child { border-bottom: 0; }
.review-step i { width: 24px; height: 24px; display: grid; place-items: center; color: #fff; background: #c6d2df; border-radius: 50%; font-style: normal; font-size: 12px; }
.review-step.done i { background: #16a164; }
.review-step.active i { background: var(--primary); }
.success-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 18px; color: #16a164; background: #e8f8ef; border-radius: 50%; font-size: 46px; font-weight: 900; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes progress { 0% { transform: translateX(160%); } 100% { transform: translateX(-240%); } }
@keyframes secureLoad { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 900px) {
  .showcase-card, .gift-grid, .raffle-grid, .features-grid, .testimonials, .prize-grid, .mini-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .showcase-card { padding: 28px; }
  .sticky-cta { justify-content: space-between; gap: 14px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 104px; }
  .topbar { justify-content: flex-start; padding: 0 72px 0 14px; }
  .icon-btn { display: flex; }
  .support-link { display: none; }
  .mobile-menu { position: fixed; top: 70px; right: 12px; left: 12px; z-index: 80; display: none; gap: 8px; padding: 12px; background: #fff; border-radius: 14px; box-shadow: var(--shadow); }
  .mobile-menu.open { display: grid; }
  .mobile-menu a { padding: 12px; color: var(--primary); background: var(--primary-soft); border-radius: 10px; font-weight: 900; }
  .hero { min-height: 86vh; }
  .section { padding-inline: 16px; }
  .sticky-cta { align-items: stretch; flex-direction: column; text-align: center; }
  .float-logo { width: 64px; height: 64px; right: 18px; bottom: 22px; }
}
