/* CSS DESIGN SYSTEM: FosteringRecruitment.uk */

:root {
  --font-body: 'Inter', sans-serif;
  --font-header: 'Outfit', sans-serif;
  
  --bg-dark: #091116;
  --bg-body: radial-gradient(circle at 50% 0%, #0f1c24 0%, #091116 100%);
  --panel-bg: rgba(15, 28, 36, 0.65);
  --panel-border: rgba(255, 255, 255, 0.05);
  --panel-glow: 0 16px 32px -4px rgba(0, 0, 0, 0.45), 0 4px 12px -2px rgba(0, 0, 0, 0.35);
  
  --accent-cyan: #14b8a6; /* Calming Spruce Teal */
  --accent-cyan-hover: #2dd4bf;
  --accent-gold: #d97706; /* Warm Amber Gold */
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;
  --danger: #f43f5e;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Ambient Glows & Grid */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: var(--font-body);
  background: var(--bg-dark);
  background-image: var(--bg-body);
  color: var(--text-white);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-gold {
  background: radial-gradient(circle, rgba(217, 119, 6, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-header);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Glassmorphism Panel Class */
.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--panel-glow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 0; /* Compact padding around the logo */
  background: rgba(7, 12, 25, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 100%;
  padding: 0 4rem;
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 2rem;
  }
}

.logo {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-bold {
  color: var(--text-white);
}

.logo-light {
  color: var(--accent-cyan);
}

.nav-badges {
  display: flex;
  gap: 0.75rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-ofsted {
  background: rgba(217, 119, 6, 0.10);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: var(--accent-gold);
}

.badge-ciw {
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.20);
  color: var(--accent-cyan);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 60px); /* Scale dynamically with screen height minus header */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0; /* Shaved padding to fit annotation on shorter viewports */
  box-sizing: border-box;
}

.hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem; /* Shaved gaps */
  align-items: center;
  text-align: center;
}

.desktop-only {
  display: inline;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-container {
    gap: 2rem;
  }
  .main-title {
    font-size: 2.2rem !important; /* Scale down title on mobile screen widths */
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 1.05rem !important; /* Scale down subtitle on mobile */
  }
  .desktop-only {
    display: none !important;
  }
}

.hero-content {
  width: 100%;
  max-width: 960px; /* Expanded for better screen balance */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.main-title {
  font-size: 3.3rem; /* Elegantly scaled desktop title */
  line-height: 1.25; /* Spacious title line spacing */
  margin-bottom: 1.25rem; /* Shaved margins */
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.text-accent {
  color: var(--accent-cyan);
}

.text-nowrap {
  white-space: nowrap; /* Keep highlighted brand text together */
}

.hero-subtitle {
  font-size: 1.22rem; /* Easier to read font size */
  color: #cbd5e1; /* Higher contrast Slate 300 for maximum readability */
  margin-bottom: 2.25rem; /* Shaved margins */
  max-width: 900px;
  line-height: 1.85; /* Spacious body line height */
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.hero-subtitle strong {
  color: var(--text-white); /* Pure white highlight for bold anchors */
  font-weight: 600;
}

.cta-group {
  display: flex;
  gap: 1.5rem; /* Wider gap between buttons */
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem; /* More substantial premium buttons */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-cyan-hover);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--text-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  background: #f59e0b; /* Brighter gold hover */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger);
}

.btn-danger:hover {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Hero Features Bar (above the fold compact checklist) */
.hero-features-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.25rem; /* Wider padding for premium look */
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 1.5rem;
  gap: 1.5rem; /* Wider gaps between columns */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem; /* Better space between icon and text */
  flex: 1;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  color: var(--accent-cyan);
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.12);
  width: 42px; /* Substantial icon size */
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-header);
  font-size: 0.98rem; /* Slightly larger heading */
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 0.8rem; /* Highly legible paragraph size */
  color: #cbd5e1; /* Replaced var(--text-muted) with Slate 300 for clearer reading */
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .hero-features-bar {
    flex-wrap: wrap;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .feature-item {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 1 1 100%;
  }
}

/* Calculator Section */
.calculator-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.calculator-card {
  padding: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.col-6 {
  width: 50%;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.text-glow {
  color: var(--accent-cyan);
  font-weight: 600;
  text-shadow: none;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(20, 184, 166, 0.4);
  transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.input-field, .select-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.input-field:focus, .select-field:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.select-field option {
  background: var(--bg-dark);
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
  align-items: start;
}

.checkbox-field {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Results Card */
.results-card {
  padding: 3rem;
  position: sticky;
  top: 100px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.live-indicator {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  background: rgba(20, 184, 166, 0.10);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.results-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.metric-value {
  font-family: var(--font-header);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.text-cyan {
  color: var(--accent-cyan);
}

.warning-panel {
  margin-top: 2rem;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 1.25rem;
  border-radius: 8px;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.results-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 2.5rem 0;
}

.bundle-preview h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.bundle-list li {
  display: flex;
  justify-content: space-between;
}

.text-through {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.3);
  margin-right: auto;
  margin-left: 1rem;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 12, 25, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-card {
  width: 500px;
  padding: 3rem;
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  background: rgba(20, 184, 166, 0.10);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
}

.sandbox-credentials-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.sandbox-credentials-card code {
  color: var(--accent-cyan);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Timeline Info Section */
.info-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  position: relative;
}

.section-alt {
  background: #0b151b;
  border-bottom: 1px solid rgba(20, 184, 166, 0.08);
}

.section-subtitle-badge {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.timeline-card {
  padding: 2.5rem;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.20);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.font-gold {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-gold);
}

.price-title {
  color: var(--accent-cyan);
  font-weight: bold;
  margin: 0.5rem 0 1.5rem 0;
}

.card-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* GDPR Panel */
.gdpr-panel {
  padding: 4rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  background: #070c10;
}

.gdpr-box {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .gdpr-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.gdpr-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.gdpr-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gdpr-action {
  display: flex;
  gap: 0.75rem;
  width: 40%;
}

@media (max-width: 768px) {
  .gdpr-action {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: #05080b;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.disclaimer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Dynamic SVG Projection Chart & Donut Chart Styling */
.runway-chart-container {
  width: 100%;
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.runway-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.runway-chart-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.runway-chart-subtitle {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: bold;
}

.runway-chart {
  width: 100%;
  height: 140px;
  display: block;
  overflow: visible;
}

.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.chart-line {
  stroke: var(--accent-cyan);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
  transition: d 0.35s ease;
}

.chart-area {
  fill: url(#chart-gradient);
  opacity: 0.10;
  transition: d 0.35s ease;
}

.chart-dot {
  fill: var(--bg-dark);
  stroke: var(--accent-cyan);
  stroke-width: 2.5;
  r: 4.5;
  cursor: pointer;
  transition: transform 0.15s ease, r 0.15s ease;
}

.chart-dot:hover {
  r: 6.5;
  stroke: var(--text-white);
  filter: drop-shadow(0 0 6px var(--accent-cyan));
}

.chart-axis-text {
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
}

/* Tooltip overlay styling */
.chart-tooltip {
  position: absolute;
  background: rgba(13, 26, 49, 0.95);
  border: 1px solid var(--accent-cyan);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-white);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.1s ease;
  z-index: 10;
  transform: translate(-50%, -100%) translateY(-10px);
}

.chart-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: var(--accent-cyan) transparent;
  display: block;
  width: 0;
}

/* CRM Pipeline visualizer styling */
.crm-pipeline {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.pipeline-stage {
  flex: 1;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pipeline-stage.active {
  border-color: var(--accent-cyan);
  background: rgba(20, 184, 166, 0.03);
}

.pipeline-stage h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.pipeline-stage.active h5 {
  color: var(--accent-cyan);
}

.stage-count {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.stage-arrow {
  position: absolute;
  right: -0.4rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

/* Donut Chart styles */
.donut-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.donut-chart {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.donut-ring {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 14;
}

.donut-segment {
  fill: transparent;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 0.35s ease;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Vetting checklists and referral match details */
.vetting-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.vetting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.vetting-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vetting-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: all 0.2s ease;
}

.vetting-item.checked {
  color: var(--text-white);
}

.vetting-item.checked .vetting-check {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-dark);
  font-weight: bold;
}

.vetting-item.warning .vetting-check {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: bold;
}

/* Handwritten Annotations */
.handwritten-note {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--accent-gold);
  transform: rotate(-2deg);
  display: inline-block;
  opacity: 0.95;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.handwritten-arrow {
  color: var(--accent-gold);
  stroke: var(--accent-gold);
  opacity: 0.85;
}

/* Solution Grid Layout (3+2 Row Fill Grid) */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.solution-card {
  grid-column: span 2;
  position: relative;
}

.solution-card h3 {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.solution-card.wide-card {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .solution-card {
    grid-column: span 3 !important;
  }
  .solution-card.last-card {
    grid-column: span 6 !important;
  }
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .solution-card {
    grid-column: span 1 !important;
    padding: 1.75rem !important;
  }
  .solution-card.last-card {
    grid-column: span 1 !important;
  }
}

/* Value Stack Section */
.value-stack-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  background: #091116;
}

.value-stack-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem;
  border: 1px solid rgba(217, 119, 6, 0.2); /* Soft gold accent border */
  border-radius: 16px;
  background: rgba(15, 28, 36, 0.75);
  box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(217, 119, 6, 0.03);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.value-stack-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.stack-badge {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.stack-title {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  text-align: left;
}

.stack-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.stack-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-row.core-item {
  background: rgba(20, 184, 166, 0.02);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 0.5rem;
}

.stack-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stack-item-title {
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.stack-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stack-item-value {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-align: right;
  white-space: nowrap;
}

.stack-item-value.value-free {
  color: var(--accent-cyan);
}

.text-through-value {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  font-weight: 500;
}

.stack-total-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem;
  margin-bottom: 2.5rem;
}

.total-retail-value {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.retail-cross-out {
  text-decoration: line-through;
  color: var(--danger);
  font-weight: bold;
}

.offer-final-price {
  font-family: var(--font-header);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.final-price-glow {
  color: var(--accent-gold);
  font-size: 2.5rem;
  display: block;
  margin-top: 0.25rem;
  text-shadow: 0 0 15px rgba(217, 119, 6, 0.2);
}

.motive-transparency {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  text-align: left;
  max-width: 780px;
  margin: 0 auto;
}

/* Guarantee Box */
.guarantee-box {
  border: 1px dashed rgba(217, 119, 6, 0.25);
  background: rgba(217, 119, 6, 0.02);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.guarantee-badge {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-gold);
  border: 1px solid rgba(217, 119, 6, 0.25);
  background: rgba(217, 119, 6, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.guarantee-box h3 {
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.guarantee-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

.offer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .value-stack-card {
    padding: 2rem;
  }
  .stack-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
  .stack-item-value {
    text-align: left;
    margin-top: 0.25rem;
  }
  .final-price-glow {
    font-size: 2rem;
  }
}

/* Founder's Journey Section */
.founders-journey-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  background: #091116;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

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

@media (max-width: 640px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.journey-step-card {
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.journey-step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-header);
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.journey-step-card:hover .journey-step-number {
  color: rgba(20, 184, 166, 0.08);
}

.journey-step-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.tag-trap {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: var(--danger);
}

.tag-shift {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: var(--accent-cyan);
}

.tag-launch {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: var(--accent-gold);
}

.tag-freedom {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.journey-step-card h3 {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.journey-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Qualification Section (Who This Is For / Not For) */
.qualification-section {
  padding: 6rem 0;
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3rem auto 0 auto;
}

@media (max-width: 768px) {
  .qualification-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.qual-box {
  padding: 3rem;
  height: 100%;
}

.qual-box-for {
  border-left: 3px solid var(--accent-cyan);
}

.qual-box-not {
  border-left: 3px solid var(--danger);
}

.qual-title {
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.qual-box-for .qual-title {
  color: var(--accent-cyan);
}

.qual-box-not .qual-title {
  color: var(--danger);
}

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.qual-list li {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.qual-list li strong {
  color: var(--text-white);
  display: block;
  margin-bottom: 0.25rem;
}

/* Placement Margin Table Section */
.margin-table-container {
  max-width: 850px;
  margin: 0 auto 4rem auto;
}

.margin-table-card {
  padding: 3rem;
  text-align: center;
}

.margin-table-title {
  color: var(--accent-cyan);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.margin-table-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.margin-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.margin-data-table th, .margin-data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.margin-data-table th {
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.15);
}

.margin-data-table tbody tr:hover {
  background: rgba(20, 184, 166, 0.02);
}

.margin-table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  background: #091116;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(20, 184, 166, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-white);
  transition: color 0.2s ease;
}

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

.faq-icon {
  font-size: 1.35rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.65;
  padding-bottom: 1.5rem;
}

/* FAQ Item Active State */
.faq-item.active {
  border-color: rgba(20, 184, 166, 0.25);
  background: rgba(15, 28, 36, 0.85);
}

.faq-item.active .faq-question {
  color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-item.active .faq-answer {
  max-height: 250px; /* Expands to fit text */
  padding: 0 2rem;
}

/* Testimonials Grid */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.testimonial-card {
  padding: 2.5rem;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: rgba(20, 184, 166, 0.08);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-style: italic;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
  line-height: 1.7;
  font-size: 0.92rem;
}

.quote-author {
  display: flex;
  flex-direction: column;
}

.quote-author strong {
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.quote-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
}

/* Document Vault Visual Previews */
.vault-preview-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
}

.vault-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .vault-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.module-preview-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.module-preview-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-preview-header h4 {
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

.module-page-count {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}

.template-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.template-preview-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 1.5rem;
}

.template-title {
  color: #e2e8f0;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.template-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Floating AI Chatbot Widget Styles */
.ai-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: var(--font-body);
}

.chat-bubble-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-bubble-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.45);
}

.chat-icon {
  font-size: 1.65rem;
}

.chat-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0;
  animation: chat-ripple 2.5s infinite;
  pointer-events: none;
}

@keyframes chat-ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.chat-widget-container {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 380px;
  height: 520px;
  background: rgba(13, 26, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 119, 6, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: chat-fade-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

@keyframes chat-fade-in {
  0% { opacity: 0; transform: scale(0.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
  padding: 1.25rem;
  background: rgba(7, 15, 30, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.chat-header-info h4 {
  font-size: 0.925rem;
  color: var(--text-white);
  font-weight: 700;
  margin: 0;
  font-family: var(--font-header);
}

.chat-status {
  font-size: 0.68rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.chat-close-btn:hover {
  color: var(--danger);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.message {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.825rem;
  line-height: 1.5;
}

.message p {
  margin: 0;
}

.message-ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border-top-left-radius: 2px;
}

.message-user {
  align-self: flex-end;
  background: var(--accent-cyan);
  color: var(--bg-dark);
  font-weight: 500;
  border-top-right-radius: 2px;
}

.message-typing {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-style: italic;
  padding: 0.6rem 1rem;
}

/* Suggestion Chips block inside chatbot */
.chat-suggestions {
  padding: 0.5rem 1rem 0.85rem 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.suggestion-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  font-size: 0.725rem;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.suggestion-chip:hover {
  background: rgba(20, 184, 166, 0.06);
  border-color: rgba(20, 184, 166, 0.2);
  color: var(--accent-cyan);
}

.chat-input-area {
  padding: 1rem;
  background: rgba(7, 15, 30, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.chat-input-area input:focus {
  border-color: var(--accent-cyan);
}

.chat-send-btn {
  background: var(--accent-cyan);
  border: none;
  color: var(--bg-dark);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--accent-cyan-hover);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .chat-widget-container {
    width: calc(100vw - 2rem);
    height: 480px;
    right: 1rem;
    bottom: 5.5rem;
  }
  .ai-chat-widget {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Time & Cost Comparison Section */
.comparison-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
}

.comparison-table-wrapper {
  max-width: 960px;
  margin: 3rem auto 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(15, 28, 36, 0.9) 0%, rgba(9, 17, 22, 0.95) 100%);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.comparison-table-header {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.65fr;
  column-gap: 2.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 2rem;
}

.comp-col.col-header {
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comp-col.col-header.col-hard {
  color: var(--danger);
  opacity: 0.85;
}

.comp-col.col-header.col-fast {
  color: var(--accent-cyan);
  text-shadow: 0 0 8px rgba(20, 184, 166, 0.15);
}

.comp-col.col-header.col-saving {
  color: var(--accent-gold);
}

.comparison-table-body {
  display: flex;
  flex-direction: column;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.65fr;
  column-gap: 2.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 3px 0 0 var(--accent-cyan);
}

.comp-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: flex-start;
}

.comp-col.col-fast {
  background: rgba(20, 184, 166, 0.02);
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  border-left: 1px solid rgba(20, 184, 166, 0.08);
  border-right: 1px solid rgba(20, 184, 166, 0.08);
  border-radius: 8px;
}

.comp-col.col-task strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.comp-col.col-task span {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.comp-col.col-hard .cost-val {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 800;
  color: #f43f5e;
  letter-spacing: -0.01em;
}

.comp-col.col-hard .cost-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

.comp-col.col-fast .cost-val {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.15);
}

.comp-col.col-fast .cost-desc {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.comp-col.col-saving {
  align-items: flex-end;
  text-align: right;
}

.saving-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.05);
}

.comparison-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2rem;
}

.summary-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-box.diy-box {
  border-left: 4px solid var(--danger);
  background: rgba(244, 63, 94, 0.01);
  border-color: rgba(244, 63, 94, 0.12) rgba(244, 63, 94, 0.12) rgba(244, 63, 94, 0.12) var(--danger);
}

.summary-box.fast-box {
  border-left: 4px solid var(--accent-gold);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(217, 119, 6, 0.03) 100%);
  border-color: rgba(217, 119, 6, 0.25) rgba(217, 119, 6, 0.25) rgba(217, 119, 6, 0.25) var(--accent-gold);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.05);
}

.summary-box .box-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.summary-box .box-val {
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.summary-box.fast-box .box-val {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
}

.summary-box .box-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.summary-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #94a3b8;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Time Saved Badges inside Value Stack */
.time-saved-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .comparison-table-header {
    display: none;
  }
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .comp-col.col-fast {
    background: transparent;
    padding: 0;
    margin: 0;
    border-left: none;
    border-right: none;
  }
  .comp-col.col-saving {
    align-items: flex-start;
    text-align: left;
    margin-top: 0.5rem;
  }
  .comparison-summary {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
  }
  .summary-arrow {
    align-self: center;
    transform: rotate(90deg);
  }
}

