/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Основные цвета */
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --danger: #ef4444;
  --warning: #f97316;
  --success: #10b981;
  
  /* Нейтральные цвета */
  --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;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  
  /* Тени */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
  
  /* Радиусы */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Анимации */
  --smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Atkinson Hyperlegible Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Atkinson Hyperlegible Next', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
}

h2 { 
  font-size: clamp(2rem, 4.5vw, 3.5rem); 
}

h3 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 2rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--smooth);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  color: var(--accent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.btn--full {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-family: inherit;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
  background: var(--gray-50);
  color: var(--gray-800);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== TOP STRIP ===== */
.top-strip {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 1rem 0;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.top-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.top-strip__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.top-strip__icon {
  font-size: 1.25rem;
  color: var(--secondary);
}

.top-strip a {
  color: var(--secondary);
  text-decoration: underline;
}

.top-strip a:hover {
  color: var(--white);
}

/* ===== HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--smooth);
}

/* Hide mobile menu on desktop */
.mobile-menu {
  display: none;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  transition: var(--smooth);
}

.header__brand:hover {
  transform: translateY(-2px);
  color: var(--primary);
}

.header__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
}

.header__name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav__link {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.nav__link:hover::before,
.nav__link.active::before {
  opacity: 0.1;
}

.nav__link:hover,
.nav__link.active {
  background: var(--gray-50);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.nav__link--cta {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

.nav__link--cta:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  transition: var(--smooth);
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--gray-600);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--gradient-primary);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder {
  text-align: center;
  color: var(--white);
}

.hero__image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.hero__image-placeholder span {
  font-size: 1.25rem;
  font-weight: 600;
}

.hero__floating-card {
  position: absolute;
  top: -20px;
  right: -20px;
}

.floating-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-100);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.floating-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.floating-card__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card__logo {
  width: 160px;
  height: 30px;
  object-fit: contain;
}

.floating-card__rating {
  text-align: center;
}

.rating__score {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.rating__stars {
  color: var(--accent);
  font-size: 0.875rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  animation: bounce 2s infinite;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.trust__header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.trust__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin: 0 auto;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--smooth);
}

.trust__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust__logo {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--smooth);
}

.trust__item:hover .trust__logo {
  filter: grayscale(0%);
  opacity: 1;
}

.trust__label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}

/* Responsive adjustments for trust section */
@media (max-width: 768px) {
  .trust-section {
    padding: 3rem 0;
  }
  
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
  }
  
  .trust__item {
    padding: 1rem;
  }
  
  .trust__title {
    font-size: 1.75rem;
  }
  
  .trust__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
  }
  
  .trust__item {
    padding: 0.75rem;
  }
  
  .trust__logo {
    height: 45px;
  }
  
  .trust__label {
    font-size: 0.75rem;
  }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TOP SITES SECTION ===== */
.top-sites-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.top-sites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.site-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--smooth);
  position: relative;
  overflow: hidden;
}

.site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s var(--bounce);
}

.site-card:hover::before {
  transform: scaleX(1);
}

.site-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl), 0 0 30px rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.site-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(139, 92, 246, 0.1);
}

.site-card__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.site-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.site-card__logo-container {
  display: flex;
  align-items: center;
}

.site-card__logo {
  width: 220px;
  height: 100px;
  object-fit: contain;
}

.site-card__rating {
  text-align: center;
}

.rating__score {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.rating__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rating__votes {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.site-card__features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--smooth);
}

.feature:last-child {
  border-bottom: none;
}

.feature:hover {
  transform: translateX(10px);
  background: var(--gray-50);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
}

.feature i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.feature strong {
  color: var(--primary);
}

.site-card__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.site-card__info {
  text-align: center;
}

.info__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 6rem 0;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.why-card__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.why-card h3 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.why-card p {
  margin-bottom: 0;
  color: var(--gray-600);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.faq__grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--smooth);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--smooth);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question i {
  color: var(--primary);
  transition: var(--smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--smooth);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-item__content h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.contact-item__content p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--smooth);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section {
  padding: 3rem 0;
  background: var(--gray-100);
}

.disclaimer {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.disclaimer__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--warning);
}

.disclaimer__header i {
  font-size: 1.5rem;
}

.disclaimer__header h3 {
  margin-bottom: 0;
  color: var(--warning);
}

.disclaimer p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.disclaimer__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.disclaimer__list li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.disclaimer__list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.disclaimer__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.disclaimer__logos img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--smooth);
}

.disclaimer__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--white);
  transition: var(--smooth);
}

.footer__brand:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-lg);
}

