/* =========================================
   SafeTransfer U18 - Unified Stylesheet
   Light Theme - Professional RegTech Platform
   ========================================= */

/* -------- CSS Variables -------- */
:root {
  /* Primary Colors - from logo */
  --primary-navy: #1E3A5F;
  --primary-navy-dark: #152C4A;
  --primary-navy-light: #2A4A73;
  
  /* Accent Colors - lime green from logo */
  --accent-green: #7ED321;
  --accent-green-light: #9AE24A;
  --accent-green-dark: #5FB30D;
  
  /* Light Theme Colors */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-accent: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  
  /* Status Colors */
  --success: #22C55E;
  --warning: #EAB308;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1E3A5F 0%, #2A4A73 100%);
  --gradient-accent: linear-gradient(135deg, #7ED321 0%, #5FB30D 100%);
  --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-hero: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #F8FAFC 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 30px rgba(126, 211, 33, 0.25);
  --shadow-card: 0 4px 20px rgba(30, 58, 95, 0.08);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;

  /* Layout */
  --header-height: 80px;
}

/* -------- Reset & Base -------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-green);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* -------- Typography -------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-md); color: var(--gray-600); }

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-navy { color: var(--primary-navy); }
.text-muted { color: var(--gray-500); }
.text-accent { color: var(--accent-green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-sm { max-width: 960px; }
.container-lg { max-width: 1440px; }

.section { padding: var(--space-5xl) 0; position: relative; }
.section-sm { padding: var(--space-3xl) 0; }

.grid { display: grid; gap: var(--space-xl); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); align-items: start; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* -------- Header & Navigation -------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.header.scrolled .logo img { height: 42px; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-link {
  position: relative;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-sm) 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active { color: var(--primary-navy); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: var(--transition-base);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: flex; gap: var(--space-md); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  transition: var(--transition-base);
}


@media (max-width: 1024px) {
  .header-inner {
    position: static;
  }

  /* Отключаем сжатие хедера на мобильных */
  .header.scrolled {
    padding: var(--space-md) 0;
  }

  .header.scrolled .logo img {
    height: 50px;
  }

  .nav-links { display: none; }

  .mobile-toggle {
    display: flex;
    position: fixed;
    top: calc(var(--header-height) / 2);
    right: var(--space-xl);
    transform: translateY(-50%);
    z-index: 500;
  }

  .nav-cta { display: none; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 400;
  }

  .nav-link {
    display: inline-block;
  }
}


/*
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-cta { display: none; }
  .nav { position: relative; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
  }
}
*/
/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(126, 211, 33, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 211, 33, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-navy);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-navy {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-navy:hover { opacity: 0.9; color: var(--white); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: var(--radius-full); }

/* -------- Cards -------- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-accent { border-left: 4px solid var(--accent-green); }

.card-navy {
  background: var(--gradient-primary);
  border: none;
}

.card-navy .card-title, .card-navy .card-text { color: var(--white); }
.card-navy .card-text { color: rgba(255, 255, 255, 0.8); }

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(126, 211, 33, 0.15) 0%, rgba(126, 211, 33, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.75rem;
}

.card-title { font-size: 1.25rem; margin-bottom: var(--space-sm); color: var(--primary-navy); }
.card-text { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 0; }
/*
.feature-card { padding: var(--space-2xl); text-align: center; }
*/
.feature-card {
  padding: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}
.feature-card .card-icon { margin: 0 auto var(--space-lg); width: 80px; height: 80px; }

.stat-card { text-align: center; padding: var(--space-2xl); }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -------- Hero Section -------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237ED321' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 2; max-width: 650px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(126, 211, 33, 0.1);
  border: 1px solid rgba(126, 211, 33, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--accent-green-dark);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--primary-navy);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 450px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
}

/* -------- Section Headers -------- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-4xl); }
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  margin-bottom: var(--space-md);
}
.section-title { margin-bottom: var(--space-lg); }
.section-subtitle { font-size: 1.125rem; color: var(--gray-500); margin-bottom: 0; }

/* Section Variants */
.section-light { background: var(--gray-50); }

.section-navy { background: var(--gradient-primary); color: var(--white); }
.section-navy .section-label { color: var(--accent-green-light); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.section-navy .card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.section-navy .card-text { color: rgba(255, 255, 255, 0.7); }
.section-navy .card-title { color: var(--white); }
.section-navy .stat-number { color: var(--accent-green-light); }
.section-navy .stat-label { color: rgba(255, 255, 255, 0.6); }

/* -------- Forms -------- */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(126, 211, 33, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { min-height: 150px; resize: vertical; }

/* -------- Footer -------- */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand { max-width: 300px; }
/*
.footer-brand .logo { margin-bottom: var(--space-lg); }
.footer-brand .logo img { height: 60px; width: auto; }
*/
.footer-brand .logo {
  margin-bottom: var(--space-lg);
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-lg);
border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}
.footer-brand .logo:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-brand .logo img { height: 60px; width: auto; }

/**/
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; margin-bottom: var(--space-lg); }

