/* ═══════════════════════════════════════════════════════════════
   LEXONYX - Boutique International Law Practice
   Design System v3.0 (FINAL)
   
   Colors:
   - Deep Navy:      #0B1526 (trust, professionalism)
   - Champagne Gold: #D4AF37 (premium, quality)
   - Platinum:       #E8ECF1 (clarity, transparency)
   - Royal Blue:     #2E5EAA (EU, stability)
   
   Fonts:
   - Headings: Montserrat (700-800)
   - Body:     Inter (400-600)
   
   Philosophy: Professional but approachable, European sophistication
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ROOT VARIABLES
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ===== ENHANCED COLOR SYSTEM ===== */
  
  /* Primary Navy Shades */
  --navy-deep: #0B1526;      /* Main background - KEEP */
  --navy-medium: #1a2942;     /* NEW - Alternating sections */
  --navy-light: #243452;      /* NEW - Hover states */
  
  /* Gold Shades */
  --gold-champagne: #D4AF37;  /* Main accent - KEEP */
  --gold-dark: #B8941F;       /* NEW - Hover on gold */
  --gold-light: #E8C76B;      /* NEW - Highlights */
  
  /* Neutrals - KEEP */
  --platinum: #E8ECF1;
  --blue-royal: #2E5EAA;
  --text-silver: #B8BFC9;
  
  /* ===== NEW: Glass Effects ===== */
  --overlay-dark: rgba(11, 21, 38, 0.95);
  --glass-ultra-light: rgba(232, 236, 241, 0.03);
  --glass-light: rgba(232, 236, 241, 0.08);
  --glass-medium: rgba(232, 236, 241, 0.15);
  
  /* ===== NEW: Shadows ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
  --shadow-gold-lg: 0 12px 50px rgba(212, 175, 55, 0.4);
  
  /* Gradients, spacing, fonts - KEEP AS IS */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  --gradient-navy: linear-gradient(180deg, #0B1526 0%, #162236 100%);
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--platinum);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Основной текст */
p, li {
  font-size: 1.125rem;  /* БЫЛО 1rem → ТЕПЕРЬ 1.125rem (18px) */
  line-height: 1.8;
  color: var(--text-silver);
}

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

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

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

button {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* ═══════════════════════════════════════════════════════════════
   CONTAINER & LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spacing {
  padding: 6rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-champagne);
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--glass-medium);
  border-top-color: var(--gold-champagne);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 21, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-light);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(11, 21, 38, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.logo .highlight {
  color: var(--gold-champagne);
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.menu a {
  color: var(--text-silver);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-champagne);
  transition: width var(--transition-smooth);
}

.menu a:hover,
.menu a.active {
  color: #fff;
}

.menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: var(--glass-light);
  border-radius: var(--radius-sm);
}

.lang-link {
  padding: 0.3rem 0.8rem;
  color: var(--text-silver);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.lang-link:hover {
  color: #fff;
  background: var(--glass-medium);
}

.lang-link.active {
  color: var(--navy-deep);
  background: var(--gold-champagne);
}

.btn-consult {
  padding: 0.75rem 1.75rem;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-champagne);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: 50px;
  color: var(--gold-champagne);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);  /* БЫЛО 4.5rem → ТЕПЕРЬ 5.5rem */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-headline .highlight {
  color: var(--gold-champagne);
  display: block;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-silver);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--text-silver);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED BUTTON INTERACTIONS
   ═══════════════════════════════════════════════════════════════ */

.btn-primary,
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: var(--navy-deep);
}

/* Ripple effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(212, 175, 55, 0.5),
    0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Arrow animation */
.btn-primary i,
.btn-secondary i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-primary:hover i,
.btn-secondary:hover i {
  transform: translateX(5px);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--gold-champagne);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold-champagne);
  transition: width 0.4s ease;
  z-index: 0;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.btn-secondary span {
  position: relative;
  z-index: 1;
}

/* Loading state (optional) */
.btn-primary.loading,
.btn-secondary.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--navy-deep);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  color: var(--gold-champagne);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);  /* БЫЛО 3rem → ТЕПЕРЬ 3.75rem */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-title .text-gold {
  color: var(--gold-champagne);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-silver);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--glass-medium);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-silver);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  padding: 1.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-md);
}

.highlight-item h4 {
  color: var(--gold-champagne);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: var(--text-silver);
  font-size: 0.95rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS GRID
   ═══════════════════════════════════════════════════════════════ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.premium-card {
  position: relative;
  padding: 2.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* NEW: Glow effect on hover */
.premium-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    transparent,
    var(--gold-champagne),
    transparent
  );
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.premium-card:hover::before {
  opacity: 0.3;
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-champagne);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px var(--gold-champagne);
}

/* Icon animation inside card */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Title color change */
.premium-card:hover .card-title {
  color: var(--gold-champagne);
  transition: color 0.3s ease;
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);  /* Увеличено */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-silver);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-features {
  list-style: none;
}

