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

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1424;
  --bg-tertiary: #141a2e;
  --bg-card: #161c32;
  --bg-card-hover: #1a2240;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 163, 255, 0.2);
  --text-primary: #f0f2f5;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a90;
  --accent-blue: #00a3ff;
  --accent-blue-dark: #0080cc;
  --accent-blue-light: rgba(0, 163, 255, 0.15);
  --accent-teal: #00d4aa;
  --accent-teal-light: rgba(0, 212, 170, 0.15);
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: var(--accent-blue-light);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-blue);
  top: -200px;
  right: -100px;
  opacity: 0.08;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-teal);
  bottom: -150px;
  left: -100px;
  opacity: 0.06;
}

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

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-blue-light);
  border-radius: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.problem {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.chat-examples {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}

.chat-bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.chat-bubble:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.chat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.chat-bubble p {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 500;
}

.problem-explanation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problem-explanation p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.solution {
  padding: 120px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.how-it-works {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 20px;
  line-height: 1;
  opacity: 0.3;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  opacity: 0.3;
}

.ai-example {
  padding: 120px 0;
  background: var(--bg-primary);
}

.ai-demo {
  max-width: 720px;
  margin: 0 auto;
}

.ai-demo-window {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 163, 255, 0.08), 0 0 0 1px rgba(0, 163, 255, 0.1);
}

.ai-demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.ai-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
}

.ai-demo-header span {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

.ai-demo-body {
  padding: 32px 24px;
}

.ai-prompt {
  margin-bottom: 24px;
}

.ai-prompt-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-teal);
  margin-bottom: 8px;
}

.ai-prompt p {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.ai-response {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.ai-response-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.ai-response > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.ai-results {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-results li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ai-results li strong {
  color: var(--text-primary);
}

.ai-demo-note {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audit-offer {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.offer-content {
  max-width: 800px;
  margin: 0 auto;
}

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.offer-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.offer-item:hover {
  border-color: var(--border-glow);
}

.offer-item svg {
  flex-shrink: 0;
  color: var(--accent-teal);
  margin-top: 2px;
}

.offer-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.offer-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.social-proof {
  padding: 120px 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

.case-studies-placeholder {
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.case-studies-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #001a33 0%, #002b4d 50%, #001a33 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.final-cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.lead-form-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.intake-form-section {
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.intake-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.intake-form-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.intake-form-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.intake-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.intake-form-wrapper iframe {
  display: block;
  width: 100%;
}

.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: 0 20px 60px rgba(0, 163, 255, 0.05);
}

.form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-family);
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-light);
}

.form-group input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  min-height: 18px;
}

.btn-submit {
  width: 100%;
  padding: 18px 36px;
  font-size: 17px;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  color: var(--success);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer {
  padding: 64px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-location {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 18px;
  }

  .btn-nav {
    font-size: 16px;
    padding: 14px 28px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }

  .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .problem,
  .solution,
  .how-it-works,
  .ai-example,
  .audit-offer,
  .social-proof,
  .faq-section,
  .final-cta,
  .lead-form-section,
  .case-study,
  .about-us {
    padding: 80px 0;
  }

  .intake-form-section {
    padding: 60px 0 80px;
  }

  .intake-form-wrapper iframe {
    min-height: 1000px !important;
  }

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

  .feature-card {
    padding: 32px 24px;
  }

  .steps {
    flex-direction: column;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .step-connector::after {
    width: 2px;
    height: 100%;
  }

  .step {
    padding: 32px 24px;
  }

  .ai-demo-body {
    padding: 24px 16px;
  }

  .form-wrapper {
    padding: 40px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-header h2 {
    font-size: 26px;
  }

  .final-cta-content h2 {
    font-size: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .chat-bubble {
    padding: 16px 20px;
  }

  .chat-bubble p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .final-cta-content h2 {
    font-size: 26px;
  }

  .logo img {
    height: 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* Case Study Section */
.case-study {
  position: relative;
  padding: 120px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.case-study-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-study-inner {
  position: relative;
  z-index: 1;
}

.cs-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.cs-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.cs-stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cs-stat-highlight {
  border-top: 2px solid var(--accent-blue);
}

.cs-stat-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cs-stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.cs-detail-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cs-detail-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cs-platform-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-platform-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cs-platform-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.cs-platform-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-blue);
}

.cs-bar-track {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.cs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-progression {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  height: 180px;
  padding-top: 16px;
}

.cs-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
}

.cs-month-bar-wrap {
  flex: 1;
  width: 100%;
  max-width: 64px;
  display: flex;
  align-items: flex-end;
}

.cs-month-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent-blue), rgba(0, 163, 255, 0.4));
  border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-month-bar-accent {
  background: linear-gradient(180deg, var(--accent-teal), rgba(0, 212, 170, 0.4));
}

.cs-month-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 12px;
}

.cs-month-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

.cs-testimonial {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.cs-quote-icon {
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.cs-quote-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 24px;
}

.cs-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cs-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.cs-quote-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.cs-quote-role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
}

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

/* About Us Section */
.about-us {
  padding: 120px 0;
  background: #0a0e1a;
}

.about-us-inner {
  position: relative;
}

.section-tag-dark {
  background: rgba(0, 163, 255, 0.08);
  color: var(--accent-blue);
}

.about-us-title {
  color: #f0f2f5;
}

.about-us-desc {
  color: #a0aec0;
  font-size: 17px;
  line-height: 1.7;
}

.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.about-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #f0f2f5;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.about-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #8a94a6;
}

.intake-inline {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: left;
}

.intake-progress {
  margin-bottom: 32px;
}

.intake-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.intake-pl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.intake-pl.active {
  color: #2563EB;
}

.intake-progress-track {
  height: 2px;
  background: #2e2e2e;
  border-radius: 2px;
  overflow: hidden;
}

.intake-progress-fill {
  height: 100%;
  background: #2563EB;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.intake-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.intake-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.intake-step {
  display: none;
  animation: intakeStepIn 0.35s ease forwards;
}

.intake-step.active {
  display: block;
}

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

.intake-step-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 8px;
}

.intake-step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
  color: #f5f5f0;
}

.intake-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
}

