/* =========================================================
   AsiaBettingOdds — Premium SEO Site Styles
   Domain: asiabettingodds.com
   ========================================================= */

:root {
  --bg-0: #070b14;
  --bg-1: #0c1424;
  --bg-2: #121c30;
  --bg-3: #1a2740;
  --card: rgba(18, 28, 48, 0.72);
  --card-solid: #121c30;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.42);
  --gold: #d4af37;
  --gold-light: #f6e27a;
  --gold-dark: #a67c00;
  --text: #eef2f7;
  --text-muted: #9aa4b2;
  --text-dim: #6b7687;
  --success: #2dd4a8;
  --whatsapp: #25d366;
  --telegram: #2aabee;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --nav-h: 78px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Background atmosphere ---------- */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(42, 100, 180, 0.16), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(212, 175, 55, 0.07), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0a1220 45%, #070b14 100%);
}

.site-bg::before {
  content: "";
  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: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridFloat 28s linear infinite;
  opacity: 0.45;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  animation: orbFloat 16s ease-in-out infinite;
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: rgba(212, 175, 55, 0.18);
  top: 12%;
  left: -80px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: rgba(40, 90, 180, 0.18);
  top: 40%;
  right: -120px;
  animation-delay: -6s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(45, 212, 168, 0.08);
  bottom: 8%;
  left: 30%;
  animation-delay: -11s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

@keyframes gridFloat {
  from { transform: translateY(0); }
  to { transform: translateY(56px); }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(120deg, #fff 10%, var(--gold-light) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  height: 46px;
  width: auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a2740, #0b1220);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(212, 175, 55, 0.08);
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f0d36a 0%, #d4af37 45%, #b8901f 100%);
  color: #1a1405 !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.42);
  color: #120e03 !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--gold-light) !important;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #34e07a, #1ebe5d);
  color: #062414 !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
}

.btn-telegram {
  background: linear-gradient(135deg, #54c4ff, #229ed9);
  color: #041520 !important;
  box-shadow: 0 10px 28px rgba(42, 171, 238, 0.25);
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(45, 212, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0); }
}

.hero h1 {
  margin-bottom: 1.1rem;
  animation: fadeUp 0.9s 0.08s ease both;
}

.hero .lead {
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.16s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.9s 0.24s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  animation: fadeUp 0.9s 0.32s ease both;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.2s ease both;
}

.odds-card {
  position: relative;
  border-radius: 24px;
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(26, 39, 64, 0.95), rgba(12, 20, 36, 0.92));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.odds-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(80px, 40px); opacity: 1; }
}

.odds-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.odds-card-header h3 {
  font-size: 1rem;
  color: var(--text);
}

.live-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #062414;
  background: var(--success);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.match-row:first-of-type {
  border-top: none;
}

.teams {
  font-weight: 600;
  font-size: 0.95rem;
}

.teams small {
  display: block;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.odds-pills {
  display: flex;
  gap: 0.4rem;
}

.pill {
  min-width: 58px;
  text-align: center;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.12);
}

.pill span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.floating-chip {
  position: absolute;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(12, 20, 36, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: floatY 5s ease-in-out infinite;
}

.floating-chip.one {
  top: -18px;
  right: -12px;
  color: var(--success);
}

.floating-chip.two {
  bottom: 28px;
  left: -18px;
  color: var(--gold-light);
  animation-delay: -2.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 28, 48, 0.35), transparent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.card h3 {
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.card a.more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-weight: 650;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1405;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Table styles */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(12, 20, 36, 0.75);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th, td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.06);
}

td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.step h3 {
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  position: relative;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(500px 240px at 100% 100%, rgba(42, 171, 238, 0.12), transparent 55%),
    linear-gradient(145deg, #141f35, #0d1526 55%, #101a2e);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.04) 48%, transparent 65%);
  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  from { transform: translateX(-40%); }
  to { transform: translateX(40%); }
}

.cta-band h2 {
  position: relative;
  margin-bottom: 0.85rem;
}

.cta-band p {
  position: relative;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Notice / alert */
.notice {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.notice strong {
  color: var(--gold-light);
}

.notice p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Content prose pages */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 2.5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  opacity: 0.5;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 2.4rem 0 1rem;
}

.prose h3 {
  margin: 1.8rem 0 0.75rem;
  color: var(--gold-light);
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem 1.2rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.45rem;
  padding-left: 0.25rem;
}

.prose strong {
  color: var(--text);
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.85rem;
}

.faq details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(18, 28, 48, 0.55);
  padding: 0.2rem 1.1rem;
  transition: border-color 0.25s ease;
}

.faq details[open] {
  border-color: var(--border-strong);
}

.faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--text-muted);
  padding-bottom: 1rem;
  font-size: 0.95rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.contact-card .big-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.contact-card.whatsapp .big-icon {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-card.telegram .big-icon {
  background: rgba(42, 171, 238, 0.12);
  border: 1px solid rgba(42, 171, 238, 0.3);
}

.contact-card h3 {
  margin-bottom: 0.45rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(8, 12, 22, 0.8));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer p,
.footer a {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.disclaimer {
  max-width: 720px;
  line-height: 1.6;
}

/* Floating contact bar */
.float-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.float-btn.wa {
  background: var(--whatsapp);
  color: #062414;
}

.float-btn.tg {
  background: var(--telegram);
  color: #041520;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.side-panel h3 {
  margin-bottom: 0.65rem;
}

.side-panel p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.side-panel .btn {
  width: 100%;
  margin-bottom: 0.65rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.03);
}

/* Comparison chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.chip {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }

  .floating-chip.two {
    left: 8px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7, 11, 20, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
  }

  .nav-wrap.open {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    flex-direction: column;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }

  .hero-stats,
  .cards,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2.2rem 1.35rem;
  }

  .float-cta {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
