/* ThriveWealth.ai Website - Main Stylesheet
   Colors: Electric Cyan #00D9FF | Deep Navy #0A2463 | Vibrant Green #00FF87 | White #FFFFFF */

:root {
  /* Primary Colors - EXACT BRAND COLORS */
  --navy: #0A2463;
  --navy-dark: #071a4a;
  --navy-light: #0d2d7a;
  --navy-lighter: #1240a0;
  
  /* Accent Colors - EXACT BRAND COLORS */
  --cyan: #00D9FF;
  --cyan-bright: #33E1FF;
  --cyan-dark: #00B8D9;
  --green: #00FF87;
  --green-bright: #33FF9F;
  --green-dark: #00CC6C;
  --orange: #F59E0B;
  --orange-dark: #D97706;
  
  /* Neutrals */
  --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;
  
  /* Glow Effects */
  --cyan-glow: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
  --cyan-glow-soft: 0 0 15px rgba(0, 217, 255, 0.35);
  --green-glow: 0 0 20px rgba(0, 255, 135, 0.5), 0 0 40px rgba(0, 255, 135, 0.3);
  --green-glow-soft: 0 0 15px rgba(0, 255, 135, 0.35);
  
  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #0A2463 0%, #0d2d7a 50%, #0A2463 100%);
  --gradient-cyan: linear-gradient(135deg, #00D9FF 0%, #33E1FF 100%);
  --gradient-green: linear-gradient(135deg, #00FF87 0%, #33FF9F 100%);
  --gradient-cyan-green: linear-gradient(135deg, #00D9FF 0%, #00FF87 100%);
  
  /* Typography */
  --font-sans: "Inter", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  
  /* Border Radius */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00D9FF, #00FF87);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00B8D9, #00CC6C);
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== HEADER ==================== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 1.125rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-icon {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  color: var(--navy);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-ghost:hover {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  color: var(--navy);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  color: var(--navy);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.45), 0 0 60px rgba(0, 217, 255, 0.15);
}

.btn-demo {
  padding: 1rem 3rem;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 217, 255, 0.25);
}

.btn-demo:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 217, 255, 0.5), 0 0 60px rgba(0, 217, 255, 0.2), 0 0 120px rgba(0, 255, 135, 0.1);
}

/* Small button variant for header */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-green {
  background: var(--gradient-green);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.4);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: var(--green-glow), 0 6px 20px rgba(0, 255, 135, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  border-color: transparent;
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture/pattern */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  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;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--cyan-glow-soft);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 217, 255, 0.3); }
  50% { box-shadow: 0 0 25px rgba(0, 217, 255, 0.5); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature {
  text-align: left;
}

.hero-feature-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-feature-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 320px;
}

.hero-stat-badge {
  position: absolute;
  top: -0.75rem;
  right: -1.5rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-badge .stat-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 255, 135, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.hero-stat-badge .stat-value {
  color: var(--green);
  font-weight: 800;
}

.hero-stat-badge .stat-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-visual-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 255, 135, 0.15) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.hero-visual-icon svg {
  width: 50px;
  height: 50px;
  color: var(--cyan);
}

.hero-availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.hero-availability-badge svg {
  color: var(--cyan);
}

.hero-dashboard-preview {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8125rem;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 7rem 0;
}

.section-alt {
  background: var(--gray-50);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

.section-navy {
  background: var(--gradient-navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-navy .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-navy .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== FEATURE CARDS ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: var(--transition-slow);
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cyan);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.12), 0 0 0 1px rgba(0, 217, 255, 0.1);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.12) 0%, rgba(0, 255, 135, 0.12) 100%);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==================== CRM/LEADS/AI SECTIONS ==================== */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-section.reverse {
  direction: rtl;
}

.product-section.reverse > * {
  direction: ltr;
}

.product-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.product-features li .icon {
  width: 22px;
  height: 22px;
  background: rgba(0, 217, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

.product-features li .icon svg {
  width: 14px;
  height: 14px;
}

.product-features li strong {
  color: var(--cyan);
}

.product-features li span {
  color: var(--gray-600);
  line-height: 1.5;
}

.product-visual {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ==================== AI IN ACTION GRID ==================== */
.ai-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ai-action-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.ai-action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-cyan);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: var(--transition);
}

.ai-action-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.12);
  transform: translateY(-4px);
}

.ai-action-card:hover::before {
  opacity: 1;
}

.ai-action-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.25rem 0;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.25);
  position: relative;
}

.ai-action-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, rgba(0, 255, 135, 0.3) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.ai-action-card:hover .ai-action-icon::after {
  opacity: 1;
}

.ai-action-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.ai-action-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--gray-400);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.875rem;
}

.footer-column a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
}

.footer-column a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column a:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--cyan);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .product-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-section.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .ai-action-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.bg-navy { background: var(--navy); }
.bg-orange { background: var(--orange); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
