/* ════════════════════════════════════════════════════════════════════════
   IPLBet App — style.css
   Theme: Dark Navy + Gold Premium
   Fonts: Playfair Display (headings) + DM Sans (body)
   ════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────────────── */
:root {
  --navy:       #0D1B3E;
  --navy-mid:   #142150;
  --navy-light: #1E2F6B;
  --gold:       #C9A84C;
  --gold-light: #E8C76A;
  --gold-dark:  #A8892F;
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --text:       #D0CBBF;
  --text-dim:   #8A8580;
  --border:     rgba(201,168,76,0.2);
  --card-bg:    rgba(255,255,255,0.04);
  --card-border:rgba(201,168,76,0.15);
  --red-live:   #E53935;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius:  10px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);

  --container: 1160px;
  --section-py: 80px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: .6rem; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.text-gold { color: var(--gold); }

/* ── Container ────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1.1rem; font-size: .875rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-block { width: 100%; justify-content: center; }
.btn-icon { font-size: 1.1em; }

/* ── Section Common ───────────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section:nth-child(even) { background: var(--navy-mid); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-sub {
  max-width: 780px;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.subsection-title {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

/* ── Hero text overlay ────────────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -24px -32px;
  background: linear-gradient(135deg,
    rgba(6,14,34,0.88) 0%,
    rgba(13,27,62,0.80) 60%,
    rgba(13,27,62,0.0) 100%);
  border-radius: 16px;
  backdrop-filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,27,62,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.logo:hover { color: var(--white); }
.logo-bat { font-size: 1.3rem; line-height: 1; }
.logo-text { display: flex; align-items: baseline; }
.logo-ipl  { color: var(--gold); letter-spacing: -.02em; }
.logo-betword { color: var(--white); letter-spacing: -.02em; }
.logo-accent { color: var(--gold); } /* legacy fallback */
.logo-img { height: 40px; width: auto; display: block; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .2rem; }
.main-nav a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .8rem;
  border-radius: var(--radius);
  transition: all .2s;
}
.main-nav a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--white); margin-left: auto; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #060e22 0%, #0D1B3E 40%, #1a2a5e 100%);
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  background-blend-mode: luminosity;
  overflow: hidden;
}
.hero-phone-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7));
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* SVG renders on dark bg — no filter needed */
}

/* Fallback text logo (if SVG fails) */
.logo-text-fallback {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
}
.logo-text-fallback .gold { color: var(--gold); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 10% 20%, rgba(30,47,107,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .3rem .8rem;
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; }

.hero h1 {
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.8rem;
}
.hero-usps li {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
}
.usps-icon { color: var(--gold); font-weight: 900; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.8rem;
  justify-content: flex-start; /* left in hero */
}
.cta-inner .hero-ctas {
  justify-content: center; /* centered in CTA strip */
  margin-bottom: 0;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .82rem;
  color: var(--text-dim);
}
.trust-bar span { display: flex; align-items: center; gap: .3rem; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
  width: 300px;
  background: linear-gradient(160deg, #1a2a5e, #0d1b3e);
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 20px 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.1);
}
.phone-screen-header {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.phone-match { margin-bottom: 12px; }
.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.team-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.team-score { color: var(--text); font-size: .85rem; }
.team-odds {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: all .2s;
}
.team-odds:hover, .odds-live { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.match-divider { text-align: center; color: var(--text-dim); font-size: .75rem; padding: 2px 0; }
.live-badge {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--red-live);
  letter-spacing: .06em;
  margin-top: 4px;
}
.phone-markets { margin-bottom: 12px; }
.market-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: .82rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.market-item strong { color: var(--gold); }
.phone-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .08em;
  padding: 10px;
  border-radius: var(--radius);
  margin-top: 6px;
}

/* ── Cards Grid ───────────────────────────────────────────────────────── */
.cards-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: all .3s;
}
.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; font-size: .95rem; }

.card-feature .card-icon {
  font-size: 1.8rem;
  margin-bottom: .7rem;
  display: block;
}

/* Highlight cards */
.highlight-card {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
}
.feature-list li {
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: .93rem;
  color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: var(--white); }

