/*
=====================================================
JOVEL CREATIVE - APPLE-INSPIRED DESIGN SYSTEM
Clean. Minimal. Powerful.
=====================================================
*/

/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Apple-Inspired Color Palette - White Primary, Blue & Orange Accents */
  --color-primary: #000000;           /* Black for text (Apple uses near-black) */
  --color-primary-light: #1d1d1f;     /* Subtle dark gray */
  --color-primary-dark: #000000;

  --color-blue: #0071e3;              /* Apple Blue - for links and accents */
  --color-blue-hover: #0077ed;
  --color-blue-light: #e8f4fd;

  --color-accent: #d9580a;            /* Darker orange for better contrast (was #f56300) */
  --color-accent-hover: #f56300;      /* Brighter on hover */
  --color-accent-light: #fff3e0;

  /* Backgrounds - White is primary */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f7;      /* Apple's light gray */
  --color-bg-tertiary: #fbfbfd;

  /* Subtle Gradients */
  --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
  --gradient-accent: linear-gradient(135deg, #d9580a 0%, #f56300 100%);

  --color-success: #30d158;           /* Apple Green */
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f7;       /* Apple gray */
  --color-neutral-200: #e8e8ed;
  --color-neutral-300: #d2d2d7;
  --color-neutral-600: #6e6e73;       /* Darker for better contrast (was #86868b) */
  --color-neutral-700: #515154;
  --color-neutral-800: #1d1d1f;
  --color-neutral-900: #000000;

  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography - Apple uses SF Pro */
  --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;

  /* Font Sizes - Apple uses HUGE text */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1.0625rem; /* 17px - Apple's body size */
  --text-lg: 1.1875rem;   /* 19px */
  --text-xl: 1.3125rem;   /* 21px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 2rem;       /* 32px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 4rem;       /* 64px */
  --text-7xl: 5rem;       /* 80px */
  --text-8xl: 6rem;       /* 96px - Apple hero size */
  --text-9xl: 7rem;       /* 112px */

  /* Font Weights - Apple's precise weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Line Heights - Apple's generous spacing */
  --leading-tight: 1.05;
  --leading-normal: 1.2;
  --leading-relaxed: 1.4;
  --leading-loose: 1.6;

  /* Spacing - Apple's generous whitespace */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Border Radius - Apple uses larger, softer corners */
  --radius-sm: 0.5rem;      /* 8px */
  --radius-md: 0.75rem;     /* 12px */
  --radius-lg: 1rem;        /* 16px */
  --radius-xl: 1.125rem;    /* 18px - Apple card radius */
  --radius-2xl: 1.5rem;     /* 24px */
  --radius-full: 9999px;

  /* Shadows - Apple's subtle, soft shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 24px 0 rgba(0, 0, 0, 0.10);
  --shadow-2xl: 0 12px 32px 0 rgba(0, 0, 0, 0.12);
  --shadow-card: 2px 4px 12px rgba(0, 0, 0, 0.08);

  /* Transitions - Apple's smooth, natural easing */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-apple: 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);

  /* Header Height */
  --header-height: 48px;    /* Apple's slim navigation */
}

/* Dark Mode Variables */
body.dark-mode {
  --color-neutral-50: #0f172a;
  --color-neutral-100: #1e293b;
  --color-neutral-200: #334155;
  --color-neutral-300: #475569;
  --color-neutral-600: #cbd5e1;
  --color-neutral-700: #e2e8f0;
  --color-neutral-800: #f1f5f9;
  --color-neutral-900: #f8fafc;
  --color-white: #0f172a;
  --color-black: #ffffff;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-primary);
  background-color: var(--color-bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Smooth Scroll Reveal Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Skip Link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: var(--space-4);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

.skip-to-main:focus {
  left: var(--space-4);
  top: var(--space-4);
}

/* ==================== ACCESSIBILITY - FOCUS INDICATORS ==================== */
/* Enhanced focus styles for keyboard navigation */

/* Default focus style for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Focus style for dark mode */
body.dark-mode a:focus-visible,
body.dark-mode button:focus-visible,
body.dark-mode input:focus-visible,
body.dark-mode select:focus-visible,
body.dark-mode textarea:focus-visible,
body.dark-mode [tabindex]:focus-visible {
  outline-color: var(--color-accent-hover);
}

/* Specific focus styles for buttons */
.btn:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.btn-accent:focus-visible {
  outline-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.btn-primary:focus-visible {
  outline-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

/* Navigation links focus */
.nav-link:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Card focus for keyboard navigation */
.card:focus-visible,
.pricing-card:focus-visible,
.portfolio-card:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 4px;
  transform: translateY(-4px);
}

/* ==================== PERFORMANCE BADGE ==================== */
.performance-badge {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 100;
  border: 2px solid var(--color-accent);
  transition: transform var(--transition-base);
}

.performance-badge:hover {
  transform: translateY(-4px);
}

.badge-content {
  display: flex;
  gap: var(--space-4);
}

.badge-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-label {
  font-size: var(--text-xs);
  color: var(--color-neutral-600);
  font-weight: var(--font-medium);
}

.badge-value {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  z-index: 1000;
  transition: all var(--transition-apple);
}

body.dark-mode .site-header {
  background: rgba(29, 29, 31, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  letter-spacing: -0.01em;
}

.logo:hover {
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-normal);
  padding: var(--space-2) 0;
  position: relative;
  transition: opacity var(--transition-fast);
  opacity: 0.8;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  font-weight: var(--font-medium);
}

.btn-nav-cta {
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: none;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.dark-mode-toggle:hover {
  border-color: var(--color-accent);
  transform: rotate(15deg);
}

.dark-mode-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--color-neutral-700);
}

.sun-icon {
  display: block;
}

.moon-icon {
  display: none;
}

body.dark-mode .sun-icon {
  display: none;
}

body.dark-mode .moon-icon {
  display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 24px;
  height: 2px;
  background: var(--color-neutral-700);
  transition: all var(--transition-base);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

body.dark-mode .hamburger,
body.dark-mode .hamburger::before,
body.dark-mode .hamburger::after {
  background: var(--color-white);
}

body.dark-mode .mobile-menu-toggle.active .hamburger {
  background: transparent;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: var(--font-normal);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-apple);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--color-blue-hover);
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--color-blue);
  border: 1.5px solid var(--color-blue);
}

.btn-secondary:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: none;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}

.btn-large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  min-height: 56px;
}

.btn-full {
  width: 100%;
}

/* ==================== HERO SECTION WITH CODE EDITOR ==================== */
.hero-interactive {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}

.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 1;
}

body.dark-mode .hero-gradient-bg {
  opacity: 0.9;
}

/* Subtle Apple-style gradient overlay */
.hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(0, 113, 227, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(245, 99, 0, 0.03) 0%, transparent 50%);
  animation: subtle-pulse 20s ease infinite;
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, var(--text-8xl));
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-accent {
  color: var(--color-blue);
  position: relative;
}

.hero-subtitle {
  font-size: var(--text-2xl);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--font-normal);
}

.hero-stat {
  font-size: var(--text-lg);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-12);
}

.stat-highlight {
  color: var(--color-accent);
  font-weight: var(--font-bold);
  font-size: var(--text-2xl);
}

/* Code Editor Demo */
.code-editor-demo {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-12);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-card);
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.editor-title {
  color: var(--color-white);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
}

.editor-badge {
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
}

.editor-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.editor-pane,
.preview-pane {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pane-label {
  background: rgba(249, 115, 22, 0.2);
  color: var(--color-accent);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
}

.code-input {
  width: 100%;
  min-height: 150px;
  background: transparent;
  color: #e2e8f0;
  border: none;
  padding: var(--space-4);
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: var(--text-sm);
  line-height: 1.6;
  resize: vertical;
}

.code-input:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: -2px;
}

.code-preview {
  width: 100%;
  min-height: 150px;
  border: none;
  background: var(--color-white);
}

.editor-message {
  color: var(--color-white);
  text-align: center;
  font-style: italic;
  margin: 0;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: var(--space-32) 0;
  background: var(--color-bg-primary);
}

