:root {
  --navy: #0D1B2A;
  --navy-mid: #162236;
  --navy-light: #1E3250;
  --white: #F8F9FA;
  --slate: #E8EDF2;
  --slate-mid: #B8C5D6;
  --red: #C8102E;
  --red-dark: #9E0D24;
  --gold: #D4A843;
  --gold-light: #E8C46A;
  --text-body: #2C3E50;
  --text-muted: #5D7A9A;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.12);
  --shadow-hover: 0 8px 40px rgba(13, 27, 42, 0.22);
}

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

html { scroll-behavior: smooth; }

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--gold); }

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--white); }
.nav-back svg { width: 16px; height: 16px; }

.breadcrumb-bar {
  background: var(--slate);
  border-bottom: 1px solid #DDE5EF;
  padding: 12px 24px;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

.platform-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0A2847 100%);
  padding: 56px 24px 64px;
  position: relative;
  overflow: hidden;
}

.platform-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.1);
  pointer-events: none;
}

.platform-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.platform-hero-logo {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-hover);
}

.platform-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-hero-info { flex: 1; min-width: 260px; }

.platform-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #2ECC71;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ECC71;
}

.platform-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.platform-hero-sub {
  font-size: 16px;
  color: var(--slate-mid);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.platform-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); }
.btn-secondary svg { width: 14px; height: 14px; }

.platform-hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-stat-item {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-lbl {
  font-size: 11px;
  color: var(--slate-mid);
  letter-spacing: 0.04em;
}

.platform-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.platform-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid #DDE5EF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-card-header {
  background: var(--navy);
  padding: 16px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar-facts {
  padding: 8px 0;
}

.sidebar-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #EEF2F7;
  gap: 12px;
}

.sidebar-fact:last-child { border-bottom: none; }

.sidebar-fact-label {
  font-size: 12px;
  color: var(--text-muted);
}

.sidebar-fact-value {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.sidebar-nav {
  list-style: none;
  padding: 8px 0;
}

.sidebar-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.sidebar-nav a:hover {
  color: var(--navy);
  background: var(--slate);
  border-left-color: var(--gold);
}

.sidebar-warning {
  background: #FFF5F5;
  border: 1px solid #FFCCCC;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 12px;
  color: #7D1A1A;
  line-height: 1.6;
}

.sidebar-warning strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.content-section {
  margin-bottom: 48px;
  scroll-margin-top: 88px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.content-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-section p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  background: var(--slate);
  border: 1px solid #DDE5EF;
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.feature-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--slate);
  color: var(--text-body);
  border: 1px solid #DDE5EF;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.payment-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.04em;
}

.payment-table th:first-child { border-radius: var(--radius) 0 0 0; }
.payment-table th:last-child { border-radius: 0 var(--radius) 0 0; }

.payment-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #EEF2F7;
  color: var(--text-muted);
  vertical-align: middle;
}

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

.payment-table tr:nth-child(even) td { background: var(--slate); }

.payment-yes {
  color: #2ECC71;
  font-weight: 700;
  font-size: 13px;
}

.payment-no {
  color: var(--slate-mid);
  font-size: 13px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.pros-box, .cons-box {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pros-box {
  background: #F0FAF4;
  border: 1px solid #B8E6C8;
}

.cons-box {
  background: #FFF8F0;
  border: 1px solid #F5D9A8;
}

.pros-box h4, .cons-box h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pros-box h4 { color: #1A6B3C; }
.cons-box h4 { color: #8B5E0A; }

.pros-box ul, .cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-box li, .cons-box li {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.pros-box li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #2ECC71;
  font-weight: 800;
}

.cons-box li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.platform-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  background: var(--slate);
  border: 1px solid #DDE5EF;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--red); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}

.faq-arrow svg { width: 12px; height: 12px; color: var(--text-muted); }

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--navy);
}

.faq-item.open .faq-arrow svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #DDE5EF;
  padding-top: 14px;
}

.verdict-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-top: 8px;
}

.verdict-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold-light);
}

.verdict-box p {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.verdict-box p:last-child { margin-bottom: 0; }

.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 48px 24px;
  text-align: center;
}

.cta-banner-inner { max-width: 640px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.65;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-banner .btn-primary:hover { opacity: 0.95; }

.cta-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.rp-trust-bar {
  background: var(--slate);
  border-top: 1px solid #DDE5EF;
  border-bottom: 1px solid #DDE5EF;
  padding: 28px 24px;
}

.rp-trust-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.rp-trust-bar__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}

.rp-trust-bar__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.rp-trust-bar__badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.rp-trust-bar__badge img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.rp-trust-bar__links {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
}

.rp-trust-bar__links a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.rp-trust-bar__links a:hover {
  color: var(--red);
  text-decoration: underline;
}

footer {
  background: var(--navy);
  padding: 80px 24px 28px;
}

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

.footer-legal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 20px;
}

.footer-legal p {
  font-size: 12px;
  color: rgba(184, 197, 214, 0.8);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-legal p:last-child { margin-bottom: 0; }
.footer-legal strong { color: rgba(184, 197, 214, 1); font-weight: 600; }
.footer-legal a { color: var(--gold-light); text-decoration: none; }

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy p {
  font-size: 12px;
  color: rgba(93, 122, 154, 0.7);
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-mid);
}

.footer-badge.age { border-color: rgba(200, 16, 46, 0.4); color: var(--red); }
.footer-badge.srij-f { border-color: rgba(212, 168, 67, 0.3); color: var(--gold); }

@media (max-width: 900px) {
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .platform-sidebar { position: static; }

  .feature-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }

  .platform-hero-stats { width: 100%; }
  .hero-stat-item { flex: 1; }
}

@media (max-width: 640px) {
  .platform-hero { padding: 40px 16px 48px; }
  .platform-layout { padding: 32px 16px 56px; }
  .platform-hero-stats { flex-direction: column; }
  .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .hero-stat-item:last-child { border-bottom: none; }
  .payment-table { font-size: 12px; }
  .payment-table th, .payment-table td { padding: 10px 12px; }
}
