/* ==========================================================================
   Vorde Studio — High-Converting Clean White Design System
   Aesthetic: Ultra-Clean, High-Trust Direct Response (Light / White Luxe)
   ========================================================================== */

:root {
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #ffffff;
  
  --primary: #059669;
  --primary-hover: #047857;
  --primary-light: #ecfdf5;
  --primary-border: #a7f3d0;
  
  --accent-dark: #0f172a;
  --accent-navy: #1e293b;
  --accent-amber: #d97706;
  --accent-amber-light: #fffbeb;
  --accent-amber-border: #fde68a;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;

  --border-light: #e2e8f0;
  --border-card: #e2e8f0;
  --border-focus: #059669;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 2px 4px rgba(5, 150, 105, 0.2);

  --max-w: 1180px;
  --max-w-narrow: 800px;
  --header-h: 88px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--max-w-narrow);
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
}

p {
  color: var(--text-body);
}

/* Stabilized Hero Heading & Typing Container (Zero Layout Shift - Horizontally & Vertically) */
.hero-heading {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0;
}

.hero-static-title {
  display: block;
  width: 100%;
  margin-bottom: 2px;
}

.hero-dynamic-line {
  display: block;
  width: 100%;
  min-height: 1.25em; /* Constant height */
  line-height: 1.2;
  text-align: left;
}

.highlight-green {
  color: var(--primary);
  display: inline;
}

.typing-cursor {
  display: inline;
  color: var(--primary);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.8s infinite;
  line-height: 1;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Subtle Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Gentle Button Shimmer (draws eye without being obnoxious) */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  animation: btnShimmer 5s infinite;
}

@keyframes btnShimmer {
  0%, 75% { left: -120%; }
  100% { left: 180%; }
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-hover);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

/* Announcement Top Bar (High-Converting & Engaging) */
.announcement-bar {
  background: linear-gradient(90deg, #090e17 0%, #152238 50%, #090e17 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.25);
  color: #f1f5f9;
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 100;
  text-decoration: none;
  transition: background 0.2s ease;
}

.announcement-bar .badge-live {
  background: #ef4444;
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
}

.announcement-bar .badge-pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1.4s infinite;
}

.announcement-text {
  color: #e2e8f0;
}

.announcement-text strong {
  color: #fff;
}

.announcement-text .highlight-price {
  color: #34d399;
  font-weight: 700;
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.announcement-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.announcement-cta .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.announcement-bar:hover .announcement-cta .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
  }

  .announcement-bar {
    padding: 7px 10px;
    font-size: 0.78rem;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
    line-height: 1.25;
  }

  .announcement-bar .badge-live {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .announcement-cta {
    display: none; /* Hide redundant extra button on mobile so header is compact */
  }
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 90;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
}

/* 2 Navbar Navigation Buttons */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-btn {
  color: var(--text-body);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
  border-color: var(--primary-border);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent-navy);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.08rem;
}

.btn-block {
  width: 100%;
}

.reassurance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* Section Containers */
section {
  padding: 84px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px auto;
}

.section-header .highlight-chip {
  margin-bottom: 14px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 1: HERO & ABOVE THE FOLD
   ========================================================================== */
.hero-section {
  padding: 48px 0 76px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.location-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-body);
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.trust-bullet-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.trust-bullet-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-offer-box {
  background: var(--accent-amber-light);
  border: 1px solid var(--accent-amber-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-offer-box .offer-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #92400e;
}

.hero-offer-box .offer-desc {
  font-size: 0.82rem;
  color: #78350f;
  margin-top: 2px;
}

.offer-tag {
  background: #f59e0b;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Hero Estimate Form Card (Crisp White Card with Slate Border) */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.form-header h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.form-header p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Multi-Step Form */
.form-step {
  display: none;
  animation: fadeIn 0.25s ease;
}

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

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

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-progress-bar {
  flex-grow: 1;
  height: 4px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 0 12px;
}

.step-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.step-counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.15s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

/* Radio Cards in Form */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.option-card {
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 12px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-body);
}

.option-card label:hover {
  background: var(--bg-surface);
  border-color: #cbd5e1;
}

.option-card input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-hover);
  box-shadow: 0 0 0 1px var(--primary);
}

.form-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

/* ==========================================================================
   SECTION 2: VISUAL PROOF & COMPARISON (HORMOZI VALUE)
   ========================================================================== */
.proof-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.comparison-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-col {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.comparison-col.bad {
  background: #fff5f5;
  border: 1px solid #fed7d7;
}

.comparison-col.good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  position: relative;
}

