/* COGScontrol.ai Marketing Site Styles
 * Editorial Finance Aesthetic
 * Navy + Gold + Cream palette with Spectral/IBM Plex Sans typography
 */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */

:root {
  /* Primary Navy Palette */
  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #b8c9db;
  --navy-300: #8fa9c4;
  --navy-400: #6688ab;
  --navy-500: #1e3a5f;
  --navy-600: #182e4b;
  --navy-700: #12223a;
  --navy-800: #0d1829;
  --navy-900: #070f1a;

  /* Gold Accent Palette */
  --gold-50: #fefaf3;
  --gold-100: #fdf2d9;
  --gold-200: #fbe5b3;
  --gold-300: #f9d88c;
  --gold-400: #f7cb66;
  --gold-500: #d4a574;
  --gold-600: #b8894f;
  --gold-700: #8f6b3d;

  /* Cream Background Palette */
  --cream-50: #fdfcfb;
  --cream-100: #faf8f5;
  --cream-200: #f5f1eb;
  --cream-300: #ebe4d9;
  --cream-400: #ddd2c1;

  /* Semantic Colors - Aligned with SaaS Design System */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Focus Ring */
  --focus-ring: 0 0 0 3px rgba(212, 165, 116, 0.3);

  /* Typography */
  --font-heading: 'Spectral', Georgia, serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Shadows - Aligned with SaaS Design System (subtler) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* Button-specific shadows */
  --shadow-btn-primary: 0 4px 12px rgba(30, 58, 95, 0.3);
  --shadow-btn-primary-hover: 0 6px 16px rgba(30, 58, 95, 0.4);
  --shadow-btn-gold: 0 4px 12px rgba(212, 165, 116, 0.3);
  --shadow-btn-gold-hover: 0 6px 16px rgba(212, 165, 116, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Border Radius - Aligned with SaaS Design System */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  /* Letter Spacing */
  --tracking-editorial: 0.02em;
  --tracking-tight: -0.025em;
  --tracking-uppercase: 0.08em;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-700);
  background-color: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background: var(--gold-300);
  color: var(--navy-700);
}

/* Links */
a {
  color: var(--navy-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-600);
}

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

/* Lists */
ul, ol {
  list-style: none;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-600);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: var(--tracking-tight); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: var(--tracking-editorial); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: var(--tracking-editorial); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.display-xl {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-uppercase);
  color: var(--gold-600);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--navy-400);
}

.small {
  font-size: 0.875rem;
}

.mono {
  font-family: var(--font-mono);
}

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 960px;
}

.container-wide {
  max-width: 1440px;
}

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

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

/* Grid */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.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: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-300);
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-600);
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-500);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--navy-700);
}

.nav-cta {
  margin-left: var(--space-lg);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-600);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-100);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid var(--cream-300);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  outline: none;
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

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

.btn-secondary:hover {
  border-color: var(--navy-400);
  background: var(--cream-50);
  color: var(--navy-600);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

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

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

.btn-gold:active {
  transform: translateY(0);
  box-shadow: none;
}

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

.btn-outline:hover {
  background: var(--navy-500);
  color: white;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ============================================================================
   CARDS
   ============================================================================ */

.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.card-accent {
  border-left: 4px solid var(--gold-500);
}

.card-body {
  padding: var(--space-xl);
}

.card-header {
  padding: var(--space-xl) var(--space-xl) 0;
}

.card-footer {
  padding: 0 var(--space-xl) var(--space-xl);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-500);
  margin-bottom: var(--space-lg);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--navy-400);
  line-height: 1.7;
}

/* Feature cards with stats */
.stat-card {
  padding: var(--space-xl);
  text-align: center;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-value .accent {
  color: var(--gold-500);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-uppercase);
  color: var(--navy-400);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  padding: calc(72px + var(--space-5xl)) 0 var(--space-5xl);
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-200) 100%);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero grid removed for cleaner look - kept class for backwards compatibility */
.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-500);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: var(--space-xl);
}

.hero-title .accent {
  color: var(--gold-600);
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--gold-300);
  z-index: -1;
}

.hero-description {
  margin-bottom: var(--space-2xl);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-visual {
  position: relative;
  margin-top: var(--space-4xl);
}

.hero-image-container {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--cream-300);
}

.hero-image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-300);
  font-size: 1.125rem;
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--cream-300);
}

/* Floating elements */
.hero-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) var(--space-lg);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.hero-float-1 {
  top: 15%;
  right: 2%;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: 2%;
  animation-delay: 2s;
}

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

/* Hide floating elements on mobile */
@media (max-width: 1024px) {
  .hero-float {
    display: none;
  }
}

/* ============================================================================
   PROVIDER LOGOS
   ============================================================================ */

.providers {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300);
  background: white;
}

.providers-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-300);
  text-align: center;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
}

.provider-logo {
  height: 32px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.provider-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.provider-logo-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-500);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.provider-logo-text:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

/* Provider badge colors */
.provider-logo-text[data-provider="openai"] { border-color: #10A37F; color: #0d8a6a; }
.provider-logo-text[data-provider="anthropic"] { border-color: #D97757; color: #c46647; }
.provider-logo-text[data-provider="aws"] { border-color: #FF9900; color: #e68a00; }
.provider-logo-text[data-provider="azure"] { border-color: #0078D4; color: #006abe; }
.provider-logo-text[data-provider="gcp"] { border-color: #4285F4; color: #3b78dc; }

@media (max-width: 768px) {
  .providers-grid {
    gap: var(--space-md);
  }

  .provider-logo-text {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features {
  background: var(--cream-100);
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-4xl);
}

.feature-category {
  margin-bottom: var(--space-4xl);
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--cream-300);
}

.feature-category-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-category-icon svg {
  width: 24px;
  height: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  border-left: 3px solid transparent;
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-left-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}

.feature-check svg {
  width: 14px;
  height: 14px;
}

.feature-item-title {
  font-weight: 600;
  color: var(--navy-600);
  margin-bottom: var(--space-xs);
}

.feature-item-desc {
  font-size: 0.9375rem;
  color: var(--navy-400);
  line-height: 1.6;
}

/* Feature showcase with image */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-4xl) 0;
}

.feature-showcase.reversed {
  direction: rtl;
}

.feature-showcase.reversed > * {
  direction: ltr;
}

.feature-showcase-content {
  max-width: 500px;
}

.feature-showcase-image {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--cream-300);
}

.feature-showcase-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-300);
}

.feature-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--cream-300);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 35px rgba(30, 58, 95, 0.15), 0 15px 15px rgba(30, 58, 95, 0.06);
}

@media (max-width: 1024px) {
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .feature-showcase.reversed {
    direction: ltr;
  }

  .feature-showcase-content {
    max-width: 100%;
  }
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing {
  background: var(--cream-100);
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-4xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: var(--gold-500);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-400);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9375rem;
  color: var(--navy-400);
}

.pricing-description {
  font-size: 0.9375rem;
  color: var(--navy-400);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--cream-300);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--navy-500);
}

.pricing-feature svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-500);
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* Comparison table */
.comparison {
  margin-top: var(--space-5xl);
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.comparison-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--cream-200);
}

.comparison-table th {
  background: var(--cream-100);
  font-weight: 600;
  color: var(--navy-600);
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold-100);
  border-radius: 50%;
  color: var(--gold-600);
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

.x-icon {
  color: var(--navy-200);
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonials {
  background: var(--navy-600);
  color: white;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials-header h2 {
  color: white;
}

.testimonials-header .eyebrow {
  color: var(--gold-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  color: var(--cream-100);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.testimonial-name {
  font-weight: 600;
  color: white;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--navy-200);
}

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */

.about-hero {
  position: relative;
  padding: calc(72px + var(--space-5xl)) 0 var(--space-4xl);
  background: linear-gradient(180deg, var(--cream-100) 0%, white 100%);
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-mission {
  background: white;
  padding: var(--space-5xl) 0;
}

.about-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .about-mission-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.about-values {
  background: var(--cream-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

.value-card {
  text-align: center;
  padding: var(--space-2xl);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--navy-500);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto var(--space-lg);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.team-section {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

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

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

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

.team-avatar {
  width: 120px;
  height: 120px;
  background: var(--cream-200);
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy-400);
}

.team-name {
  font-weight: 600;
  color: var(--navy-600);
  margin-bottom: var(--space-xs);
}

.team-role {
  font-size: 0.875rem;
  color: var(--navy-400);
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */

.contact-hero {
  padding: calc(72px + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--cream-100) 0%, white 100%);
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  padding: var(--space-4xl) 0;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

.contact-form-container {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-600);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  color: var(--navy-700);
  transition: all var(--transition-fast);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--navy-300);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: white;
  box-shadow: var(--focus-ring);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--navy-300);
}

/* Custom select styling */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236688ab' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Form validation states */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.form-error {
  font-size: 0.875rem;
  color: var(--error);
  margin-top: var(--space-xs);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  padding: var(--space-xl) 0;
}

.contact-info-title {
  margin-bottom: var(--space-xl);
}

.contact-info-list {
  margin-bottom: var(--space-2xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--cream-300);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-500);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.875rem;
  color: var(--navy-400);
  margin-bottom: var(--space-xs);
}

.contact-info-value {
  font-weight: 500;
  color: var(--navy-600);
}

/* FAQ Section */
.faq {
  background: var(--cream-100);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-600);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--cream-50);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-500);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--navy-400);
  line-height: 1.7;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.cta .lead {
  color: var(--navy-200);
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta .btn-gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.cta .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background: var(--navy-700);
  color: var(--navy-200);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

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

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

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-tagline {
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-200);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--gold-500);
  color: white;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: var(--space-lg);
}

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

.footer-link {
  color: var(--navy-200);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.875rem;
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: var(--navy-300);
}