.footer-social { display: flex; gap: var(--space-md); }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--accent-green); border-color: var(--accent-green); }

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent-green-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.footer-legal { display: flex; gap: var(--space-xl); }
.footer-legal a { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

/* -------- Team Section -------- */
/*
.team-card { text-align: center; padding: var(--space-2xl); }
.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(126, 211, 33, 0.3);
}
.team-name { font-size: 1.25rem; margin-bottom: var(--space-xs); color: var(--primary-navy); }
.team-role {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.team-bio { font-size: 0.9rem; color: var(--gray-500); }
*/
/* -------- Team Section -------- */
.team-card { text-align: center; padding: var(--space-2xl); }
.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(126, 211, 33, 0.3);
  overflow: hidden;
  border: 3px solid var(--white);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-name { font-size: 1.25rem; margin-bottom: var(--space-xs); color: var(--primary-navy); }
.team-role {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.team-bio { font-size: 0.9rem; color: var(--gray-500); }


/* -------- Timeline -------- */
.timeline { position: relative; padding-left: var(--space-3xl); }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--primary-navy) 100%);
}
.timeline-item { position: relative; padding-bottom: var(--space-2xl); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 2px);
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--accent-green);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.timeline-date { font-size: 0.875rem; font-weight: 600; color: var(--accent-green); margin-bottom: var(--space-sm); }
.timeline-content {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

/* -------- Pricing -------- */
/*
.pricing-card { padding: var(--space-2xl); text-align: center; position: relative; }
.pricing-card.featured { border: 2px solid var(--accent-green); transform: scale(1.05); }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-name { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.pricing-price { font-family: var(--font-display); font-size: 6rem; font-weight: 700; color: var(--primary-navy); margin-bottom: var(--space-sm); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.pricing-description { font-size: 0.95rem; color: var(--gray-500); margin-bottom: var(--space-xl); }
.pricing-features { list-style: none; text-align: left; margin-bottom: var(--space-xl); }
.pricing-features li { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) 0; font-size: 0.95rem; color: var(--gray-600); }
.pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }
*/

.pricing-card {
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 2.5rem;
}
.pricing-card.featured {
  border: 2px solid var(--accent-green);
  transform: scale(1.05);
  /*margin-top: 2.5rem;*/
  overflow: visible !important;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(126, 211, 33, 0.3);
  z-index: 10;
}
.pricing-name { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: var(--space-sm);
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-price span { font-size: 2rem; font-weight: 400; color: var(--gray-500); }
.pricing-description { font-size: 0.95rem; color: var(--gray-500); margin-bottom: var(--space-xl); min-height: 3rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: var(--space-xl); flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) 0; font-size: 0.95rem; color: var(--gray-600); }
.pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }

/* -------- Process Steps -------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--primary-navy));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-lg);
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.process-title { font-size: 1.125rem; margin-bottom: var(--space-sm); color: var(--primary-navy); }
.process-text { font-size: 0.9rem; color: var(--gray-500); }

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } .process-grid::before { display: none; } }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }

/* -------- Contact Info -------- */
.contact-info-card { display: flex; align-items: flex-start; gap: var(--space-lg); padding: var(--space-xl); }
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(126, 211, 33, 0.15) 0%, rgba(126, 211, 33, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-details h4 { font-size: 1rem; margin-bottom: var(--space-xs); }
.contact-details p { color: var(--gray-500); margin: 0; }

/* -------- Platform Visualization -------- */
.platform-visual {
  background: var(--primary-navy);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.platform-screen { background: var(--gray-900); border-radius: var(--radius-lg); overflow: hidden; }
.platform-header { background: var(--gray-800); padding: var(--space-md); display: flex; align-items: center; gap: var(--space-sm); }
.platform-dot { width: 12px; height: 12px; border-radius: 50%; }
.platform-dot.red { background: #EF4444; }
.platform-dot.yellow { background: #F59E0B; }
.platform-dot.green { background: #22C55E; }
.platform-body { padding: var(--space-xl); min-height: 400px; }

/* -------- Status & Badges -------- */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-compliant { background: rgba(34, 197, 94, 0.1); color: var(--success); }
.status-pending { background: rgba(234, 179, 8, 0.1); color: var(--warning); }
.status-alert { background: rgba(239, 68, 68, 0.1); color: var(--error); }

.progress-bar { height: 8px; background: var(--gray-200); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-accent); border-radius: var(--radius-full); transition: width 1s ease-out; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.25rem 0.75rem;
  background: rgba(126, 211, 33, 0.1);
  color: var(--accent-green-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-navy { background: rgba(30, 58, 95, 0.1); color: var(--primary-navy); }

/* -------- FAQ Accordion -------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: var(--transition-base);
  background: var(--white);
}
.faq-item:hover { border-color: var(--accent-green); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-align: left;
  cursor: pointer;
}
.faq-question:hover { color: var(--accent-green-dark); }
.faq-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--accent-green); transition: var(--transition-base); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--space-lg) var(--space-lg); color: var(--gray-600); display: none; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.3s ease-out; }

/* -------- Map -------- */
.map-container {
  position: relative;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 350px;
  border: 1px solid var(--gray-200);
}

/* -------- Animations -------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.animate-scale-in { animation: scaleIn 0.6s ease-out; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.stagger-children > * { opacity: 0; animation: fadeInUp 0.5s ease-out forwards; }
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }

/* -------- Utilities -------- */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

.hover-lift { transition: var(--transition-base); }
.hover-lift:hover { transform: translateY(-4px); }

.spinner { width: 40px; height: 40px; border: 3px solid var(--gray-200); border-top-color: var(--accent-green); border-radius: 50%; animation: spin 1s linear infinite; }

@media print { .header, .footer, .btn, .no-print { display: none !important; } body { color: #000; background: #fff; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
