:root {
  --bg: #0b0d11;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #a6adbb;
  --gold: #d8b36a;
  --gold-2: #f0d7a1;
  --green: #25d366;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #08090c 0%, #0b0d11 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 12, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.topbar a {
  color: var(--gold-2);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 179, 106, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.lead {
  margin: 0;
  max-width: 65ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #111;
  box-shadow: 0 16px 36px rgba(216, 179, 106, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.stat,
.hero-card,
.cta-card,
.feature-card,
.condition-card,
.faq-item,
.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat {
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-card {
  border-radius: 30px;
  padding: 32px;
}

.hero-card-centered {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-brand-large {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px;
}

.hero-brand-large img {
  width: min(100%, 320px);
  max-height: 320px;
  object-fit: contain;
}

.card-panel {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.panel-label {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

.card-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.card-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 92px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-centered {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.faq-intro h2,
.cta-card h2,
.two-col h2 {
  margin: 14px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p,
.faq-intro p,
.cta-card p,
.two-col p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.logos-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.brands-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.brand-logo-card {
  min-height: 110px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.brand-logo-card img {
  max-width: 180px;
  max-height: 70px;
  transform: scale(1.2);
  object-fit: contain;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.condition-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-card h3,
.condition-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature-card p,
.condition-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  padding: 18px;
}

.step-number {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(216, 179, 106, 0.22), rgba(216, 179, 106, 0.08));
  border: 1px solid rgba(216, 179, 106, 0.22);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 24px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.conditions-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.conditions-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.condition-card {
  min-height: 140px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  padding: 0 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 72px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.cta-block {
  padding-top: 10px;
}

.cta-card {
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.24), transparent 70%);
  pointer-events: none;
}

.footer {
  padding: 28px 0 80px;
}

.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer p {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--gold-2);
  font-weight: 600;
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow:
    0 20px 60px rgba(37, 211, 102, 0.5),
    0 0 0 8px rgba(37, 211, 102, 0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow:
    0 28px 72px rgba(37, 211, 102, 0.62),
    0 0 0 10px rgba(37, 211, 102, 0.14);
}

.wa-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.delay-1 {
  transition-delay: .12s;
}

.reveal.delay-2 {
  transition-delay: .24s;
}

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

@media (max-width: 1080px) {

  .hero-grid,
  .two-col,
  .faq-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .conditions-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-centered {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    min-height: 58px;
    font-size: 12px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-stats,
  .feature-grid,
  .conditions-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-logo-card {
    min-height: 92px;
    padding: 12px;
    border-radius: 16px;
  }

  .brand-logo-card img {
    max-width: 140px;
    max-height: 52px;
    transform: scale(1.08);
    object-fit: contain;
  }

  .step {
    grid-template-columns: 64px 1fr;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-wa {
    width: 64px;
    height: 64px;
    right: 14px;
    bottom: 14px;
  }

  .wa-icon {
    width: 38px;
    height: 38px;
  }
}