/* ============================================
   WILLO LEGAL - 2026 Modern Tech Company Design
   ============================================ */

/* CSS Custom Properties */
:root {
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --primary-50: #EEF2FF;
  --accent: #7C3AED;
  --accent-light: #A78BFA;
  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --danger: #EF4444;
  --dark: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #312E81 100%);
  --gradient-card: linear-gradient(135deg, rgba(79,70,229,0.05) 0%, rgba(124,58,237,0.05) 100%);
  --gradient-cta: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px 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-glow: 0 0 40px rgba(79,70,229,0.15);
  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { color: var(--gray-500); line-height: 1.7; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius-lg);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary); color: var(--white);
  box-shadow: 0 4px 15px rgba(79,70,229,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.5); }
.btn-secondary {
  background: var(--white); color: var(--primary);
  border: 2px solid var(--primary-light);
}
.btn-secondary:hover { background: var(--primary-50); border-color: var(--primary); }
.btn-dark {
  background: var(--dark); color: var(--white);
  box-shadow: 0 4px 15px rgba(15,23,42,0.3);
}
.btn-dark:hover { background: var(--dark-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.05rem; border-radius: var(--radius-xl); }
.btn-icon { width: 2.75rem; height: 2.75rem; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
}
.badge-primary { background: var(--primary-50); color: var(--primary); }
.badge-success { background: var(--success-light); color: #065F46; }
.badge-gradient {
  background: var(--gradient-primary); color: var(--white);
  box-shadow: 0 2px 10px rgba(79,70,229,0.3);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 0.625rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--dark); }
.nav-logo-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.1rem;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.9rem;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary-light);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav.scrolled .nav-link { color: var(--gray-500); }
.nav.scrolled .nav-link:hover { color: var(--primary); }
.nav.scrolled .nav-link:hover::after { background: var(--primary); }
.nav-cta {
  background: var(--white); color: var(--primary) !important;
  padding: 0.625rem 1.5rem; border-radius: var(--radius-lg);
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255,255,255,0.3); }
.nav-cta::after { display: none !important; }
.nav.scrolled .nav-cta {
  background: var(--gradient-primary); color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}

/* Mobile Nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav.scrolled .nav-toggle span { background: var(--dark); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
    height: 100vh; background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; gap: 1.25rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
  }
  .nav-links.active { right: 0; }
  .nav-links .nav-link { color: var(--dark); font-size: 1.1rem; }
  .nav-links .nav-cta {
    background: var(--gradient-primary); color: var(--white) !important;
    width: 100%; text-align: center; justify-content: center;
  }
  .mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 999; opacity: 0; visibility: hidden;
    transition: var(--transition);
  }
  .mobile-overlay.active { opacity: 1; visibility: visible; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(79,70,229,0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(124,58,237,0.1) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem; border-radius: 999px;
  margin-bottom: 2rem;
  color: var(--primary-light); font-size: 0.85rem; font-weight: 500;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #818CF8 0%, #A78BFA 50%, #F0ABFC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1.2rem; margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--white);
}
.hero-stat-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 0.25rem; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-screenshot {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-screenshot img {
  width: 100%; display: block;
  border-radius: var(--radius-xl);
}
.hero-float-card {
  position: absolute; padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 0.75rem;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 20px; right: -20px; animation-delay: 2s; }
.float-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.float-icon.green { background: var(--success-light); }
.float-icon.purple { background: var(--primary-50); }
.float-text strong { display: block; font-size: 0.8rem; color: var(--dark); }
.float-text span { font-size: 0.75rem; color: var(--gray-400); }

@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}

/* ============ SOCIAL PROOF BAR ============ */
.social-proof {
  background: var(--white); padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.social-proof-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 3rem;
}
.social-proof-text { color: var(--gray-400); font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.social-proof-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
}
.proof-stat { text-align: center; }
.proof-stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.proof-stat-label { font-size: 0.8rem; color: var(--gray-400); }

