/* QuickInsight AI — Redesigned Main Stylesheet */

:root {
  /* New Color Palette - Modern Tech Aesthetic */
  --primary:       #0F172A;
  --primary-mid:   #1E293B;
  --primary-light: #F1F5F9;
  --accent:        #6366F1;
  --accent-dark:   #4F46E5;
  --accent-light:  #EEF2FF;
  --secondary:     #10B981;
  --secondary-dark:#059669;
  --secondary-light:#ECFDF5;
  --warning:       #F59E0B;
  --warning-light: #FEF3C7;
  --dark:          #020617;
  --gray-900:      #0F172A;
  --gray-800:      #1E293B;
  --gray-700:      #334155;
  --gray-600:      #475569;
  --gray-500:      #64748B;
  --gray-400:      #94A3B8;
  --gray-300:      #CBD5E1;
  --gray-200:      #E2E8F0;
  --gray-100:      #F1F5F9;
  --gray-50:       #F8FAFC;
  --white:         #FFFFFF;
  
  /* Typography - Modern Sans */
  --font-primary:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing & Layout */
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  
  /* Shadows - Elevated Design */
  --shadow-xs:     0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm:     0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow:        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-md:     0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg:     0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl:     0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --max-width:     1280px;
  --content-width: 768px;
}

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

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

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

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: all 0.2s ease;
}

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

ul { list-style: none; }

/* Container System */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.content-container {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Button System - Redesigned */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  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.2), transparent);
  transition: left 0.5s ease;
}

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

.btn-primary { 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary { 
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline { 
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover { 
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost { 
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover { 
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.btn-sm { 
  padding: 12px 24px; 
  font-size: 14px; 
}

.btn-lg { 
  padding: 20px 40px; 
  font-size: 18px; 
}

.btn-full { 
  width: 100%; 
}

/* Typography System */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 8px 16px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.6;
  font-weight: 400;
}

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

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

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card System */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.card-body {
  padding: 32px;
}

/* Placeholder Images */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════
   HEADER - Redesigned
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 24px;
  color: var(--gray-900);
}

.brand-logo { 
  width: 40px; 
  height: 40px; 
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.brand-name {
  letter-spacing: -0.02em;
}

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

.header-cta { 
  display: flex; 
  gap: 16px; 
  align-items: center; 
}

.header-contact {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-contact:hover { 
  color: var(--accent); 
}

/* ══════════════════════════════════════
   HERO - Completely Redesigned
══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-mid) 50%, var(--gray-800) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.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='%236366f1' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #A5B4FC;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

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

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

.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title span { 
  background: linear-gradient(135deg, #A5B4FC 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 400;
}

.hero-actions { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ══════════════════════════════════════
   FEATURES - Redesigned
══════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}

.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   HOW IT WORKS - Redesigned
══════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
}

.how-header { 
  margin-bottom: 80px; 
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-card p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.step-img-wrap {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ══════════════════════════════════════
   FORMATS - Redesigned
══════════════════════════════════════ */
.formats {
  padding: 120px 0;
  background: var(--gray-50);
}

.formats-header { 
  margin-bottom: 80px; 
}

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

.format-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.format-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.format-icon-wrap.blue   { 
  background: linear-gradient(135deg, var(--accent-light) 0%, #DBEAFE 100%);
  color: var(--accent);
}

.format-icon-wrap.teal   { 
  background: linear-gradient(135deg, var(--secondary-light) 0%, #D1FAE5 100%);
  color: var(--secondary);
}

.format-icon-wrap.orange { 
  background: linear-gradient(135deg, var(--warning-light) 0%, #FED7AA 100%);
  color: var(--warning);
}

.format-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.format-card p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.format-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

/* ══════════════════════════════════════
   USE CASES - Redesigned
══════════════════════════════════════ */
.use-cases {
  padding: 120px 0;
  background: var(--white);
}

.use-cases-header { 
  margin-bottom: 80px; 
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.use-case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.use-case-img {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.use-case-img.bg1 { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); }
.use-case-img.bg2 { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); }
.use-case-img.bg3 { background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%); }
.use-case-img.bg4 { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); }
.use-case-img.bg5 { background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%); }
.use-case-img.bg6 { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); }

.use-case-body { 
  padding: 32px; 
}

.use-case-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
}

.use-case-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.use-case-body p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   STATS - Redesigned
══════════════════════════════════════ */
.stats {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-mid) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #A5B4FC 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-weight: 500;
}

/* ══════════════════════════════════════
   PRODUCTS / PLANS - Redesigned
══════════════════════════════════════ */
.products {
  padding: 120px 0;
  background: var(--gray-50);
}

.products-header { 
  margin-bottom: 80px; 
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-mid) 100%);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.plan-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 24px;
  align-self: flex-start;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.2;
}

.plan-card.featured .plan-name { 
  color: var(--white); 
}

.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-card.featured .plan-price { 
  background: linear-gradient(135deg, #A5B4FC 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-period {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 500;
}

.plan-card.featured .plan-period { 
  color: rgba(255,255,255,0.6); 
}

.plan-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.plan-card.featured .plan-desc { 
  color: rgba(255,255,255,0.8); 
}

.plan-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0 0 24px;
}

.plan-card.featured .plan-divider { 
  background: rgba(255,255,255,0.2); 
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.5;
}

.plan-card.featured .plan-features li { 
  color: rgba(255,255,255,0.9); 
}

.plan-check { 
  flex-shrink: 0; 
  margin-top: 2px; 
  color: var(--secondary);
  font-weight: 600;
}

.plan-card.featured .plan-check { 
  color: var(--secondary); 
}

/* ══════════════════════════════════════
   WHY CHOOSE US - Redesigned
══════════════════════════════════════ */
.why-us {
  padding: 120px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap { 
  height: 500px; 
  border-radius: var(--radius-xl);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.why-item { 
  display: flex; 
  gap: 20px; 
  align-items: flex-start; 
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.why-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-item p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FAQ - Redesigned
══════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--gray-50);
}

.faq-header { 
  margin-bottom: 80px; 
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

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

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}

.faq-q {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.4;
}

.faq-q-dot {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
}

.faq-a {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 44px;
}

/* ══════════════════════════════════════
   CONTACTS - Redesigned
══════════════════════════════════════ */
.contacts {
  padding: 120px 0;
  background: var(--white);
}

.contacts-header { 
  margin-bottom: 80px; 
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-items { 
  display: flex; 
  flex-direction: column; 
  gap: 40px; 
}

.contact-item { 
  display: flex; 
  gap: 24px; 
  align-items: flex-start; 
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-item-body h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.contact-item a,
.contact-item span {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.2s ease;
}

.contact-item a:hover { 
  color: var(--accent); 
}

.contact-map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════
   FOOTER - Redesigned
══════════════════════════════════════ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-brand .brand-name { 
  color: var(--white); 
  font-size: 24px;
}

.footer-brand .brand-name span { 
  color: #A5B4FC; 
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
  color: rgba(255,255,255,0.7);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-links { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.footer-links a { 
  font-size: 16px; 
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-legal { 
  display: flex; 
  gap: 24px; 
}

.footer-legal a { 
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover { 
  color: rgba(255,255,255,0.8); 
}

/* ══════════════════════════════════════
   RESPONSIVE DESIGN
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 60px; 
    text-align: center;
  }
  .hero-img-wrap { 
    height: 320px; 
    max-width: 500px;
    margin: 0 auto;
  }
  .features-intro { grid-template-columns: 1fr; gap: 40px; }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .contacts-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 0 40px; }
  .hero-img-wrap { 
    height: 280px; 
  }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .header-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-nav { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .section-title { font-size: 32px; }
  .hero-title { font-size: 36px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 30px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 18px; }
  .hero-img-wrap { 
    height: 240px; 
  }
  .section-title { font-size: 28px; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .btn-lg { padding: 16px 32px; font-size: 16px; }
  .card-body { padding: 24px; }
  .feature-card { padding: 32px 24px; }
  .step-card { padding: 32px 24px; }
  .format-card { padding: 32px 24px; }
  .use-case-body { padding: 24px; }
  .plan-card { padding: 32px 24px; }
  .faq-item { padding: 24px; }
}