/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* New Color System */
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #E0E7FF;
  --secondary: #EC4899;
  --secondary-dark: #DB2777;
  --secondary-light: #FCE7F3;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --success: #10B981;
  --error: #EF4444;
  
  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  
  /* Backgrounds */
  --bg-primary: #FAFBFF;
  --bg-secondary: #F8FAFC;
  --bg-accent: #FFF7ED;
  
  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing System (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  font-weight: 400;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 800;
  line-height: 1.05;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 700;
  line-height: 1.1;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 600;
}

h4 { 
  font-size: 1.25rem; 
  font-weight: 600; 
}

h5 { 
  font-size: 1.125rem; 
  font-weight: 600; 
}

p { 
  line-height: 1.7; 
  color: var(--gray-600);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.75;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
  display: block;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { 
  padding: var(--space-24) 0; 
}

.section--sm { 
  padding: var(--space-16) 0; 
}

.section--lg { 
  padding: var(--space-32) 0; 
}

.section--primary { 
  background: var(--bg-primary); 
}

.section--secondary { 
  background: var(--bg-secondary); 
}

.section--accent { 
  background: var(--bg-accent); 
}

.section--dark { 
  background: var(--gray-900); 
  color: var(--white);
}

.section__header { 
  max-width: 800px; 
  margin-bottom: var(--space-16); 
}

.section__header--center { 
  text-align: center; 
  margin: 0 auto var(--space-16); 
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-top: var(--space-4);
  line-height: 1.7;
  font-weight: 400;
}

.section--dark .section__subtitle,
.section--dark h1,
.section--dark h2,
.section--dark h3 { 
  color: var(--gray-100); 
}

.section--dark .section-label { 
  color: var(--primary-light); 
}

/* Center alignment for specific sections */
.section--center {
  text-align: center;
}

.section--center .section__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section--center .pain__grid,
.section--center .features__grid,
.section--center .how__grid,
.section--center .scenarios__grid,
.section--center .products__grid,
.section--center .stats__grid {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.btn--primary:hover { 
  background: var(--primary-dark); 
  border-color: var(--primary-dark); 
  color: var(--white); 
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary { 
  background: var(--secondary); 
  color: var(--white); 
  border-color: var(--secondary); 
}

.btn--secondary:hover { 
  background: var(--secondary-dark); 
  border-color: var(--secondary-dark); 
  color: var(--white); 
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn--outline:hover { 
  background: var(--primary); 
  color: var(--white); 
  transform: translateY(-1px);
}

.btn--ghost { 
  background: transparent; 
  color: var(--gray-700); 
  border-color: transparent; 
  box-shadow: none;
}

.btn--ghost:hover { 
  background: var(--gray-100); 
  color: var(--gray-900); 
}

.btn--white { 
  background: var(--white); 
  color: var(--gray-900); 
  border-color: var(--white); 
}

.btn--white:hover { 
  background: var(--gray-100); 
  color: var(--gray-900); 
  transform: translateY(-1px);
}

.btn--outline-white { 
  background: transparent; 
  color: var(--white); 
  border-color: var(--white); 
}

.btn--outline-white:hover { 
  background: var(--white); 
  color: var(--gray-900); 
  transform: translateY(-1px);
}

.btn--sm { 
  padding: var(--space-2) var(--space-4); 
  font-size: 0.875rem; 
}

.btn--lg { 
  padding: var(--space-4) var(--space-8); 
  font-size: 1.0625rem; 
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.site-logo:hover {
  transform: scale(1.02);
}

.site-logo__img { 
  width: 48px; 
  height: 48px; 
  flex-shrink: 0; 
}

.site-logo__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.site-logo__name span { 
  color: var(--primary); 
}

.header-cta { 
  display: flex; 
  align-items: center; 
  gap: var(--space-3); 
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.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='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title { 
  color: var(--white); 
  margin-bottom: var(--space-5); 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions { 
  display: flex; 
  gap: var(--space-4); 
  flex-wrap: wrap; 
}

.hero__placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
}

/* ===== PRODUCT PRICING ===== */
.product-card__price {
  margin: var(--space-6) 0;
  text-align: center;
}

.product-card__price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.product-card--featured .product-card__price-amount {
  color: var(--white);
}

.product-card__price-period {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

.product-card--featured .product-card__price-period {
  color: var(--gray-300);
}

/* ===== PLACEHOLDER ===== */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.photo-placeholder:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.photo-placeholder--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.photo-placeholder--dark:hover {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.photo-placeholder svg { 
  width: 40px; 
  height: 40px; 
  color: var(--gray-400); 
}

.photo-placeholder--dark svg { 
  color: rgba(255, 255, 255, 0.4); 
}

.placeholder-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.photo-placeholder--dark .placeholder-label { 
  color: rgba(255, 255, 255, 0.6); 
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.card__icon {
  width: 56px; 
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: transform 0.3s ease;
}

.card:hover .card__icon {
  transform: scale(1.1);
}

.card__icon svg { 
  width: 28px; 
  height: 28px; 
}

.card__icon--primary { 
  background: var(--primary-light); 
  color: var(--primary); 
}

.card__icon--secondary { 
  background: var(--secondary-light); 
  color: var(--secondary); 
}

.card__icon--accent { 
  background: var(--accent-light); 
  color: var(--accent); 
}

.card__title { 
  font-size: 1.125rem; 
  font-weight: 600; 
  color: var(--gray-900); 
  margin-bottom: var(--space-3); 
}

.card__text { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  line-height: 1.7; 
}

/* ===== PAIN POINTS ===== */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

/* ===== FEATURES ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* ===== HOW IT WORKS ===== */
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.how__step { 
  text-align: center; 
  padding: var(--space-8) var(--space-6); 
  position: relative;
}

.how__step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  z-index: 1;
}

.how__step:last-child::after {
  display: none;
}

.how__step-num {
  width: 72px; 
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.how__step-title { 
  font-size: 1.125rem; 
  font-weight: 600; 
  color: var(--gray-900); 
  margin-bottom: var(--space-3); 
}

.how__step-text { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  line-height: 1.7; 
}

/* ===== SCENARIOS ===== */
.scenarios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-6);
}

.scenario-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.scenario-card__icon {
  width: 52px; 
  height: 52px;
  border-radius: var(--radius);
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scenario-card__icon svg { 
  width: 24px; 
  height: 24px; 
  color: var(--primary); 
}

.scenario-card__title { 
  font-size: 1.0625rem; 
  font-weight: 600; 
  color: var(--gray-900); 
  margin-bottom: var(--space-2); 
}

.scenario-card__text { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  line-height: 1.65; 
}

/* ===== PRODUCTS ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-8);
}

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product-card--featured {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-color: var(--primary);
  color: var(--white);
}

.product-card--featured::before {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.product-card__tier {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  align-self: flex-start;
}

.product-card--featured .product-card__tier {
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
}

.product-card__icon {
  width: 64px; 
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.product-card--featured .product-card__icon { 
  background: rgba(99, 102, 241, 0.2); 
}

.product-card__icon svg { 
  width: 32px; 
  height: 32px; 
  color: var(--primary); 
}

.product-card__title { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--gray-900); 
  margin-bottom: var(--space-3); 
}

.product-card--featured .product-card__title { 
  color: var(--white); 
}

.product-card__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}

.product-card--featured .product-card__text { 
  color: var(--gray-300); 
}

.product-card__features { 
  margin-bottom: var(--space-8); 
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-200);
}

.product-card--featured .product-card__feature {
  color: var(--gray-200);
  border-color: rgba(255, 255, 255, 0.1);
}

.product-card__feature:last-child { 
  border-bottom: none; 
}

.product-card__check { 
  width: 20px; 
  height: 20px; 
  flex-shrink: 0; 
  color: var(--primary); 
}

/* ===== STATS ===== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  text-align: center;
}

.stat-item { 
  padding: var(--space-8) var(--space-4); 
}

.stat-item__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__num span { 
  color: var(--accent); 
}

.stat-item__label { 
  font-size: 1rem; 
  color: var(--gray-300); 
  font-weight: 500;
}

/* ===== WHY ===== */
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why__image img {
  width: 100%;
  height: auto;
  display: block;
}

.why__list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.why__item { 
  display: flex; 
  gap: var(--space-5); 
  align-items: flex-start; 
}

.why__item-icon {
  width: 48px; 
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__item-icon svg { 
  width: 24px; 
  height: 24px; 
  color: var(--primary); 
}

.why__item-title { 
  font-size: 1.0625rem; 
  font-weight: 600; 
  color: var(--gray-900); 
  margin-bottom: var(--space-2); 
}

.why__item-text { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  line-height: 1.65; 
}

.why__placeholder {
  aspect-ratio: 5/4;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item__question {
  padding: var(--space-6);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}

.faq-item__question svg {
  width: 24px; 
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CONTACTS ===== */
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contacts__info { 
  display: flex; 
  flex-direction: column; 
  gap: var(--space-8); 
}

.contact-item { 
  display: flex; 
  gap: var(--space-5); 
  align-items: flex-start; 
}

.contact-item__icon {
  width: 52px; 
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg { 
  width: 24px; 
  height: 24px; 
  color: var(--primary); 
}

.contact-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.contact-item__value { 
  font-size: 1.125rem; 
  font-weight: 600; 
  color: var(--gray-900); 
}

.contact-item__value a { 
  color: var(--gray-900); 
}

.contact-item__value a:hover { 
  color: var(--primary); 
}

.contact-item__sub { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  margin-top: var(--space-1); 
}

.contacts__map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contacts__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: var(--space-8);
}

.footer-brand__desc {
  font-size: 1rem;
  color: var(--gray-400);
  margin-top: var(--space-4);
  line-height: 1.7;
  max-width: 320px;
}

.footer-brand .site-logo__name { 
  color: var(--white); 
}

.footer-col__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  margin-bottom: var(--space-4);
}

.footer-col__links { 
  display: flex; 
  flex-direction: column; 
  gap: var(--space-3); 
}

.footer-col__links a { 
  font-size: 0.9375rem; 
  color: var(--gray-400); 
  transition: color 0.2s ease;
}

.footer-col__links a:hover { 
  color: var(--white); 
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

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

.footer-legal { 
  display: flex; 
  gap: var(--space-6); 
  flex-wrap: wrap; 
}

.footer-legal a { 
  font-size: 0.875rem; 
  color: var(--gray-500); 
  transition: color 0.2s ease;
}

.footer-legal a:hover { 
  color: var(--gray-300); 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 var(--space-5); }
  .site-footer__top { 
    grid-template-columns: 1fr 1fr; 
    gap: var(--space-8); 
  }
  .how__step::after { display: none; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .section--lg { padding: var(--space-20) 0; }
  .hero { padding: var(--space-20) 0 var(--space-16); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero__image { aspect-ratio: 16/9; }
  .pain__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .scenarios__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .contacts__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .header-cta { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section__header--center { text-align: left; }
  .stats__grid { grid-template-columns: 1fr; }
  .card { padding: var(--space-6); }
  .product-card { padding: var(--space-6); }
}