/* ── Features banner ──────────────────────────────────────────────────── */
.features-banner {
  margin: 2.5rem 0 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.features-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.features-banner:hover img { transform: scale(1.01); }

/* ── Features grid ────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: all .25s;
}
.feature-item:hover { border-color: rgba(201,168,76,.35); }
.feature-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.feature-item strong { color: var(--white); display: block; margin-bottom: .3rem; }
.feature-item p { margin: 0; font-size: .9rem; }

/* ── Tables ───────────────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; margin-top: 1rem; border-radius: var(--radius); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.data-table th {
  background: var(--navy-light);
  color: var(--gold);
  text-align: left;
  padding: .8rem 1rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
}
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.data-table tbody tr:hover { background: rgba(201,168,76,0.05); }
.our-row td { color: var(--white); font-weight: 600; }
.our-row { background: rgba(201,168,76,0.07) !important; border: 1px solid rgba(201,168,76,0.2); }

/* ── Download section ─────────────────────────────────────────────────── */
.download-section { background: linear-gradient(180deg, var(--navy-mid), var(--navy)) !important; }
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.download-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.download-os {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.steps-list {
  list-style: decimal;
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}
.steps-list li {
  padding: .3rem 0;
  font-size: .93rem;
  color: var(--text);
}
.steps-list li strong { color: var(--white); }
.download-note { text-align: center; font-size: .78rem; color: var(--text-dim); margin-top: .6rem; }
.security-note {
  margin-top: 1.5rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-size: .88rem;
  color: var(--text);
}
.security-note strong { color: var(--white); }

/* ── Info box ─────────────────────────────────────────────────────────── */
.info-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
}
.info-box h3 { color: var(--gold); margin-bottom: .6rem; }
.info-box p { margin: 0; font-size: .93rem; }
.kohli-dhoni p { font-size: .93rem; }

/* ── Markets ──────────────────────────────────────────────────────────── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.market-category {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}
.market-category h3 { margin-bottom: 1rem; color: var(--gold); }
.market-list li {
  padding: .35rem 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.market-list li:last-child { border: none; }
.mkt-name { font-weight: 700; color: var(--white); }

/* ── Teams ────────────────────────────────────────────────────────────── */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.team-card {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: all .25s;
}
.team-card:hover { border-color: rgba(201,168,76,.35); }
.team-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 900;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.team-card strong { display: block; color: var(--white); font-size: .93rem; margin-bottom: .3rem; }
.team-card p { margin: 0; font-size: .82rem; }

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.step-block {
  flex: 1;
  min-width: 160px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-block h3 { font-size: 1rem; margin-bottom: .4rem; }
.step-block p { font-size: .85rem; margin: 0; }
.step-arrow { color: var(--gold); font-size: 1.5rem; line-height: 1; padding-top: 1.8rem; align-self: flex-start; }

/* ── Bonus ────────────────────────────────────────────────────────────── */
.bonus-hero-img {
  margin: 1.5rem auto 2rem;
  max-width: 700px;
  text-align: center;
}
.bonus-hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.15);
}
.bonus-card { position: relative; overflow: hidden; }
.bonus-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 12px;
  margin-bottom: .7rem;
}
.bonus-amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: .6rem;
}

/* ── Schedule ─────────────────────────────────────────────────────────── */
.schedule-table td:first-child { color: var(--gold); font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(201,168,76,.3); }
.faq-item summary {
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .97rem;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 1.4rem 1.2rem;
  border-top: 1px solid var(--border);
}
.faq-answer p { font-size: .93rem; margin: .8rem 0 0; }

/* ── CTA Strip ────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)) !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-inner h2 { margin-bottom: .8rem; font-size: 2rem; }
.cta-inner p { max-width: 560px; margin: 0 auto 1.5rem; text-align: center; }
.cta-inner .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.cta-disclaimer { margin-top: 1rem !important; font-size: .78rem; color: var(--text-dim); text-align: center; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #070f22;
  border-top: 1px solid var(--border);
  padding: 60px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; color: var(--text-dim); max-width: 280px; }
.footer-links h4, .footer-contact h4 { color: var(--gold); margin-bottom: .8rem; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: .3rem; }
.footer-links a { color: var(--text-dim); font-size: .88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .88rem; color: var(--text-dim); margin-bottom: .4rem; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.badge {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .78rem;
  padding: .3rem .8rem;
  border-radius: 20px;
}
.footer-disclaimer {
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-disclaimer a { color: var(--text-dim); text-decoration: underline; }
.footer-bottom {
  text-align: center;
  font-size: .8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── Sticky Bar ───────────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--navy-light), #0d1b3e);
  border-top: 1px solid var(--border);
  padding: .7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
  transform: translateY(100%);
  transition: transform .4s;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .main-nav { display: none; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--border); padding: 1rem; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .header-inner > .btn { display: inline-flex; font-size: .78rem; padding: .4rem .85rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-usps li { font-size: .78rem; }

  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }

  .footer-top { grid-template-columns: 1fr; }

  .trust-bar { gap: .6rem; }
  .cta-inner .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { padding: 50px 0 40px; }
  .btn-lg { padding: .75rem 1.5rem; font-size: .93rem; }
  .data-table { font-size: .8rem; }
  .data-table th, .data-table td { padding: .55rem .7rem; }
}
