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

:root {
  --primary: #181832;
  --secondary: #801213;
  --accent: #fab23c;
  --white: #ffffff;
  --surface: #1f1f42;
  --surface2: #252550;
  --muted: rgba(255, 255, 255, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* SVG icon helper */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon img,
.icon svg {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

/* ── UTILITIES ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 178, 60, 0.15);
  border: 1px solid rgba(250, 178, 60, 0.4);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.15s;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(128, 18, 19, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(250, 178, 60, 0.4);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}
.section-sub {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.95rem;
  max-width: 540px;
}

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 24, 50, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.88rem;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  color: var(--white);
}
.nav-toggle .icon {
  width: 26px;
  height: 26px;
}
#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 0;
}
#mobile-menu a {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#mobile-menu a:last-child {
  border-bottom: none;
}
#mobile-menu .btn {
  margin: 12px 20px;
  width: calc(100% - 40px);
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(
    135deg,
    #0d0d24 0%,
    var(--primary) 50%,
    #2a0a0b 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(128, 18, 19, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(250, 178, 60, 0.12) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 360px;
}
.card-float {
  position: absolute;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 20px;
  transition: transform 0.3s;
}
.card-float:nth-child(1) {
  width: 220px;
  top: 0;
  right: 0;
  transform: rotate(4deg);
}
.card-float:nth-child(2) {
  width: 240px;
  top: 80px;
  left: 0;
  transform: rotate(-3deg);
}
.card-float:nth-child(3) {
  width: 200px;
  bottom: 10px;
  right: 20px;
  transform: rotate(2deg);
}
.card-float:hover {
  transform: rotate(0) scale(1.03);
  z-index: 5;
}
.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  color: var(--accent);
}
.card-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.card-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.card-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 8px;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--secondary);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.9;
}
.marquee-item .icon {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SBOBET AGENT ── */
.sbobet-agent {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(160deg, #0a0a1e 0%, #181832 40%, #1e0808 100%);
}
.sbobet-agent-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(128,18,19,.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(0,48,135,.25) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 60% 90%, rgba(250,178,60,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero badge upgrade */
.hero-sbobet-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,48,135,.25);
  border: 1px solid rgba(0,158,226,.35);
  border-radius: 12px;
  padding: 8px 16px 8px 8px;
  margin-bottom: 20px;
}
.hero-sbobet-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 3px 8px;
}
.hero-sbobet-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-sbobet-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FFD700;
}
.hero-sbobet-since {
  font-size: 0.68rem;
  color: rgba(255,255,255,.6);
}

/* Agent section grid */
.sbobet-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.sbobet-agent-left { }
.sbobet-official-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.sbobet-big-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px 14px;
}
.sbobet-official-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250,178,60,.15);
  border: 1px solid rgba(250,178,60,.45);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
}
.sbobet-official-seal .icon { width: 14px; height: 14px; }

.sbobet-agent-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sbobet-agent-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

/* USP grid */
.sbobet-usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sbobet-usp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
  transition: border-color .2s, background .2s;
}
.sbobet-usp:hover {
  border-color: rgba(250,178,60,.35);
  background: rgba(250,178,60,.05);
}
.sbobet-usp-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(128,18,19,.4);
  border: 1px solid rgba(128,18,19,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sbobet-usp-icon .icon { width: 18px; height: 18px; }
.sbobet-usp-title {
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.sbobet-usp-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Stats strip */
.sbobet-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 28px 40px;
  gap: 0;
}
.sbobet-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  flex: 1;
  min-width: 120px;
}
.sbobet-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.sbobet-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.sbobet-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .sbobet-agent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sbobet-usp-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .sbobet-stats {
    padding: 20px 16px;
    gap: 4px;
  }
  .sbobet-stat {
    min-width: 45%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .sbobet-stat:last-child { border-bottom: none; }
  .sbobet-stat-sep { display: none; }
}

