/* =========================================================
   iplcricketbetting2026.com — Main Stylesheet
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --clr-primary:       #0f1729;
  --clr-primary-mid:   #1a2847;
  --clr-primary-light: #243561;
  --clr-accent:        #f59e0b;
  --clr-accent-light:  #fcd34d;
  --clr-accent-dark:   #d97706;
  --clr-green:         #16a34a;
  --clr-green-light:   #dcfce7;
  --clr-text:          #1e293b;
  --clr-text-muted:    #64748b;
  --clr-white:         #ffffff;
  --clr-bg:            #f8fafc;
  --clr-card:          #ffffff;
  --clr-border:        #e2e8f0;
  --clr-border-dark:   #cbd5e1;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);

  --max-w: 1100px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--clr-primary);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding-block: 3.5rem;
}
.section--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--clr-white); }

.section--alt { background: var(--clr-bg); }
.section--white { background: var(--clr-white); }

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section__header p {
  color: var(--clr-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-top: .5rem;
}
.section--dark .section__header p { color: #94a3b8; }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: .5rem;
}

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-primary);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.site-logo__text {
  font-size: .9rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.site-logo__text span { color: var(--clr-accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  color: #cbd5e1;
  font-size: .875rem;
  font-weight: 500;
  padding: .35rem .65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--clr-white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  background: var(--clr-accent) !important;
  color: var(--clr-primary) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  padding: .4rem .9rem !important;
  margin-left: .5rem;
}
.nav-cta:hover {
  background: var(--clr-accent-light) !important;
  text-decoration: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-mid) 60%, #1e3a6e 100%);
  color: var(--clr-white);
  padding-block: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--clr-accent-light);
  font-size: .8rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--clr-white);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 1rem;
  text-align: center;
}
.hero h1 span { color: var(--clr-accent); }

.hero__sub {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
}
.hero__stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.hero__stat span {
  font-size: .8rem;
  color: #94a3b8;
  margin-top: .2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-color: var(--clr-accent);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn--primary:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  color: var(--clr-primary);
}

.btn--outline {
  background: transparent;
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn--white:hover { background: #f1f5f9; color: var(--clr-primary); }

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); color: var(--clr-white); }

.btn--lg { padding: .75rem 1.75rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--sm { padding: .4rem .9rem; font-size: .8rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* ---------- Platform Cards (homepage) ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.platform-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.platform-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.platform-card--featured::before {
  content: '🔥 Top Pick';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-bottom-left-radius: var(--radius);
}

.platform-card__logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1729;
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  margin-bottom: .25rem;
}
.platform-card__logo img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.platform-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin: 0;
}

.platform-card__tagline {
  font-size: .875rem;
  color: var(--clr-text-muted);
  flex: 1;
}

.platform-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
  background: var(--clr-green-light);
  color: var(--clr-green);
}

.platform-card__footer {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Trusted Partners Strip ---------- */
.partners-strip {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 1.25rem;
}
.partners-strip .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.partners-strip__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.partners-strip__logos {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
}
.partners-strip__logos img {
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter .2s;
}
.partners-strip__logos img:hover {
  filter: grayscale(0) opacity(1);
}

/* ---------- Info Section (two-col) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.info-grid--reversed { direction: rtl; }
.info-grid--reversed > * { direction: ltr; }

.info-block h2 { margin-bottom: 1rem; }
.info-block p  { color: var(--clr-text-muted); margin-bottom: .9rem; }

.info-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}

.step-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  counter-increment: steps;
  box-shadow: var(--shadow-sm);
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-weight: 800;
  font-size: .85rem;
  border-radius: var(--radius-lg) 0 var(--radius) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 1rem; margin-bottom: .5rem; padding-top: .5rem; }
.step-card p  { font-size: .875rem; color: var(--clr-text-muted); margin: 0; }

/* ---------- Feature Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.feature-card p  { font-size: .875rem; color: var(--clr-text-muted); margin: 0; }

/* ---------- Comparison Table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--clr-white);
}
thead th {
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 700;
  padding: .85rem 1rem;
  text-align: left;
  white-space: nowrap;
}
thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
thead th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }
tbody tr { border-bottom: 1px solid var(--clr-border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: #f8fafc; }
td { padding: .8rem 1rem; vertical-align: top; }
td:first-child { font-weight: 600; color: var(--clr-primary); }
td strong { color: var(--clr-primary); }

/* ---------- Payment Methods ---------- */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.payment-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: .4rem .9rem;
  font-size: .875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.payment-pill img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 820px;
  margin-inline: auto;
}