.card-features li {
  color: var(--text-silver);
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--glass-light);
}

.card-features li:last-child {
  border-bottom: none;
}

.card-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-champagne);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE SECTION
   ═══════════════════════════════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-champagne);
}

.why-icon {
  font-size: 3rem;
  color: var(--gold-champagne);
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-silver);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   JURISDICTIONS
   ═══════════════════════════════════════════════════════════════ */

.jurisdictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.jurisdiction-card {
  padding: 2.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.jurisdiction-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-champagne);
}

.jur-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jur-flag {
  font-size: 2.5rem;
}

.jur-name {
  font-size: 1.75rem;
  color: #fff;
}

.jur-description {
  color: var(--text-silver);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.jur-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.jur-features li {
  color: var(--text-silver);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.jur-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-champagne);
  font-weight: bold;
}

.jur-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.jur-tag {
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold-champagne);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ═══════════════════════════════════════════════════════════════ */

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-champagne) 0%, transparent 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--gold-champagne);
  border: 3px solid var(--navy-deep);
  border-radius: 50%;
}

.timeline-item:hover {
  transform: translateX(10px);
  border-color: var(--gold-champagne);
}

.timeline-step {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold-champagne);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.timeline-item p {
  color: var(--text-silver);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-item {
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-champagne);
  background: var(--glass-medium);
}

.faq-item.active {
  border-color: var(--gold-champagne);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

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

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
  color: var(--gold-champagne);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-champagne);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 2rem;
  overflow: hidden;
  display: none;  /* ← КРИТИЧНО! */
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 2rem 1.5rem;
  display: block;  /* ← КРИТИЧНО! */
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-silver);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */

.contact-section {
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05), transparent 70%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-silver);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-benefits {
  list-style: none;
}

.contact-benefits li {
  color: var(--text-silver);
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.contact-benefits li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-champagne);
}

.contact-form {
  padding: 3rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(11, 21, 38, 0.5);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-champagne);
  background: rgba(11, 21, 38, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: rgba(11, 21, 38, 0.5);
  border-top: 1px solid var(--glass-light);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-champagne);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-description {
  color: var(--text-silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-sm);
  color: var(--gold-champagne);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-section h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

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

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

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-light);
  text-align: center;
}