/* ============ SECTIONS (General) ============ */
.section { padding: 6rem 0; }
.section-dark { background: var(--gray-50); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary);
  transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
}
.feature-icon.blue { background: #EFF6FF; color: #2563EB; }
.feature-icon.purple { background: var(--primary-50); color: var(--primary); }
.feature-icon.green { background: #ECFDF5; color: #059669; }
.feature-icon.orange { background: #FFF7ED; color: #EA580C; }
.feature-icon.pink { background: #FDF2F8; color: #DB2777; }
.feature-icon.teal { background: #F0FDFA; color: #0D9488; }
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.95rem; }

@media (max-width: 968px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ============ COMPARISON TABLE ============ */
.comparison-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.comparison-table th, .comparison-table td {
  padding: 1.125rem 1.5rem; text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table thead th {
  background: var(--dark); color: var(--white);
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem;
}
.comparison-table thead th:first-child { border-radius: var(--radius-xl) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-xl) 0 0; }
.comparison-table thead th.willo-col {
  background: var(--primary);
  position: relative;
}
.comparison-table tbody td { background: var(--white); font-size: 0.9rem; color: var(--gray-500); }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--dark); }
.comparison-table tbody td.willo-col { background: var(--primary-50); font-weight: 600; color: var(--primary); }
.comparison-table tbody tr:hover td { background: var(--gray-50); }
.comparison-table tbody tr:hover td.willo-col { background: #E0E7FF; }
.check { color: var(--success); font-weight: 700; }
.cross { color: var(--danger); }

/* ============ PRICING ============ */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.pricing-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient-primary);
}
.pricing-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 0.25rem;
  margin: 1.5rem 0;
}
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.pricing-value { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.pricing-period { font-size: 1.1rem; color: var(--gray-400); }
.pricing-features { text-align: left; margin: 2rem 0; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem; color: var(--dark-600);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-check { color: var(--success); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ============ LEADS SECTION ============ */
.leads-section { background: var(--gradient-hero); color: var(--white); padding: 6rem 0; }
.leads-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.leads-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.leads-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.1rem; }
.leads-price {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin: 2rem 0;
}
.leads-price-value {
  font-family: var(--font-display); font-size: 5rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.leads-price-label { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.leads-benefits { margin: 2rem 0; }
.leads-benefit {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0; color: rgba(255,255,255,0.85);
}
.leads-benefit-icon { color: var(--success); font-size: 1.2rem; }
.leads-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
}
.leads-compare-value {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 800; margin-bottom: 0.25rem;
}
.leads-compare-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.leads-compare-divider {
  width: 60px; height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 1.5rem auto;
}

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

/* ============ SCREENSHOTS / APP PREVIEW ============ */
.app-preview { padding: 6rem 0; }
.app-tabs { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.app-tab {
  padding: 0.75rem 1.5rem; border-radius: var(--radius-lg);
  font-weight: 500; font-size: 0.9rem;
  color: var(--gray-500); background: var(--gray-100);
  transition: var(--transition); border: 2px solid transparent;
}
.app-tab:hover { color: var(--primary); background: var(--primary-50); }
.app-tab.active { color: var(--white); background: var(--primary); }
.app-screenshot-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  max-width: 1000px; margin: 0 auto;
}
.app-screenshot-wrapper img { width: 100%; display: block; }
.app-screenshot-content { display: none; }
.app-screenshot-content.active { display: block; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--dark-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

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

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px; background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary-light);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: 0.75rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.625rem; }
.blog-card h3 a { transition: var(--transition); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-400); }

@media (max-width: 968px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 300px; line-height: 1.7; }
.footer-column h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-link { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 0.375rem 0; transition: var(--transition); }
.footer-link:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

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

/* ============ BLOG PAGE ============ */
.page-hero {
  background: var(--gradient-hero); padding: 10rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; }

/* ============ PROJECT WILL SECTION ============ */
.pw-section { background: var(--gray-50); padding: 6rem 0; }
.pw-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pw-content h2 { margin-bottom: 1rem; }
.pw-content p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.pw-features { margin: 2rem 0; }
.pw-feature {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem;
}
.pw-feature-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.pw-feature-text strong { display: block; color: var(--dark); font-size: 0.95rem; }
.pw-feature-text span { font-size: 0.9rem; color: var(--gray-500); }
.pw-visual {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.pw-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pw-stat {
  text-align: center; padding: 1.5rem;
  background: var(--gray-50); border-radius: var(--radius-lg);
}
.pw-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); }
.pw-stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.25rem; }

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

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--gradient-primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============ SKIP TO CONTENT ============ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }
