@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --bg: #0b050e;
  --bg-card: #150d1b;
  --bg-surf: #23162b;
  --bg-surf2: #34223f;
  --accent: #ff551f;
  --accent2: #ff7343;
  --accent-red: #ff334b;
  --neon: #ffa500;
  --success: #2ec167;
  --text: #ffffff;
  --text2: #9d8fa9;
  --border: rgba(255, 85, 31, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── HEADER ── */
header {
  background: var(--bg-surf);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--text);
  background: var(--bg-surf2);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--text) !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; }

/* Mobile nav toggle */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MAIN WRAPPER ── */
main { position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 20px 60px;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,85,31,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  margin: 0 auto 40px;
  display: block;
  object-fit: cover;
  max-height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 60px rgba(255,85,31,0.12);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d93f00);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,85,31,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 6px 28px rgba(255,85,31,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-surf2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-surf);
  border-color: rgba(255,85,31,0.35);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 44px; font-size: 17px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.25; }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

h2 .accent { color: var(--accent); }

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

p { margin-bottom: 16px; color: var(--text2); }
p:last-child { margin-bottom: 0; }
p strong { color: var(--text); }

a { color: var(--accent); }
a:hover { color: var(--accent2); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(255,85,31,0.35);
  box-shadow: var(--shadow);
}

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── STAT BOX ── */
.stat-box {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--text2); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,85,31,0.12);
  border: 1px solid rgba(255,85,31,0.3);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── LISTS ── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--success);
  font-weight: 700;
}

ol.styled-list { padding-left: 0; counter-reset: item; list-style: none; }
ol.styled-list li {
  counter-increment: item;
  padding: 12px 0 12px 44px;
  position: relative;
  color: var(--text2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
ol.styled-list li:last-child { border-bottom: none; }
ol.styled-list li::before {
  content: counter(item);
  position: absolute; left: 0; top: 12px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

ul.dot-list { list-style: none; padding: 0; }
ul.dot-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--text2);
}
ul.dot-list li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── TABLE ── */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.styled-table th {
  background: var(--bg-surf);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text2);
  font-size: 15px;
}
.styled-table tr:hover td { background: rgba(255,255,255,0.02); }
.styled-table .val { color: var(--text); font-weight: 600; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,85,31,0.08), rgba(255,85,31,0.03));
  border: 1px solid rgba(255,85,31,0.25);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p { color: var(--text2); margin-bottom: 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-surf), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% -10%, rgba(255,85,31,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; }
.cta-section p { color: var(--text2); max-width: 560px; margin: 0 auto 32px; font-size: 17px; }

/* ── FAQ ── */
.faq-list { margin: 24px 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-a {
  display: none;
  padding: 0 20px 20px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 0 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.breadcrumb .current { color: var(--text); }

/* ── PAGE HEADER ── */
.page-hero {
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,85,31,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 28px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-surf);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin-top: 14px;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 8px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(157,143,169,0.7);
  line-height: 1.6;
  max-width: 800px;
}

.footer-18 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text2);
  border: 2px solid rgba(157,143,169,0.4);
  border-radius: 6px;
  padding: 2px 8px;
  flex-shrink: 0;
}

/* ── TRUST BADGES ── */
.trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
}
.trust-badge .icon {
  width: 32px; height: 32px;
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ── STEP BOXES ── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
}
.step-body h3 { font-size: 17px; margin-bottom: 6px; }
.step-body p { margin-bottom: 0; font-size: 15px; }

/* ── PAYMENT ICONS ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.payment-item {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
}
.payment-item:hover { border-color: rgba(255,85,31,0.3); color: var(--text); }
.payment-item .pico { font-size: 22px; display: block; margin-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg-surf);
    padding: 20px;
    gap: 4px;
    z-index: 99;
    overflow-y: auto;
  }
  nav.open a { font-size: 16px; padding: 12px 16px; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 20px; }
  .stat-val { font-size: 32px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.2s ease both; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,85,31,0.35); }
  50% { box-shadow: 0 4px 36px rgba(255,85,31,0.6); }
}
.btn-primary { animation: pulse-glow 2.5s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

/* ── RATING ── */
.rating-stars { color: var(--neon); font-size: 20px; letter-spacing: 2px; }
.rating-val { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--text); margin-left: 8px; }

/* CONTENT SECTION */
.content-body h2 { margin-top: 40px; }
.content-body h3 { margin-top: 28px; }
.content-body ul, .content-body ol { margin: 16px 0 20px 20px; color: var(--text2); }
.content-body ul li, .content-body ol li { margin-bottom: 8px; line-height: 1.6; }