.footer-legal a:hover {
  color: var(--gold-400);
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Initial state for animated elements */
[class*="animate-"] {
  opacity: 0;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.w-full { width: 100%; }
.max-w-prose { max-width: 65ch; }

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.how-it-works-step {
  text-align: center;
  padding: var(--space-xl);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.how-it-works-step h4 {
  margin-bottom: var(--space-sm);
}

.how-it-works-step p {
  color: var(--navy-400);
  line-height: 1.7;
}

/* ============================================================================
   ABOUT PAGE SECTIONS
   ============================================================================ */

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.story-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.story-item:last-child {
  margin-bottom: 0;
}

.story-line {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.story-line-gold {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
}

.story-line-navy {
  background: linear-gradient(180deg, var(--navy-500), var(--navy-300));
}

.story-line-success {
  background: linear-gradient(180deg, var(--success), #86efac);
}

.story-content h3 {
  margin-bottom: var(--space-md);
}

.story-content h3.text-gold { color: var(--gold-600); }
.story-content h3.text-navy { color: var(--navy-600); }
.story-content h3.text-success { color: var(--success); }

.story-content p {
  color: var(--navy-400);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Quote card */
.quote-card {
  padding: var(--space-2xl);
  border-left: 4px solid var(--gold-500);
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy-600);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.quote-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.quote-name {
  font-weight: 600;
  color: var(--navy-600);
}

.quote-role {
  font-size: 0.875rem;
  color: var(--navy-400);
}

/* Stats section in testimonials */
.stats-dark .stat-value {
  color: white;
}

.stats-dark .stat-value .accent {
  color: var(--gold-400);
}

.stats-dark .stat-label {
  color: var(--navy-200);
}

/* Investors section */
.investors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

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

.investor-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-400);
}

.investor-type {
  font-size: 0.875rem;
  color: var(--navy-300);
}

/* ============================================================================
   SKIP LINK & ACCESSIBILITY
   ============================================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-500);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* No-JS fallback */
.no-js [class*="animate-"] {
  opacity: 1;
}

/* ============================================================================
   FEATURE PAGE ANCHOR NAVIGATION
   ============================================================================ */

.anchor-nav {
  background: white;
  border-bottom: 1px solid var(--cream-300);
  padding: var(--space-md) 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.anchor-nav-list {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.anchor-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-400);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.anchor-nav-link:hover,
.anchor-nav-link.active {
  color: var(--navy-600);
  background: var(--cream-100);
}

@media (max-width: 768px) {
  .anchor-nav {
    display: none;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  background: var(--navy-500);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  box-shadow: var(--focus-ring), var(--shadow-lg);
}

/* Integration cards */
.integration-card {
  padding: var(--space-xl);
  text-align: center;
}

.integration-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.integration-icon-openai { background: linear-gradient(135deg, #10A37F, #0d8a6a); }
.integration-icon-anthropic { background: linear-gradient(135deg, #D97757, #c46647); }
.integration-icon-aws { background: linear-gradient(135deg, #FF9900, #e68a00); }
.integration-icon-azure { background: linear-gradient(135deg, #0078D4, #006abe); }
.integration-icon-gcp { background: linear-gradient(135deg, #EA4335, #d33a2e); }
.integration-icon-gcp-blue { background: linear-gradient(135deg, #4285F4, #3b78dc); }

.integration-card h4 {
  margin-bottom: var(--space-xs);
}

.integration-card p {
  font-size: 0.875rem;
  color: var(--navy-400);
}

/* ============================================================================
   MOBILE IMPROVEMENTS
   ============================================================================ */

@media (max-width: 768px) {
  /* Better footer on mobile */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer-legal {
    justify-content: center;
  }

  /* Touch-friendly targets */
  .nav-link,
  .footer-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  /* Better footer on tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================================
   FAQ IMPROVEMENTS
   ============================================================================ */

.faq-icon {
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ============================================================================
   CONTACT PAGE SPECIFIC
   ============================================================================ */

/* Expect card - "What to expect in your demo" */
.expect-card {
  padding: var(--space-lg);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
}

.expect-card h4 {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.expect-list {
  color: var(--navy-400);
  line-height: 1.8;
  list-style: none;
  padding: 0;
  margin: 0;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.expect-list li:last-child {
  margin-bottom: 0;
}

.expect-check {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Social links section */
.social-section {
  margin-top: var(--space-xl);
}

.social-section h4 {
  font-size: 0.875rem;
  color: var(--navy-400);
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--navy-500);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--transition-fast);
}

.social-link:hover {
  background: var(--navy-600);
}

.social-link:focus-visible {
  box-shadow: var(--focus-ring);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Form description text */
.form-description {
  color: var(--navy-400);
  margin-bottom: var(--space-xl);
}

/* Form privacy note */
.form-privacy {
  font-size: 0.8125rem;
  color: var(--navy-400);
  text-align: center;
  margin-top: var(--space-md);
}

.form-privacy a {
  color: var(--navy-500);
}

.form-privacy a:hover {
  color: var(--navy-600);
}