/* ── PROVIDERS ── */
.providers {
  padding: 60px 0;
}
.providers-header {
  text-align: center;
  margin-bottom: 48px;
}
.provider-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.provider-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  background: transparent;
  transition: 0.2s;
}
.provider-tab .icon {
  width: 16px;
  height: 16px;
}
.provider-tab.active,
.provider-tab:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.provider-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  min-height: 88px;
}
.provider-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.provider-logo-img {
  width: 120px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  filter: brightness(1) saturate(1);
  transition: filter 0.2s;
}
.provider-card:hover .provider-logo-img {
  filter: brightness(1.1) saturate(1.1);
}
.provider-type {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── PROMOTIONS ── */
.promotions {
  padding: 60px 0;
  background: var(--surface);
}
.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.promo-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.promo-card-1 {
  background: linear-gradient(135deg, #801213, #4a0708);
}
.promo-card-2 {
  background: linear-gradient(135deg, #1a3a6e, #0d1f40);
}
.promo-card-3 {
  background: linear-gradient(135deg, #2a4a1a, #162710);
}
.promo-card-4 {
  background: linear-gradient(135deg, #4a2a00, #2a1500);
}
.promo-card-5 {
  background: linear-gradient(135deg, #1a1a50, #0d0d2e);
}
.promo-card-6 {
  background: linear-gradient(135deg, #3a1a4a, #1a0a2a);
}
.promo-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(250, 178, 60, 0.15);
  filter: blur(30px);
}
.promo-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}
.promo-percent {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.promo-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.promo-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
}
.promo-tag .icon {
  width: 13px;
  height: 13px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 60px 0;
}
.how-header {
  text-align: center;
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.step:hover {
  border-color: var(--accent);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin: 0 auto 12px;
}
.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── PAYMENT ── */
.payment {
  padding: 70px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.payment-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 10% 50%, rgba(128,18,19,.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 90% 30%, rgba(250,178,60,.08) 0%, transparent 60%);
  pointer-events: none;
}
.payment-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Stats bar */
.pay-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 48px;
}
.pay-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}
.pay-stat-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.pay-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.pay-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Payment category blocks */
.pay-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pay-cat-block {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.pay-cat-block:hover {
  border-color: rgba(250,178,60,.35);
  transform: translateY(-3px);
}
.pay-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pay-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(128,18,19,.3);
  border: 1px solid rgba(128,18,19,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-cat-icon .icon {
  width: 22px;
  height: 22px;
}
.pay-cat-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.pay-cat-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Logo row inside each block */
.pay-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pay-logo-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.pay-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(250,178,60,.25);
}
.pay-logo-item img {
  width: 90px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.pay-logo-item--wide img {
  width: 140px;
  height: 52px;
}

/* Feature pills */
.pay-features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.pay-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color .2s, background .2s;
}
.pay-pill:hover {
  border-color: var(--accent);
  background: rgba(250,178,60,.08);
}
.pay-pill .icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .pay-categories {
    grid-template-columns: 1fr;
  }
  .pay-stats {
    padding: 20px 16px;
  }
  .pay-stat {
    padding: 0 16px;
  }
  .pay-stat-divider {
    display: none;
  }
  .pay-stat {
    min-width: 50%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .pay-stat:last-child {
    border-bottom: none;
  }
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 60px 0;
}
.testi-header {
  text-align: center;
  margin-bottom: 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}
.testi-card:hover {
  border-color: rgba(250, 178, 60, 0.4);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testi-stars .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.testi-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
}
.testi-loc {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #801213 0%, #4a0708 50%, #181832 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(250, 178, 60, 0.1) 0%,
    transparent 70%
  );
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── CONTACT ── */
.contact {
  padding: 60px 0;
  background: var(--surface);
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.contact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
}
.contact-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-value {
  font-weight: 700;
  font-size: 0.95rem;
}
.contact-24 {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── FOOTER ── */
footer {
  background: #0d0d1e;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-logo span {
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.social-btn .icon {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.social-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
/* Footer payment bar */
.footer-payment {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-payment-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-pay-item {
  background: #ffffff;
  border-radius: 7px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: opacity .2s, transform .2s;
}
.footer-pay-item:hover {
  opacity: .85;
  transform: translateY(-2px);
}
.footer-pay-item img {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}
.footer-pay-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: var(--white);
}
.footer-disclaimer {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  text-align: center;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  #mobile-menu.open {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
