/* ============================================
   1xBet Türkiye Landing — Production CSS
   Brand: Navy #1a3a5c · Yellow #ffce06
   ============================================ */

:root {
  --brand-navy: #1a3a5c;
  --brand-navy-dark: #0e2540;
  --brand-navy-deep: #071a30;
  --brand-yellow: #ffce06;
  --brand-yellow-hover: #ffd633;
  --brand-yellow-dark: #e6b800;
  --brand-green: #2dbe60;
  --brand-red: #e63946;

  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-dark: #0e2540;
  --surface: #ffffff;
  --surface-elev: #ffffff;

  --text: #1a2233;
  --text-soft: #4a5568;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  --text-on-yellow: #1a2233;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --shadow-sm: 0 1px 2px rgba(14, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(14, 37, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 37, 64, 0.12);
  --shadow-glow: 0 0 0 4px rgba(255, 206, 6, 0.25), 0 8px 24px rgba(255, 206, 6, 0.35);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-display: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { padding: 0; margin: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-navy);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.8rem, 4vw + .5rem, 3.4rem); }
h2 { font-size: clamp(1.5rem, 2.5vw + .5rem, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.5vw + .4rem, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--text); }

.accent { color: var(--brand-yellow); text-shadow: 0 0 30px rgba(255,206,6,0.4); }

.h-center { text-align: center; margin-top: 3rem; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-yellow);
  padding: .5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.topbar {
  background: var(--brand-navy-deep);
  font-size: .82rem;
  padding: .4rem 0;
  color: rgba(255,255,255,0.8);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.topbar__right {
  display: flex;
  gap: 1.2rem;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.dot--live {
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.navbar {
  padding: .8rem 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
}
.logo__1 { color: var(--brand-yellow); }
.logo__bet { color: var(--text-light); }
.logo--light .logo__bet { color: var(--text-light); }

.main-nav {
  flex: 1;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: .1rem;
  justify-content: center;
}
.nav-list a {
  display: block;
  padding: .55rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-list a:hover {
  color: var(--brand-yellow);
  background: rgba(255,255,255,0.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

.nav-cta {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
}
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--xl { padding: 1.15rem 2.4rem; font-size: 1.15rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--brand-yellow);
  color: var(--text-on-yellow);
}
.btn--primary:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn--secondary:hover {
  background: var(--text-light);
  color: var(--brand-navy);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.btn--glow {
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,206,6,0.6), 0 4px 16px rgba(255,206,6,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,206,6,0), 0 8px 24px rgba(255,206,6,0.4); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-navy) 100%);
  color: var(--text-light);
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,206,6,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
.hero__inner--single {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero__inner--single .hero__content { max-width: 100%; }
.hero__inner--single .hero__lead { margin-left: auto; margin-right: auto; }
.hero__inner--single .hero__cta { justify-content: center; }
.hero__inner--single .trust-bar { justify-content: center; }
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  background: rgba(255,206,6,0.12);
  border: 1px solid rgba(255,206,6,0.3);
  border-radius: 100px;
  font-size: .82rem;
  color: var(--brand-yellow);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 900;
}
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero__lead strong { color: var(--text-light); }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: .92rem;
  color: rgba(255,255,255,0.9);
}
.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.hero__apk-note {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,206,6,0.25);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
  text-align: left;
}
.hero__apk-note strong { color: var(--brand-yellow); }
.apk-shield {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--brand-yellow);
  color: var(--brand-navy-deep);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: .85rem;
  font-weight: 900;
  margin-right: .35rem;
  vertical-align: middle;
}

.topbar__item--phone {
  color: var(--brand-yellow) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar__item--phone:hover { color: var(--brand-yellow-hover) !important; }

.reg-card__ico--text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem !important;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  margin-bottom: .75rem !important;
}

.info-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.device-card__ico {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand-navy);
  background: var(--bg-alt);
  padding: .4rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: .5rem;
}

.badge__ico {
  font-family: var(--font-display);
  font-weight: 900;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}

.footer-col--brand p { margin-bottom: 1rem; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: .8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--brand-yellow);
  color: var(--brand-navy-deep);
  border-color: var(--brand-yellow);
}
.footer-social svg {
  flex-shrink: 0;
}