details.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
details.faq-item[open] {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.1);
}
details.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--clr-accent);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .2s;
}
details.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item__body {
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  pointer-events: none;
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,158,11,.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--clr-white); margin-bottom: .75rem; position: relative; }
.cta-banner p  { color: #94a3b8; margin-bottom: 1.75rem; position: relative; max-width: 520px; margin-inline: auto; }
.cta-banner .btn-row { justify-content: center; position: relative; }

/* ---------- Responsible Gaming Strip ---------- */
.resp-strip {
  background: #fefce8;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding-block: .75rem;
  text-align: center;
  font-size: .8rem;
  color: #92400e;
}
.resp-strip strong { color: #78350f; }

/* ---------- Site Footer ---------- */
.site-footer {
  background: var(--clr-primary);
  color: #94a3b8;
  padding-block: 3rem 1.5rem;
}

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

.footer-brand__logo { margin-bottom: .75rem; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: .75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a {
  font-size: .875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--clr-accent); text-decoration: none; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
}
.site-footer__bottom a { color: #64748b; }
.site-footer__bottom a:hover { color: var(--clr-accent); }

.footer-logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-white);
  text-decoration: none;
}
.footer-logo-text span { color: var(--clr-accent); }

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-mid) 60%, #1e3a6e 100%);
  padding-block: 3rem 2.5rem;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero__breadcrumb {
  font-size: .8rem;
  color: #64748b;
  margin-bottom: .75rem;
}
.page-hero__breadcrumb a { color: #64748b; text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--clr-accent); }
.page-hero__breadcrumb span { margin-inline: .3rem; }
.page-hero h1 { color: var(--clr-white); margin-bottom: .75rem; max-width: 700px; margin-inline: auto; text-align: center; }
.page-hero h1 span { color: var(--clr-accent); }
.page-hero__sub {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 1.75rem;
}

/* Stats bar on hero */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 0;
}
.stats-bar__item {
  padding-inline: 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.stats-bar__item:first-child { padding-left: 0; }
.stats-bar__item:last-child  { border-right: none; }
.stats-bar__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.stats-bar__label {
  font-size: .75rem;
  color: #94a3b8;
}

/* ---------- Platform Hero Banner ---------- */
.platform-hero-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  max-height: 320px;
}
.platform-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Platform Info Box ---------- */
.platform-info-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.platform-info-box .table-wrap { box-shadow: none; border: none; }
.platform-info-box table { border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; }

/* ---------- Scrolling Logos (marquee) ---------- */
.marquee-wrap {
  overflow: hidden;
  background: var(--clr-white);
  border-block: 1px solid var(--clr-border);
  padding-block: .75rem;
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 2.5rem;
  align-items: center;
}
.marquee-inner img {
  height: 30px;
  object-fit: contain;
  filter: grayscale(.7) opacity(.65);
  flex-shrink: 0;
}
/* Override for hero-section marquees where images use inline white filter */
.page-hero .marquee-inner img,
.hero .marquee-inner img {
  filter: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Trustmarks ---------- */
.trustmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.trustmark {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  box-shadow: var(--shadow-sm);
}
.trustmark::before { content: '✓'; color: var(--clr-green); font-weight: 800; }

/* ---------- Two-col article ---------- */
.article-body {
  max-width: 780px;
  margin-inline: auto;
}
.article-body h2 { margin-top: 2.25rem; margin-bottom: .75rem; }
.article-body h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.article-body p  { color: var(--clr-text-muted); }
.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--clr-text-muted);
  font-size: .95rem;
  margin-bottom: .75rem;
}
.article-body ul li { margin-bottom: .3rem; }
.article-body ol {
  padding-left: 1.5rem;
  color: var(--clr-text-muted);
  font-size: .95rem;
  margin-bottom: .75rem;
}

/* ---------- Ratings Stars ---------- */
.rating {
  display: inline-flex;
  gap: 2px;
  color: var(--clr-accent);
  font-size: .9rem;
}

/* ---------- Sticky WhatsApp Button ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.55);
  text-decoration: none;
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-grid--reversed { direction: ltr; }
  .info-visual { max-height: 260px; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--clr-primary);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem 1rem;
    gap: .15rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .6rem .75rem; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0; margin-top: .25rem; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding-block: 2.5rem 2rem; }
  .section { padding-block: 2.5rem; }

  .steps-gr