.section:nth-child(even) {
  background: var(--color-bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto var(--space-20);
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

body.dark-mode .section-header h2 {
  color: var(--color-white);
}

.section-header p {
  font-size: var(--text-2xl);
  color: var(--color-neutral-600);
  line-height: var(--leading-relaxed);
}

/* ==================== QUOTE CALCULATOR ==================== */
.quote-section {
  background: var(--color-neutral-100);
}

body.dark-mode .quote-section {
  background: var(--color-neutral-800);
}

.quote-calculator {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
  transition: min-height var(--transition-slow);
}

.quote-calculator:has(.quote-result.show) {
  min-height: 700px;
}

.quote-form {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

body.dark-mode .quote-form {
  background: var(--color-neutral-900);
}

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

.form-group label {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2);
}

.form-group select {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  background: var(--color-white);
  color: var(--color-neutral-800);
  cursor: pointer;
  transition: border-color var(--transition-base);
}

body.dark-mode .form-group select {
  background: var(--color-neutral-800);
  color: var(--color-white);
  border-color: var(--color-neutral-600);
}

.form-group select:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-color: var(--color-blue);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ==================== FORM VALIDATION ERRORS ==================== */
.form-error {
  display: block;
  color: #dc2626;
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  font-weight: var(--font-medium);
}

body.dark-mode .form-error {
  color: #fca5a5;
}

.form-group select.error,
.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

body.dark-mode .form-group select.error,
body.dark-mode .form-group input.error,
body.dark-mode .form-group textarea.error {
  border-color: #fca5a5;
  background-color: rgba(220, 38, 38, 0.1);
}

.form-group select.error:focus-visible,
.form-group input.error:focus-visible,
.form-group textarea.error:focus-visible {
  outline-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Quote Result Card */
.quote-result {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 3px solid var(--color-accent);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-slow);
  z-index: 500;
}

body.dark-mode .quote-result {
  background: var(--color-neutral-900);
}

.quote-result.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.result-header h3 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.result-close {
  background: none;
  border: none;
  font-size: var(--text-4xl);
  color: var(--color-neutral-600);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.result-close:hover {
  color: var(--color-accent);
}

.result-price {
  text-align: center;
  padding: var(--space-8) 0;
  border-bottom: 2px solid var(--color-neutral-200);
  margin-bottom: var(--space-6);
}

.price-label {
  display: block;
  font-size: var(--text-base);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-2);
}

.price-value {
  display: block;
  font-size: var(--text-6xl);
  font-weight: var(--font-black);
  color: var(--color-accent);
}

.result-package h4 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.feature-list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.feature-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-neutral-200);
  color: var(--color-neutral-700);
}

.feature-list li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: var(--font-bold);
  margin-right: var(--space-3);
}

/* ==================== SERVICE AREA ==================== */
.map-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

body.dark-mode .map-section {
  background: var(--color-neutral-900);
}

.service-area-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.area-card {
  background: var(--color-neutral-100);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

body.dark-mode .area-card {
  background: var(--color-neutral-800);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover::before {
  width: 400px;
  height: 400px;
}

.area-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(249, 115, 22, 0.25);
}

.area-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.area-card:hover .area-icon {
  transform: scale(1.15) rotate(5deg);
}

.area-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-weight: var(--font-bold);
  transition: color var(--transition-base);
}

.area-card:hover h3 {
  color: var(--color-accent);
}