.intake-field {
  margin-bottom: 20px;
}

.intake-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.intake-field input[type="text"],
.intake-field input[type="email"],
.intake-field input[type="tel"],
.intake-field select,
.intake-field textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #404040;
  border-radius: 12px;
  color: #f5f5f0;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.intake-field input::placeholder,
.intake-field textarea::placeholder {
  color: #404040;
}

.intake-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.intake-field select option {
  background: #1c1c1c;
}

.intake-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.intake-err {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
}

.intake-field.has-error input,
.intake-field.has-error select,
.intake-field.has-error textarea {
  border-color: #ff6b6b;
}

.intake-field.has-error .intake-err {
  display: block;
}

.intake-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intake-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.intake-check {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  border: 1px solid #404040;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #bbb;
  transition: all 0.2s ease;
  user-select: none;
  margin: 0;
}

.intake-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.intake-check span {
  position: relative;
  padding-left: 26px;
}

.intake-check span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid #404040;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.intake-check input:checked + span::before {
  background: #2563EB;
  border-color: #2563EB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.intake-check:has(input:checked) {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.15);
  color: #f5f5f0;
}

.intake-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intake-radio-col {
  flex-direction: column;
  align-items: flex-start;
}

.intake-radio {
  display: block;
  background: #0a0a0a;
  border: 1px solid #404040;
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  color: #bbb;
  transition: all 0.2s ease;
  margin: 0;
  white-space: nowrap;
}

.intake-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.intake-radio:has(input:checked) {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.15);
  color: #2563EB;
  font-weight: 500;
}

.intake-dynamic {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: intakeStepIn 0.3s ease forwards;
}

.intake-dynamic.visible {
  display: block;
}

.intake-dynamic-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 16px;
}

.intake-range-wrap {
  position: relative;
  padding-bottom: 24px;
}

.intake-range-wrap input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: #2e2e2e;
  border-radius: 2px;
  outline: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.intake-range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #2563EB;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
  transition: transform 0.2s ease;
}