.footer-disclaimer {
  color: var(--text-silver);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-copyright {
  color: var(--text-silver);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

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

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

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

/* ═══════════════════════════════════════════════════════════════
   FLOATING CONTACT BUTTON (💬)
   ═══════════════════════════════════════════════════════════════ */

.floating-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
}

/* Главная кнопка */
.float-btn {
  width: 55px;
  height: 55px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gold-champagne);
  color: var(--navy-deep);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Меню */
.float-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-contact.active .float-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  color: var(--gold-champagne);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.float-menu-item:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
  transform: translateX(-3px);
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON (⬆️)
   ═══════════════════════════════════════════════════════════════ */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem; /* Чтобы не мешал floating-contact */
  width: 50px;
  height: 50px;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(11, 21, 38, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transition: left var(--transition-smooth);
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-right {
    display: none;
  }
  
  .section-spacing {
    padding: 4rem 0;
  }
  
  .cards-grid,
  .jurisdictions-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .floating-contact,
  .scroll-top {
    width: 50px;
    height: 50px;
    right: 1rem;
  }
  
  .floating-contact {
    bottom: 5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .premium-card,
  .jurisdiction-card,
  .timeline-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* ===== ALTERNATING SECTION BACKGROUNDS ===== */

.section-dark {
  background: var(--navy-deep);
  position: relative;
}

.section-medium {
  background: var(--navy-medium);
  position: relative;
}

/* Subtle gradient for depth */
.section-spotlight {
  background: radial-gradient(
    circle at 50% 0%, 
    rgba(46, 94, 170, 0.08), 
    transparent 70%
  ), var(--navy-deep);
}

.section-gold-glow {
  background: radial-gradient(
    circle at 50% 0%, 
    rgba(212, 175, 55, 0.08), 
    transparent 70%
  ), var(--navy-deep);
}

/* ===== SCROLL REVEAL ANIMATION ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ═══════════════════════════════════════════════════════════════
   ENHANCED REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Animation variants */
.reveal-fade {
  transition: opacity 1s ease;
}

.reveal-slide-left,
.reveal-slide-right {
  transition: opacity 0.8s ease,
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
  transition: opacity 0.6s ease,
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM CARD HOVER EFFECTS
   ═══════════════════════════════════════════════════════════════ */

.premium-card,
.metric-card,
.jurisdiction-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow border effect */
.premium-card::before,
.metric-card::before,
.jurisdiction-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    transparent,
    var(--gold-champagne),
    transparent
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.premium-card:hover::before,
.metric-card:hover::before,
.jurisdiction-card:hover::before {
  opacity: 0.4;
}

.premium-card:hover,
.metric-card:hover,
.jurisdiction-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* Icon animation */
.card-icon,
.metric-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card:hover .card-icon,
.metric-card:hover .metric-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Title color change */
.premium-card:hover .card-title,
.metric-card:hover .metric-label,
.jurisdiction-card:hover .jur-name {
  color: var(--gold-champagne);
  transition: color 0.3s ease;
}

/* Shimmer effect on hover */
.premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.premium-card:hover::after {
  left: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING CONTACT BUTTON
   ═══════════════════════════════════════════════════════════════ */

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.float-btn:active {
  transform: scale(0.95);
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-deep);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Floating Menu */
.float-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact.active .float-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.float-menu-item:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
  transform: translateX(-5px);
}

.float-menu-item i {
  font-size: 1.25rem;
}

.float-menu-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Animation on scroll */
.floating-contact.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .float-tooltip {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST METRICS SECTION
   ═══════════════════════════════════════════════════════════════ */

.trust-metrics {
  background: var(--navy-medium, #1a2942);
  padding: 4rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.metric-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Glow effect on hover */
.metric-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    transparent,
    var(--gold-champagne),
    transparent
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.metric-card:hover::before {
  opacity: 0.3;
}

.metric-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-champagne);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card:hover .metric-icon {
  transform: scale(1.2) rotate(10deg);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-champagne);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.metric-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.metric-description {
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .metric-card {
    padding: 2.5rem 2rem;
  }
  
  .metric-number {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CREDENTIALS BAR
   ═══════════════════════════════════════════════════════════════ */

.credentials-bar {
  background: var(--navy-deep);
  border-top: 1px solid var(--glass-light);
  border-bottom: 1px solid var(--glass-light);
  padding: 2.5rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: var(--glass-medium);
  border-color: var(--gold-champagne);
  transform: translateY(-3px);
}

.credential-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-radius: var(--radius-sm);
  color: var(--gold-champagne);
  font-size: 1.5rem;
}

.credential-content {
  flex: 1;
}

.credential-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.credential-label {
  font-size: 0.875rem;
  color: var(--text-silver);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */

.testimonials-section {
  background: radial-gradient(
    circle at 50% 0%, 
    rgba(212, 175, 55, 0.05), 
    transparent 70%
  ), var(--navy-deep);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gold-champagne);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-champagne);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-stars i {
  color: var(--gold-champagne);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-silver);
  flex: 1;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-medium);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 0.875rem;
  color: var(--text-silver);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE SECTION
   ═══════════════════════════════════════════════════════════════ */

.why-choose-section {
  background: var(--navy-medium, #1a2942);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.why-card {
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-champagne);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-radius: var(--radius-md);
  color: var(--gold-champagne);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-champagne);
  color: var(--navy-deep);
}

.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.why-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-silver);
  margin-bottom: 1.5rem;
}

.why-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-features li {
  font-size: 0.95rem;
  color: var(--text-silver);
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.why-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-champagne);
  font-size: 0.75rem;
}

/* Comparison Table */
.comparison-wrapper {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
}

.comparison-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--glass-medium);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--glass-medium);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.comparison-header .comparison-cell {
  font-weight: 700;
  color: var(--gold-champagne);
  font-size: 1.125rem;
}

.comparison-cell {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-cell.highlight {
  color: #fff;
  font-weight: 600;
}

.comparison-cell i.fa-check {
  color: #4ade80;
  font-size: 1.125rem;
}

.comparison-cell i.fa-times {
  color: #ef4444;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .comparison-cell {
    padding: 1rem;
  }
  
  .comparison-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FORM MESSAGES
   ═══════════════════════════════════════════════════════════════ */

.form-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-message i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.form-message p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: inherit;
}

/* Loading button state */
.form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.form-submit.loading i {
  margin-right: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR (OPTIONAL)
   ═══════════════════════════════════════════════════════════════ */

.custom-cursor,
.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-cursor {
  width: 10px;
  height: 10px;
  background: var(--gold-champagne);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-champagne);
  opacity: 0.5;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-follower.hover {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0.8;
}

/* Hide default cursor on interactive elements */
@media (min-width: 1024px) {
  a, button, .premium-card, .metric-card {
    cursor: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   KEYBOARD FOCUS STATES
   ═══════════════════════════════════════════════════════════════ */

*:focus-visible {
  outline: 2px solid var(--gold-champagne);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-champagne);
  outline-offset: 4px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Resources Section */
.resources-section {
  background: var(--navy-medium);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.resource-card {
  padding: 2.5rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-medium);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-champagne);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.resource-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.resource-description {
  font-size: 1rem;
  color: var(--text-silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-champagne);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.resource-link:hover {
  gap: 1rem;
}
