/* Metro-Mind Design System for HubSpot CMS */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  /* Cosmic Color Palette */
  --void: #0a0a0f;
  --void-light: #12121a;
  --void-lighter: #1a1a25;
  --surface: #222230;

  --violet: #8b5cf6;
  --violet-glow: rgba(139, 92, 246, 0.4);
  --violet-muted: #7c4ddf;

  --coral: #ff6b6b;
  --coral-glow: rgba(255, 107, 107, 0.3);

  --mint: #00d4aa;
  --mint-glow: rgba(0, 212, 170, 0.3);

  --cream: #faf5f0;
  --cream-muted: #e8e0d5;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(80px, 12vw, 160px);
  --container-max: 1440px;
  --container-padding: clamp(20px, 5vw, 80px);

  /* Effects */
  --glow-violet: 0 0 60px var(--violet-glow), 0 0 120px rgba(139, 92, 246, 0.15);
  --glow-coral: 0 0 60px var(--coral-glow), 0 0 120px rgba(255, 107, 107, 0.15);
  --glow-mint: 0 0 60px var(--mint-glow), 0 0 120px rgba(0, 212, 170, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--void);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-violet { color: var(--violet); }
.text-coral { color: var(--coral); }
.text-mint { color: var(--mint); }

/* Selection */
::selection {
  background: var(--violet);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--void-lighter); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

/* Section */
.section {
  padding-block: var(--section-gap);
  position: relative;
}

/* Gradient Text Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 50%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-violet {
  background: linear-gradient(135deg, var(--violet) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #ffa07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effects */
.glow-violet { box-shadow: var(--glow-violet); }
.glow-coral { box-shadow: var(--glow-coral); }
.glow-mint { box-shadow: var(--glow-mint); }

/* Glass Morphism */
.glass {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Card */
.card {
  background: linear-gradient(145deg, rgba(26, 26, 37, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), transparent 40%, transparent 60%, rgba(255, 107, 107, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.card:hover::before { opacity: 1; }

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 16px 32px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  border: none;
}

.btn-primary {
  background: var(--violet);
  color: white;
}

.btn-primary:hover {
  background: var(--violet-muted);
  transform: translateY(-3px);
  box-shadow: var(--glow-violet);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--violet);
  color: var(--violet);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral);
  color: white;
}

.btn-coral:hover {
  box-shadow: var(--glow-coral);
  transform: translateY(-3px);
}

.btn-mint {
  background: var(--mint);
  color: var(--void);
}

.btn-mint:hover {
  box-shadow: var(--glow-mint);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

.badge-violet {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-coral {
  background: rgba(255, 107, 107, 0.12);
  color: var(--coral);
  border: 1px solid rgba(255, 107, 107, 0.25);
}

.badge-mint {
  background: rgba(0, 212, 170, 0.12);
  color: var(--mint);
  border: 1px solid rgba(0, 212, 170, 0.25);
}

/* Grid System */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 48px; }

/* Spacing Utilities */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mt-xl { margin-top: 80px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }
.mb-xl { margin-bottom: 80px; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-float { animation: float 8s ease-in-out infinite; }
.animate-float-reverse { animation: float-reverse 7s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 4s ease-in-out infinite; }
.animate-gradient { background-size: 200% 200%; animation: gradient-shift 6s ease infinite; }
.animate-orbit { animation: orbit 25s linear infinite; }
.animate-spin-slow { animation: spin-slow 40s linear infinite; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-reveal-up { animation: reveal-up 0.8s ease-out forwards; }

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Decorative Blob */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.blob-violet {
  background: var(--violet);
  opacity: 0.3;
}

.blob-coral {
  background: var(--coral);
  opacity: 0.2;
}

.blob-mint {
  background: var(--mint);
  opacity: 0.2;
}

/* Grid Pattern Background */
.grid-pattern {
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Diagonal Lines Pattern */
.diagonal-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(139, 92, 246, 0.02) 40px,
    rgba(139, 92, 246, 0.02) 41px
  );
}

/* Link Styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover { color: var(--violet); }

/* Smooth transitions */
button, a, input, textarea {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Input Styles */
input, textarea, select {
  font-family: var(--font-body);
  background: var(--void-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 1rem;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--violet);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: var(--void-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* Footer */
.site-footer {
  background: var(--void-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--violet);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Feature Grid */
.feature-card {
  padding: 32px;
  background: var(--void-light);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-violet { background: rgba(139, 92, 246, 0.15); color: var(--violet); }
.feature-icon-coral { background: rgba(255, 107, 107, 0.15); color: var(--coral); }
.feature-icon-mint { background: rgba(0, 212, 170, 0.15); color: var(--mint); }

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Product Cards */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.product-price-suffix {
  font-size: 1rem;
  color: var(--text-muted);
}

.product-features {
  list-style: none;
  margin: 24px 0;
}

.product-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.product-features li::before {
  content: '✓';
  color: var(--mint);
  font-weight: bold;
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  text-align: center;
  padding: 40px 32px;
}

.pricing-card.featured {
  border-color: var(--violet);
  box-shadow: var(--glow-violet);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: var(--void-light);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--void-lighter);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Module Filter */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--void-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--violet);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
}

/* Module Card */
.module-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.module-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.module-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.module-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  flex-grow: 1;
}

.module-price {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--coral));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  border: 3px solid var(--void);
}

.timeline-year {
  color: var(--violet);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

/* Visibility utilities */
.hidden { display: none !important; }
.visible { display: block !important; }

/* Mobile adjustments */
@media (max-width: 768px) {
  :root {
    --section-gap: 60px;
    --container-padding: 20px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .card {
    padding: 24px;
    border-radius: 20px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* Large screen adjustments */
@media (min-width: 1600px) {
  :root {
    --container-max: 1600px;
  }
}

/* HubSpot Form Overrides */
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea,
.hs-form select {
  background: var(--void-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
}

.hs-form input:focus,
.hs-form textarea:focus {
  border-color: var(--violet) !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

.hs-form .hs-button {
  background: var(--violet) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 16px 32px !important;
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

.hs-form .hs-button:hover {
  background: var(--violet-muted) !important;
}

.hs-form label {
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
}