.footer__name {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__section p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.footer__section ul {
  list-style: none;
}

.footer__section li {
  margin-bottom: 0.75rem;
}

.footer__section a {
  color: var(--gray-400);
  transition: var(--smooth);
}

.footer__section a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer__legal p {
  color: var(--gray-500);
  margin-bottom: 0;
}

.footer__disclaimer p {
  color: var(--gray-500);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer__disclaimer strong {
  color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-100);
  backdrop-filter: blur(20px);
  z-index: 1000;
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-banner__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.cookie-banner__text p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 400px;
  transform: translateX(100%);
  opacity: 0;
  transition: var(--smooth);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification--success {
  border-left: 4px solid var(--success);
}

.notification--error {
  border-left: 4px solid var(--danger);
}

.notification--warning {
  border-left: 4px solid var(--warning);
}

.notification--info {
  border-left: 4px solid var(--primary);
}

.notification i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notification--success i {
  color: var(--success);
}

.notification--error i {
  color: var(--danger);
}

.notification--warning i {
  color: var(--warning);
}

.notification--info i {
  color: var(--primary);
}

.notification span {
  flex: 1;
  color: var(--gray-800);
  font-weight: 500;
}

.notification__close {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: var(--smooth);
}

.notification__close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

/* ===== ANIMATION UTILITIES ===== */
.animate-in {
  animation: slideInUp 0.6s var(--ease-out) forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  .contact__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header__nav {
    display: none;
  }
  
  .header__menu-toggle {
    display: flex;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-menu.active .mobile-menu__content {
    transform: translateX(0);
  }
  
  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
  }
  
  .mobile-menu__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
  }
  
  .mobile-menu__brand img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-lg);
  }
  
  .mobile-menu__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: var(--smooth);
  }
  
  .mobile-menu__close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
  }
  
  .mobile-menu__nav {
    padding: 1rem 0;
  }
  
  .mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--smooth);
    border-left: 3px solid transparent;
  }
  
  .mobile-menu__link:hover,
  .mobile-menu__link.active {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
  }
  
  .mobile-menu__link i {
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
  }
  
  .mobile-menu__link span {
    font-size: 1rem;
  }
  
  .mobile-menu__cta {
    margin: 1rem 1.5rem;
  }
  
  .mobile-menu__cta .btn {
    width: 100%;
    justify-content: center;
  }
}
  
  .hero {
    padding: 4rem 0;
    min-height: 80vh;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .disclaimer__logos {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
  
  .disclaimer__logos img {
    height: 50px;
  }
  
  .why__grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .top-strip__content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-banner__actions {
    justify-content: center;
  }

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .site-card {
    padding: 1.5rem;
  }
  
  .why-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn--lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile menu on small screens */
  .mobile-menu__content {
    width: 100%;
  }
  
  .mobile-menu__header {
    padding: 1rem;
  }
  
  .mobile-menu__brand {
    font-size: 1.125rem;
  }
  
  .mobile-menu__brand img {
    width: 28px;
    height: 28px;
  }
  
  .mobile-menu__link {
    padding: 0.875rem 1rem;
  }
  
  .mobile-menu__link i {
    font-size: 1rem;
  }
  
  .mobile-menu__link span {
    font-size: 0.9rem;
  }
  
  .mobile-menu__cta {
    margin: 1rem;
  }
  
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  
  .disclaimer__logos {
    flex-direction: column;
    gap: 1rem;
  }
  
  .disclaimer__logos img {
    height: 40px;
  }
}

/* ===== ICON REPLACEMENTS ===== */
/* Replace Font Awesome icons with Unicode symbols */
.fa-solid.fa-envelope::before { content: "✉"; }
.fa-solid.fa-house::before { content: "🏠"; }
.fa-solid.fa-trophy::before { content: "🏆"; }
.fa-solid.fa-comments::before { content: "💬"; }
.fa-solid.fa-circle-question::before { content: "❓"; }
.fa-solid.fa-play::before { content: "▶"; }
.fa-solid.fa-star::before { content: "⭐"; }
.fa-solid.fa-star-half-stroke::before { content: "⭐"; }
.fa-solid.fa-chevron-down::before { content: "▼"; }
.fa-solid.fa-times::before { content: "✕"; }
.fa-solid.fa-shield-halved::before { content: "🛡"; }
.fa-solid.fa-phone::before { content: "📞"; }
.fa-solid.fa-gift::before { content: "🎁"; }
.fa-solid.fa-dice::before { content: "🎲"; }
.fa-solid.fa-mobile-screen-button::before { content: "📱"; }
.fa-solid.fa-paper-plane::before { content: "✈"; }
.fa-solid.fa-exclamation-triangle::before { content: "⚠"; }
.fa-solid.fa-cookie-bite::before { content: "🍪"; }
.fa-solid.fa-crown::before { content: "👑"; }
.fa-solid.fa-ranking-star::before { content: "⭐"; }
.fa-solid.fa-clock::before { content: "🕐"; }
.fa-solid.fa-scale-balanced::before { content: "⚖"; }
.fa-solid.fa-building::before { content: "🏢"; }
.fa-solid.fa-server::before { content: "🖥"; }
.fa-solid.fa-copyright::before { content: "©"; }
.fa-solid.fa-link::before { content: "🔗"; }
.fa-solid.fa-database::before { content: "🗄"; }
.fa-solid.fa-gavel::before { content: "⚖"; }
.fa-solid.fa-users::before { content: "👥"; }
.fa-solid.fa-lightbulb::before { content: "💡"; }
.fa-solid.fa-user-shield::before { content: "🛡"; }
.fa-solid.fa-gears::before { content: "⚙"; }
.fa-solid.fa-share-nodes::before { content: "🔗"; }
.fa-solid.fa-lock::before { content: "🔒"; }
.fa-solid.fa-calendar::before { content: "📅"; }
.fa-solid.fa-list-check::before { content: "✅"; }
.fa-solid.fa-globe::before { content: "🌍"; }
.fa-solid.fa-children::before { content: "👶"; }
.fa-solid.fa-heart-pulse::before { content: "❤"; }
.fa-solid.fa-info-circle::before { content: "ℹ"; }
.fa-solid.fa-tools::before { content: "🔧"; }
.fa-solid.fa-ban::before { content: "🚫"; }
.fa-solid.fa-file-lines::before { content: "📄"; }
.fa-regular.fa-file-lines::before { content: "📄"; }
.fa-solid.fa-check-circle::before { content: "✅"; }

/* Hide the original Font Awesome content */
.fa-solid::before,
.fa-regular::before {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #0f172a;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;
  }
  
  body {
    background: var(--white);
    color: var(--gray-800);
  }
  
  .header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: var(--gray-100);
  }
  
  .site-card, .why-card, .contact-form {
    background: var(--gray-50);
    border-color: var(--gray-100);
  }
  
  .faq-item {
    background: var(--gray-50);
    border-color: var(--gray-100);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PAGE STYLES ===== */
/* Page Hero */
.page-hero {
  padding: 6rem 0 4rem;
  background: var(--gray-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero h1 i {
  color: var(--primary);
  font-size: 0.8em;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  padding: 2rem 0 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--smooth);
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

.breadcrumb .separator {
  color: var(--gray-400);
  margin: 0 0.5rem;
}

.breadcrumb span:last-child {
  color: var(--gray-600);
  font-weight: 500;
}

/* Content */
.content {
  padding: 4rem 0;
  background: var(--white);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Cards Page */
.cards-page, .card-page {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--smooth);
}

.cards-page:hover, .card-page:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.cards-page h2, .card-page h2 {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.75rem;
}

.cards-page h2 i, .card-page h2 i {
  color: var(--primary);
  font-size: 1.2em;
}

.cards-page p, .card-page p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cards-page ul, .card-page ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.cards-page li, .card-page li {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.cards-page li::before, .card-page li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.cards-page strong, .card-page strong {
  color: var(--gray-800);
  font-weight: 600;
}

.cards-page a, .card-page a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--smooth);
}

.cards-page a:hover, .card-page a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Tip and Callout */
.tip, .callout {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.callout {
  border-left-color: var(--warning);
  background: #fef3c7;
}

.tip strong, .callout strong {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.callout strong {
  color: var(--warning);
}

.tip p, .callout p {
  margin: 0;
  color: var(--gray-700);
}

/* Help Lines and Limits */
.helplines, .limits {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.helplines h3, .limits h3 {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.helplines h3 i, .limits h3 i {
  color: var(--primary);
}

.helplines ul, .limits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.helplines li, .limits li {
  color: var(--gray-600);
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  transition: var(--smooth);
}

.helplines li:hover, .limits li:hover {
  background: var(--gray-100);
  transform: translateX(5px);
}

.helplines strong, .limits strong {
  color: var(--primary);
  font-weight: 600;
}

/* Site Header (for other pages) */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--smooth);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  transition: var(--smooth);
}

.brand:hover {
  transform: translateY(-2px);
}

.brand__img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
}

.brand__name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation for other pages */
.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav a {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  text-decoration: none;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.nav a:hover::before {
  opacity: 0.1;
}

.nav a:hover {
  background: var(--gray-50);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.nav a.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.nav a.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

.nav a.btn--primary:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  transition: var(--smooth);
}

/* Site Footer (for other pages) */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--smooth);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  margin: 0;
}

/* Responsive for other pages */
@media (max-width: 768px) {
  .wrap {
    padding: 0 1rem;
  }
  
  .nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav.active {
    transform: translateY(0);
  }
  
  .burger {
    display: flex;
  }
  
  .page-hero {
    padding: 4rem 0 3rem;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cards-page, .card-page {
    padding: 1.5rem;
  }
  
  .cards-page h2, .card-page h2 {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1.125rem;
  }
  
  .cards-page, .card-page {
    padding: 1rem;
  }
  
  .cards-page h2, .card-page h2 {
    font-size: 1.25rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .site-header,
  .site-footer,
  .cookie-banner,
  .btn,
  .top-strip {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .site-card, .why-card, .cards-page, .card-page {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}


