@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #16161a;
  --bg-glass: rgba(22, 22, 26, 0.65);
  
  --text-primary: #f0f0f5;
  --text-secondary: #94a1b2;
  
  --accent-primary: #e11d48;
  --accent-hover: #be123c;
  --accent-gold: #d4af37;
  
  --border-light: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  stroke: var(--text-primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 120px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225,29,72,0.1) 0%, rgba(10,10,12,1) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: -1;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--accent-primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.search-box {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.search-box select {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 15px 25px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.search-box select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

/* Video Section (Placeholder) */
.video-section {
  padding: 5rem 0;
  text-align: center;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder-text {
  color: var(--text-secondary);
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.video-placeholder-text svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-secondary);
  opacity: 0.5;
}

/* Grid Profiles */
.profiles-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.profile-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 350px;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3); /* Gold hint on hover */
}

.card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card:hover .card-img img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(225, 29, 72, 0.9);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 1.5rem;
}

.card-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin-bottom: 0.5rem;
}

.card-name {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.card-age {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.card-location {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-call {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn-call:hover {
  background: white;
  color: black;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin: 1rem 0;
  font-weight: 600;
}

.mobile-nav-overlay a:hover {
  color: var(--accent-gold);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.close-menu svg {
  stroke: var(--text-primary);
}

/* SEO Content Section */
.seo-content-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.seo-text-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.seo-text-content p {
  margin-bottom: 1.5rem;
}

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

.seo-text-content strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Age Verification Modal */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-verification-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-verification-modal {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.age-verification-overlay.hidden .age-verification-modal {
  transform: translateY(-20px);
}

.age-verification-modal .alert-icon {
  margin-bottom: 1.5rem;
}

.age-verification-modal h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.age-verification-modal p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.age-verification-modal .question {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.age-verification-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-verification-actions button {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.age-error-msg {
  color: var(--accent-primary);
  margin-top: 1.5rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .search-box {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }
  
  .search-box select {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 15px 25px;
  }
  
  .btn-primary {
    width: 100%;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   HERO — CTA Group & Badges
   ============================================ */
.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
}

.badge-18 {
  background: rgba(225, 29, 72, 0.2);
  border: 1px solid rgba(225, 29, 72, 0.5);
  color: #f87171;
}

.badge-location {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-gold);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 12px 30px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   PROFILE CARD ENHANCEMENTS
   ============================================ */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 650px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.7;
}

.badge-available {
  background: rgba(37, 211, 102, 0.85) !important;
}

.card-rate-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 12, 0.85);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(4px);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.card-rate-text {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ============================================
   RATE TABLE SECTION
   ============================================ */
.rate-table-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin-top: 2rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rate-table th {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.78rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.rate-table td {
  padding: 0.9rem 1.25rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

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

.rate-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.avail-badge {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.table-contact-btn {
  background: #25D366;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.table-contact-btn:hover {
  background: #128C7E;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile responsive table */
@media (max-width: 600px) {
  .rate-table thead { display: none; }
  .rate-table, .rate-table tbody, .rate-table tr, .rate-table td {
    display: block;
    width: 100%;
  }
  .rate-table tr {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--bg-secondary);
  }
  .rate-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
  }
  .rate-table td:last-child { border-bottom: none; }
  .rate-table td::before {
    content: attr(data-label);
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
  }
}

/* ============================================
   SECOND SEO SECTION (alternate bg)
   ============================================ */
.seo-alt-bg {
  background-color: var(--bg-primary) !important;
}

.seo-text-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-text-content a:hover {
  color: var(--text-primary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(225, 29, 72, 0.2);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(225, 29, 72, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(225, 29, 72, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent-primary);
}

.step-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

.step-card a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   RUSSIAN SERVICE SECTION
   ============================================ */
.russian-service-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(225,29,72,0.05) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.russian-service-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.service-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  border: 1px solid rgba(225, 29, 72, 0.4);
  background: rgba(225, 29, 72, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.russian-service-text h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.russian-service-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.russian-service-text p:last-of-type {
  margin-bottom: 1.75rem;
}

.russian-service-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 200px;
}

.stat-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .russian-service-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .russian-service-stats {
    flex-direction: row;
    min-width: unset;
    justify-content: space-between;
  }
  .stat-item {
    flex: 1;
    padding: 1rem;
  }
  .stat-number { font-size: 1.3rem; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
}

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

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

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer-brand {
  align-items: flex-start !important;
  text-align: left !important;
}

.footer-logo {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-18-badge {
  display: inline-block;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 10px;
  font-family: var(--font-heading);
}

.footer-note {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-top: 0.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .btn-outline {
    width: 100%;
    text-align: center;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .russian-service-stats {
    flex-direction: column;
  }
}