.comparison-col.good::after {
  content: 'VORDE 24/7 SYSTEM';
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.comparison-col h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-col.bad h4 { color: #c53030; }
.comparison-col.good h4 { color: #166534; }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.comparison-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Metric / Proof Counter Cards */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

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

/* ==========================================================================
   SECTION 3: PROBLEM & DREAM OUTCOME
   ========================================================================== */
.value-equation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.equation-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.equation-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.equation-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equation-card.pain .equation-icon-wrapper {
  background: #fee2e2;
  color: #dc2626;
}

.equation-card.dream .equation-icon-wrapper {
  background: var(--primary-light);
  color: var(--primary);
}

.equation-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.equation-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.equation-point-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.equation-point-item h5 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.equation-point-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4: CORE SERVICES & SYSTEMS GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-subtle);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-card);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.service-deliverables li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-body);
}

.service-deliverables li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 5: WHY CHOOSE VORDE STUDIO
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.15s ease;
}

.why-card:hover {
  border-color: #cbd5e1;
}

.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.why-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 6: 3-STEP SIMPLE PROCESS
   ========================================================================== */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 44px 0;
}

.step-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
}

.step-num-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: var(--accent-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}

.step-timeline-pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  margin-top: 6px;
}

.step-box h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 7 & 8: VALUE STACK & FOUNDING OFFER (HORMOZI)
   ========================================================================== */
.offer-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.offer-card {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.offer-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-amber);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 24px;
  gap: 20px;
}

.offer-headline-group h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.offer-price-box {
  text-align: right;
  flex-shrink: 0;
}

.offer-price-tag {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
  transition: transform 0.3s ease;
}

.offer-price-tag.pop-in {
  animation: pricePulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pricePulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(5, 150, 105, 0));
  }
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(5, 150, 105, 0.3));
  }
}

.offer-price-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.value-stack-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.value-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.value-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.offer-urgency-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.offer-urgency-banner .text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   SECTION 9 & 10: INDUSTRIES & SERVICE COVERAGE
   ========================================================================== */
.industries-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.industry-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.15s ease;
}

.industry-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.coverage-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 36px;
  text-align: center;
}

.flags-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ==========================================================================
   SECTION 11: CONVERSION FAQ
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: border-color 0.15s ease;
}

.faq-item.active {
  border-color: #cbd5e1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==========================================================================
   SECTION 12 & 13: FINAL CTA & FOOTER
   ========================================================================== */
.final-cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  text-align: center;
  padding: 84px 0 64px 0;
}

.final-cta-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 44px 0 90px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand p {
  margin-top: 10px;
  max-width: 360px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-nav-col h5 {
  color: var(--text-main);
  font-size: 0.9rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.sticky-mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-mobile-inner .btn {
  padding: 11px 12px;
  font-size: 0.86rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-surface);
}

.thank-you-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  max-width: 720px;
  margin: 44px auto;
  box-shadow: var(--shadow-card);
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.next-steps-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 26px 0;
  text-align: left;
}

.next-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.step-badge-circle {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile-First Optimization)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .services-grid,
  .why-grid,
  .steps-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 74px;
  }

  section {
    padding: 52px 0;
  }

  .hero-section {
    padding: 32px 0 60px 0;
  }

  /* Header & Navbar Mobile Optimization */
  .header {
    height: var(--header-h);
  }

  .logo-img {
    height: 48px;
  }

  .logo-text {
    font-size: 1.12rem;
  }

  .logo-sub {
    font-size: 0.62rem;
  }

  .header-actions .highlight-chip {
    display: none; /* Hide response chip in navbar on mobile to avoid crowding */
  }

  .header-actions .btn {
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  /* Sticky Mobile Bar */
  .sticky-mobile-bar {
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) 14px;
  }

  .hero-trust-bullets {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .value-equation-grid,
  .services-grid,
  .why-grid,
  .steps-wrapper,
  .value-stack-list {
    grid-template-columns: 1fr;
  }

  .comparison-wrapper {
    padding: 22px 18px;
  }

  .comparison-col {
    padding: 18px 16px;
  }

  .metrics-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric-card {
    padding: 14px 10px;
  }

  .metric-number {
    font-size: 1.65rem;
  }

  .metric-label {
    font-size: 0.76rem;
  }

  .offer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .offer-price-box {
    text-align: left;
  }

  .offer-card {
    padding: 32px 18px 24px 18px;
  }

  .offer-headline-group h3 {
    font-size: 1.45rem;
  }

  .offer-price-tag {
    font-size: 1.9rem;
  }

  .form-card {
    padding: 22px 16px;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    padding: 11px 13px;
  }

  /* Footer Mobile Optimization (2-Column Navigation Grid) */
  .footer {
    padding: 44px 0 115px 0; /* Clear bottom space for sticky mobile CTA bar */
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-bottom: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1; /* Spans full width on top row */
  }

  .footer-nav-col {
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 42px;
  }

  .logo-wrapper {
    gap: 10px;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .hero-section h1 {
    font-size: 1.85rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .option-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .option-card label {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
}