.area-card p {
  color: var(--color-neutral-600);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (max-width: 968px) {
  .service-area-container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ==================== PROCESS TIMELINE ==================== */
.timeline-section {
  background: var(--color-neutral-100);
}

body.dark-mode .timeline-section {
  background: var(--color-neutral-800);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Animated connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-blue) 100%);
  border-radius: 2px;
  opacity: 0.3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline.animate-line::before {
  transform: scaleY(1);
}

.timeline-step {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  opacity: 0;
  transform: translateX(-50px) translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Staggered animation delays */
.timeline-step:nth-child(1) {
  transition-delay: 0.1s;
}
.timeline-step:nth-child(2) {
  transition-delay: 0.2s;
}
.timeline-step:nth-child(3) {
  transition-delay: 0.3s;
}
.timeline-step:nth-child(4) {
  transition-delay: 0.4s;
}
.timeline-step:nth-child(5) {
  transition-delay: 0.5s;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  position: relative;
  z-index: 2;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Pulsing ring animation */
.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-accent);
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.timeline-step.visible .step-number {
  transform: scale(1);
  animation: step-number-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes step-number-bounce {
  0% {
    transform: scale(0.8) rotate(-10deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.timeline-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

.step-content {
  flex: 1;
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

body.dark-mode .step-content {
  background: var(--color-neutral-900);
}

/* Animated gradient overlay on hover */
.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content:hover::before {
  left: 100%;
}

.step-content:hover {
  transform: translateY(-6px) translateX(4px);
  box-shadow: 0 12px 40px -8px rgba(249, 115, 22, 0.3);
}

.step-content h3 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.step-content > p {
  color: var(--color-neutral-600);
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.timeline-step.expanded .step-details {
  max-height: 500px;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-neutral-200);
}

.step-details p {
  color: var(--color-neutral-700);
  margin-bottom: var(--space-4);
}

.step-details blockquote {
  background: var(--color-neutral-100);
  padding: var(--space-4);
  border-left: 4px solid var(--color-accent);
  font-style: italic;
  color: var(--color-neutral-700);
  margin: 0;
}

body.dark-mode .step-details blockquote {
  background: var(--color-neutral-800);
}

/* ==================== PORTFOLIO PREVIEW / RESULTS ==================== */
.portfolio-preview {
  background: var(--color-white);
}

body.dark-mode .portfolio-preview {
  background: var(--color-neutral-900);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.result-card {
  background: var(--color-neutral-100);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

body.dark-mode .result-card {
  background: var(--color-neutral-800);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover::before {
  left: 100%;
}

.result-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.3);
}

.result-metric {
  margin-bottom: var(--space-6);
}

.metric-value {
  font-size: var(--text-6xl);
  font-weight: var(--font-black);
  color: var(--color-accent);
  line-height: 1;
}

.metric-symbol {
  font-size: var(--text-4xl);
  color: var(--color-accent);
}

.metric-label {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-neutral-700);
  margin-top: var(--space-3);
  font-weight: var(--font-semibold);
}

.result-description {
  color: var(--color-neutral-600);
  margin-bottom: var(--space-4);
}

.result-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: color var(--transition-fast);
}

.result-link:hover {
  color: var(--color-accent-hover);
}

/* ==================== FINAL CTA ==================== */
.cta-final {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle accent overlay */
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 113, 227, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.cta-content p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  color: var(--color-white);
}

.btn-cta {
  font-size: var(--text-2xl);
  padding: var(--space-6) var(--space-16);
  min-height: 70px;
}

.cta-subtext {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-4);
  font-style: italic;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--color-bg-secondary);
  color: var(--color-neutral-600);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer::before {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-column h3 {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-column h3::after {
  display: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--color-neutral-600);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  display: inline-block;
  font-size: 0.875rem;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-contact p {
  margin-bottom: var(--space-3);
}

.footer-contact a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  font-weight: var(--font-semibold);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-neutral-600);
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
  text-align: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .hero-title {
    font-size: var(--text-5xl);
  }

  .editor-container {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: var(--space-6) var(--space-4);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
  }

  body.dark-mode .nav-menu {
    background: var(--color-neutral-900);
    border-bottom: 1px solid var(--color-neutral-700);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--color-neutral-200);
  }

  body.dark-mode .nav-menu li {
    border-bottom-color: var(--color-neutral-700);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link,
  .btn-nav-cta {
    display: block;
    width: 100%;
    padding: var(--space-4);
    text-align: left;
    font-size: var(--text-base);
  }

  .btn-nav-cta {
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-2);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .dark-mode-toggle {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .performance-badge {
    bottom: var(--space-3);
    right: var(--space-3);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================== PERFORMANCE BADGE UPDATES ==================== */
.badge-label-bottom {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-neutral-600);
  margin-top: var(--space-2);
  font-style: italic;
}

/* ==================== STORY SECTION (Why I Switched) ==================== */
.story-section {
  background: var(--color-white);
}

body.dark-mode .story-section {
  background: var(--color-neutral-900);
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.story-text h2 {
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.story-text p {
  font-size: var(--text-lg);
  color: var(--color-neutral-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.story-proof {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.proof-card {
  background: var(--color-neutral-100);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

body.dark-mode .proof-card {
  background: var(--color-neutral-800);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.2);
  border-color: var(--color-accent);
  background: var(--color-white);
}

body.dark-mode .proof-card:hover {
  background: var(--color-neutral-700);
}

.proof-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
}

.proof-icon svg {
  width: 100%;
  height: 100%;
}

.proof-card h3 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.proof-card p {
  color: var(--color-neutral-600);
  font-size: var(--text-sm);
  margin: 0;
}

/* ==================== FOUNDING CLIENT SECTION ==================== */
.founding-section {
  background: var(--gradient-hero);
  padding: var(--space-20) 0;
}

.founding-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

body.dark-mode .founding-card {
  background: var(--color-neutral-900);
}

.founding-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  box-shadow: var(--shadow-glow);
}

.founding-card h2 {
  text-align: center;
  font-size: var(--text-5xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.founding-subtitle {
  text-align: center;
  font-size: var(--text-xl);
  color: var(--color-neutral-600);
  margin-bottom: var(--space-12);
}

.founding-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  align-items: start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
}

.benefit-text h4 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.benefit-text p {
  color: var(--color-neutral-600);
  margin: 0;
}

.founding-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.founding-price-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-apple);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-mode .founding-price-card {
  background: var(--color-neutral-800);
}

.founding-price-card.featured {
  border: 2px solid var(--color-blue);
  box-shadow: var(--shadow-lg);
}

.founding-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.founding-price-card.featured:hover {
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.founding-price-card h4 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.price-old {
  font-size: var(--text-2xl);
  color: var(--color-neutral-500);
  text-decoration: line-through;
}

.price-new {
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  color: var(--color-success);
}

.price-savings {
  color: var(--color-accent);
  font-weight: var(--font-semibold);
  margin: 0;
}

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

.founding-note {
  margin-top: var(--space-4);
  color: var(--color-neutral-600);
  font-size: var(--text-sm);
  font-style: italic;
}

/* ==================== CAPABILITIES SECTION ==================== */
.capabilities-section {
  background: var(--color-neutral-100);
}

body.dark-mode .capabilities-section {
  background: var(--color-neutral-800);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.capability-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-apple);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-mode .capability-card {
  background: var(--color-neutral-900);
}

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

.capability-card h3 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-weight: var(--font-semibold);
  letter-spacing: -0.01em;
}

.capability-card ul {
  list-style: none;
  padding: 0;
}

.capability-card li {
  padding: var(--space-3) 0;
  color: var(--color-neutral-600);
  border-bottom: 1px solid var(--color-neutral-200);
  font-size: var(--text-base);
}

.capability-card li:last-child {
  border-bottom: none;
}

.capability-card li::before {
  content: '→';
  color: var(--color-blue);
  margin-right: var(--space-3);
  font-weight: var(--font-semibold);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
  background: var(--color-bg-secondary);
}

body.dark-mode .portfolio-section {
  background: var(--color-neutral-900);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.portfolio-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition-apple);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

body.dark-mode .portfolio-card {
  background: var(--color-neutral-800);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.portfolio-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-neutral-100);
  overflow: hidden;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder svg {
  width: 100%;
  height: 100%;
}

.portfolio-content {
  padding: var(--space-10);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-tags {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.portfolio-tag {
  background: var(--color-blue-light);
  color: var(--color-blue);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.dark-mode .portfolio-tag {
  background: rgba(0, 113, 227, 0.2);
  color: var(--color-blue-hover);
}

.portfolio-content h3 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-weight: var(--font-semibold);
  letter-spacing: -0.02em;
}

body.dark-mode .portfolio-content h3 {
  color: var(--color-white);
}

.portfolio-description {
  color: var(--color-neutral-600);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

body.dark-mode .portfolio-description {
  color: var(--color-neutral-300);
}

.portfolio-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  flex: 1;
}

.portfolio-features li {
  padding: var(--space-3) 0;
  color: var(--color-neutral-700);
  border-bottom: 1px solid var(--color-neutral-200);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

body.dark-mode .portfolio-features li {
  color: var(--color-neutral-400);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.portfolio-features li:last-child {
  border-bottom: none;
}

.portfolio-features li::before {
  content: '✓';
  color: var(--color-success);
  margin-right: var(--space-3);
  font-weight: var(--font-semibold);
}

.portfolio-links {
  display: flex;
  gap: var(--space-4);
  margin-top: auto;
}

.portfolio-links .btn {
  flex: 1;
  text-align: center;
}

/* ==================== MAP TOOLTIP UPDATE ==================== */
.tooltip-info {
  color: var(--color-neutral-700);
  font-size: var(--text-sm);
  margin: 0;
}

/* ==================== RESPONSIVE UPDATES ==================== */
@media (max-width: 968px) {
  .story-content {
    grid-template-columns: 1fr;
  }

  .founding-pricing {
    grid-template-columns: 1fr;
  }

  .founding-price-card.featured {
    transform: scale(1);
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