.intake-range-wrap input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.intake-range-value {
  font-size: 13px;
  color: #2563EB;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
}

.intake-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.intake-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.intake-btn-back {
  background: transparent;
  border: 1px solid #404040;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.intake-btn-back:hover {
  border-color: #666;
  color: #f5f5f0;
}

.intake-btn-next {
  flex: 1;
  background: #2563EB;
  border: none;
  color: #fff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.3px;
  position: relative;
  overflow: hidden;
}

.intake-btn-next::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.intake-btn-next:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.intake-btn-next:hover::after {
  opacity: 1;
}

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

.intake-btn-next:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.intake-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: intakeStepIn 0.4s ease forwards;
}

.intake-success.visible {
  display: block;
}

.intake-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #2563EB;
}

.intake-success h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  color: #f5f5f0;
}

.intake-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.intake-success a {
  color: #2563EB;
}

@media (max-width: 768px) {
  .intake-card {
    padding: 28px 20px;
  }

  .intake-row,
  .intake-check-grid {
    grid-template-columns: 1fr;
  }

  .intake-progress-labels {
    gap: 4px;
  }

  .intake-pl {
    font-size: 10px;
  }

  .intake-radio {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .intake-inline {
    margin-top: 32px;
  }

  .intake-card {
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .case-study {
    padding: 80px 0;
  }

  .cs-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-stat-card {
    padding: 28px 20px;
  }

  .cs-stat-value {
    font-size: 36px;
  }

  .cs-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-detail-block {
    padding: 24px;
  }

  .cs-progression {
    height: 140px;
  }

  .cs-testimonial {
    padding: 28px 20px;
  }

  .cs-quote-text {
    font-size: 16px;
  }

  .about-us {
    padding: 80px 0;
  }

  .about-stats-row {
    flex-direction: column;
    gap: 0;
    padding: 24px;
  }

  .about-stat {
    padding: 20px 0;
  }

  .about-stat-divider {
    width: 60%;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .cs-stat-value {
    font-size: 32px;
  }

  .cs-progression {
    gap: 16px;
  }

  .about-stat-value {
    font-size: 24px;
  }
}

.about-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-blue-light);
  border-radius: 20px;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.about-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-story {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-story-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-story h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-story p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-approach {
  padding: 100px 0;
  background: var(--bg-primary);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.approach-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.approach-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--accent-blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-why-aeo {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-why-aeo .section-header {
  margin-bottom: 48px;
}

.about-why-aeo-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-why-aeo-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-why-aeo-stat {
  display: inline-block;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 16px;
}

.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #001a33 0%, #002b4d 50%, #001a33 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.about-cta-section .btn-primary {
  position: relative;
  z-index: 1;
}

.blog-article-page {
  padding: 160px 0 80px;
  background: var(--bg-primary);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 40px;
  transition: opacity 0.2s ease;
}

.blog-back-link:hover {
  opacity: 0.8;
}

.blog-back-link svg {
  width: 16px;
  height: 16px;
}

.blog-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  padding: 6px 16px;
  background: var(--accent-blue-light);
  border-radius: 20px;
  margin-bottom: 20px;
}

.blog-article h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 16px;
}

.blog-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-content li {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.blog-content blockquote {
  border-left: 3px solid var(--accent-blue);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--accent-blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content blockquote p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 0;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.blog-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.2s ease;
}

.blog-tag:hover {
  border-color: var(--border-glow);
  color: var(--accent-blue);
}

.blog-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  text-align: center;
}

.blog-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.blog-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.nav-active {
  color: var(--accent-blue) !important;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 80px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

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

  .about-story,
  .about-approach,
  .about-why-aeo,
  .about-cta-section {
    padding: 80px 0;
  }

  .about-cta-section h2 {
    font-size: 30px;
  }

  .blog-article-page {
    padding: 120px 0 60px;
  }

  .blog-article h1 {
    font-size: 30px;
  }

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .blog-article h1 {
    font-size: 26px;
  }

  .about-why-aeo-stat {
    font-size: 48px;
  }
}