.btn--ghost-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--text-light);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.92);
  border-top: 3px solid var(--brand-yellow);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.is-visible {
  transform: translateY(0);
}
.cookie-consent__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-consent__text {
  flex: 1;
  min-width: 280px;
}
.cookie-consent__text h4 {
  color: var(--brand-yellow);
  margin: 0 0 .35rem;
  font-size: 1rem;
}
.cookie-consent__text p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
}
.cookie-consent__text a {
  color: var(--brand-yellow);
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-consent__inner { padding: 1rem; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__actions .btn { flex: 1; }
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section__eyebrow {
  display: inline-block;
  padding: .3rem .8rem;
  background: var(--brand-yellow);
  color: var(--text-on-yellow);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.section__header h2 {
  margin-bottom: 0;
}
.prose-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 880px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}
.prose p { line-height: 1.75; }
.prose--center { max-width: 880px; margin: 0 auto 2rem; text-align: center; }

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

/* Info table */
.info-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-table h3 {
  margin-top: 0;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--brand-yellow);
}
.info-table table th,
.info-table table td {
  padding: .65rem .5rem;
  text-align: left;
  font-size: .92rem;
}
.info-table table th {
  color: var(--text-soft);
  font-weight: 500;
  width: 45%;
}
.info-table table td {
  font-weight: 600;
  color: var(--text);
}
.info-table table tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* Data table */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.data-table {
  min-width: 600px;
}
.data-table th {
  background: var(--brand-navy);
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  padding: 1rem;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.data-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .94rem;
}
.data-table tr:nth-child(even) td { background: #fafbfc; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fff8e1; }
.ico { display: inline-block; margin-right: .25rem; }

/* Info cards */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-yellow);
}
.info-card__ico {
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.info-card h4 {
  margin-bottom: .5rem;
  color: var(--brand-navy);
}
.info-card p {
  font-size: .9rem;
  color: var(--text-soft);
  margin: 0;
}

/* Callouts */
.callout {
  background: linear-gradient(135deg, #fff8e1 0%, #fffbef 100%);
  border-left: 4px solid var(--brand-yellow);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 2rem auto;
  max-width: 900px;
  font-size: .95rem;
  color: var(--text);
}
.callout strong { color: var(--brand-navy); }
.callout--warning {
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
  border-left-color: var(--brand-red);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step__num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--brand-yellow);
  color: var(--text-on-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  border: 4px solid var(--bg-alt);
}
.step h4 {
  margin: .25rem 0 .75rem;
}
.step p {
  font-size: .92rem;
  color: var(--text-soft);
  margin: 0;
}

/* Registration cards */
.cards-4--reg .reg-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.reg-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.reg-card__ico {
  display: block;
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.reg-card h4 {
  margin: 0 0 .25rem;
}
.reg-card__time {
  color: var(--brand-yellow-dark);
  font-weight: 700;
  font-size: .9rem;
  margin: 0 0 .75rem;
}
.reg-card p {
  font-size: .88rem;
  color: var(--text-soft);
  margin: 0;
}

/* Check list */
.check-list {
  max-width: 720px;
  margin: 1.5rem auto;
}
.check-list li {
  padding: .65rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .98rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list--2col {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

/* Numbered list */
.numbered {
  counter-reset: num;
  max-width: 720px;
  margin: 1.5rem auto;
}
.numbered li {
  counter-increment: num;
  padding: .75rem 0 .75rem 3.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.numbered li:last-child { border-bottom: none; }
.numbered li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: .65rem;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
}

/* CTA strip */
.cta-strip {
  margin: 3rem 0 1rem;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-strip p { margin: 0; font-size: 1.05rem; }

/* Bonus hero */
.bonus-hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  color: var(--text-light);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.bonus-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,206,6,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.bonus-hero__badge {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--text-on-yellow);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.bonus-hero__title {
  color: var(--text-light);
  font-size: clamp(1.5rem, 3vw + .5rem, 2.4rem);
  margin: 0 0 1rem;
  position: relative;
}
.bonus-hero__title span {
  color: var(--brand-yellow);
  display: inline-block;
}
.bonus-hero p {
  position: relative;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Device cards */
.device-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.device-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.device-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-yellow);
}
.device-card--android::before { background: linear-gradient(90deg, #3ddc84, #2dbe60); }
.device-card--ios::before { background: linear-gradient(90deg, #6b7280, #1a2233); }
.device-card--lite::before { background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-dark)); }

.device-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-yellow);
}
.device-card__ico {
  font-size: 3rem;
  margin-bottom: .5rem;
}
.device-card h3 {
  margin-bottom: .25rem;
}
.device-card__sub {
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.device-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}
.device-card li {
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--text-soft);
  padding-left: 1.2rem;
  position: relative;
}
.device-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

/* Badges grid */
.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}
.badge:hover {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.badge__ico {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.badge strong {
  font-family: var(--font-display);
  color: var(--brand-navy);
  font-size: 1rem;
}
.badge span {
  font-size: .82rem;
  color: var(--text-soft);
  margin-top: .25rem;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq__item[open] {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-yellow);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq__item[open] summary::after {
  content: '−';
}
.faq__item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-navy) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,206,6,0.15) 0%, transparent 60%);
}
.final-cta > .container {
  position: relative;
}
.final-cta h2 {
  color: var(--text-light);
  font-size: clamp(1.7rem, 3vw + .5rem, 2.6rem);
}
.final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.final-cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: .95rem;
  color: rgba(255,255,255,0.85);
}

/* Footer */
.site-footer {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: var(--brand-yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col p {
  font-size: .9rem;
  line-height: 1.7;
}
.footer-col strong { color: rgba(255,255,255,0.95); }
.footer-license {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-size: .85rem;
}
.footer-list li {
  padding: .35rem 0;
}
.footer-list a:hover {
  color: var(--brand-yellow);
}
.footer-warning {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem;
  background: rgba(230,57,70,0.1);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  line-height: 1.7;
}
.footer-warning strong { color: #ffadb3; }
.footer-disclaimer {
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-disclaimer p { margin-bottom: .75rem; }
.copyright {
  margin-top: 1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   Responsive — Tablet (max 980px)
   ============================================ */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .device-cards {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .check-list--2col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list a {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
  .nav-cta .btn--sm {
    display: none;
  }
  .nav-cta .btn--primary {
    display: inline-flex;
  }
}

/* ============================================
   Responsive — Mobile (max 640px)
   ============================================ */
@media (max-width: 640px) {
  body { font-size: 15.5px; }

  .topbar__right .topbar__item:nth-child(2),
  .topbar__right .topbar__item:nth-child(3) { display: none; }

  .hero {
    padding: 2.5rem 0 3rem;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn { width: 100%; }
  .hero__lead { font-size: 1rem; }
  .trust-bar {
    gap: .75rem 1.25rem;
    font-size: .85rem;
  }

  .section { padding: 3rem 0; }
  .section__header { margin-bottom: 2rem; }
  .prose-lead { font-size: 1rem; margin-bottom: 1.5rem; }

  .cards-4 {
    grid-template-columns: 1fr;
  }
  .badges {
    grid-template-columns: 1fr;
  }

  .bonus-hero { padding: 2rem 1.25rem; }
  .cta-strip { padding: 1.5rem 1.25rem; }
  .cta-strip .btn { width: 100%; }

  .final-cta__meta {
    flex-direction: column;
    gap: .5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .data-table th,
  .data-table td {
    padding: .7rem .65rem;
    font-size: .85rem;
  }

  .faq__item summary {
    font-size: .98rem;
    padding-right: 2.5rem;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}

/* ============================================
   Print
   ============================================ */
@media print {
  .site-header, .final-cta, .site-footer { display: none; }
  .section { padding: 1rem 0; page-break-inside: avoid; }
  a[href]::after { content: ''; }
}

/* ============================================
   Subpages
   ============================================ */
.breadcrumb-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  font-size: .88rem;
}
.breadcrumb-bar ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  color: var(--text-soft);
}
.breadcrumb-bar li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-bar li + li::before {
  content: '›';
  margin-right: .5rem;
  color: var(--text-muted);
}
.breadcrumb-bar a {
  color: var(--brand-navy);
  font-weight: 500;
}
.breadcrumb-bar a:hover { color: var(--brand-yellow-dark); }

.page-main { background: var(--bg); }
.container--narrow {
  max-width: 880px;
}
.page-article {
  padding: 3.5rem 0 4rem;
}
.page-article h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 3vw + .5rem, 2.6rem);
}
.page-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-yellow);
}
.page-article h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  font-size: clamp(1.3rem, 1.5vw + .5rem, 1.7rem);
}
.page-article h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--brand-navy);
}
.page-article p {
  line-height: 1.75;
  color: var(--text);
}
.page-article a {
  color: var(--brand-yellow-dark);
  text-decoration: underline;
  text-decoration-color: rgba(230, 184, 0, 0.4);
  text-underline-offset: 3px;
}
.page-article a:hover {
  color: var(--brand-navy);
  text-decoration-color: var(--brand-navy);
}

.bullet-list {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}
.bullet-list li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  line-height: 1.7;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85rem;
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
}

.info-table--inline {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.25rem 0 2rem;
  box-shadow: none;
}
.info-table--inline h3 { display: none; }
.info-table--inline table { background: transparent; }
.info-table--inline thead th {
  background: transparent;
  color: var(--brand-navy);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: .82rem;
  padding-bottom: .5rem;
  text-align: left;
  border-bottom: 2px solid var(--brand-yellow);
}

.faq__item {
  margin-bottom: .5rem;
}

.page-related {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 3.5rem;
}
.page-related h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .9rem;
}
.related-grid a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: var(--transition);
  text-decoration: none;
}
.related-grid a strong {
  display: block;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .2rem;
}
.related-grid a span {
  display: block;
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.related-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.related-grid a:hover strong { color: var(--brand-yellow-dark); }

.download-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .download-actions { flex-direction: column; }
  .download-actions .btn { width: 100%; }
  .page-article { padding: 2.5rem 0 3rem; }
  .page-related { padding: 2.5rem 0 3rem; }
}
