/* ==========================================================================
   OVERARC LANDING PAGE - STYLESHEET
   ========================================================================== */

/* 1. Imports & Variables */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bg-dark:        #0A0C0F;   /* primary background */
  --bg-card:        #111318;   /* card/section background */
  --bg-elevated:    #161B22;   /* elevated surfaces */
  --accent-orange:  #F05A28;   /* primary CTA, highlights */
  --accent-glow:    #FF7A45;   /* hover states, glows */
  --text-primary:   #F0F2F5;   /* headlines */
  --text-secondary: #8B95A1;   /* body, labels */
  --text-muted:     #4A5568;   /* fine print */
  --success-green:  #22C55E;   /* checkmarks, positive stats */
  --border:         #1E2530;   /* card borders */
  --border-glow:    rgba(240, 90, 40, 0.25);
  
  --font-display:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  
  --max-width:      1200px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
}

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

/* 3. Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange {
  color: var(--accent-orange) !important;
}

.bg-orange {
  background-color: var(--accent-orange) !important;
}

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

/* Layout Sections */
section {
  padding: 100px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-size: 1rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(240, 90, 40, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-glow);
  box-shadow: 0 6px 20px rgba(240, 90, 40, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: 6px;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(240, 90, 40, 0.3);
  box-shadow: 0 0 40px rgba(240, 90, 40, 0.04);
}

/* 4. Sticky Top Bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.topbar.scrolled {
  background-color: rgba(10, 12, 15, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

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

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Nav Menu styles */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* 5. Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240, 90, 40, 0.06) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-block;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(240, 90, 40, 0.1);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 2.5rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  color: var(--success-green);
  font-weight: bold;
}

/* Hero Live Visual (Mock Phone UI) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-card {
  width: 100%;
  max-width: 380px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(240, 90, 40, 0.05);
  transition: transform var(--transition);
}

.phone-card:hover {
  transform: translateY(-4px) rotateX(1deg);
}

.phone-header {
  background-color: var(--bg-elevated);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success-green);
}

.status-dot.pulse {
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.phone-body {
  padding: 24px;
}

.caller-info {
  text-align: center;
  margin-bottom: 24px;
}

.caller-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.caller-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.caller-query {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.action-bar {
  background-color: rgba(240, 90, 40, 0.05);
  border: 1px dashed rgba(240, 90, 40, 0.2);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent-orange);
}

/* Waveform Animation */
.waveform-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.wave-bar {
  width: 5px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 4px;
  transition: background-color 0.3s;
}

.wave-bar.animating {
  animation: pulse-wave 1.2s ease-in-out infinite alternate;
}

/* Offset animation delays for fluid wave motion */
.wave-bar:nth-child(1)  { animation-delay: 0.1s; }
.wave-bar:nth-child(2)  { animation-delay: 0.3s; }
.wave-bar:nth-child(3)  { animation-delay: 0.5s; }
.wave-bar:nth-child(4)  { animation-delay: 0.2s; }
.wave-bar:nth-child(5)  { animation-delay: 0.6s; }
.wave-bar:nth-child(6)  { animation-delay: 0.4s; }
.wave-bar:nth-child(7)  { animation-delay: 0.8s; }
.wave-bar:nth-child(8)  { animation-delay: 0.7s; }
.wave-bar:nth-child(9)  { animation-delay: 0.3s; }
.wave-bar:nth-child(10) { animation-delay: 0.5s; }
.wave-bar:nth-child(11) { animation-delay: 0.9s; }
.wave-bar:nth-child(12) { animation-delay: 0.2s; }
.wave-bar:nth-child(13) { animation-delay: 0.6s; }
.wave-bar:nth-child(14) { animation-delay: 0.4s; }
.wave-bar:nth-child(15) { animation-delay: 0.1s; }

@keyframes pulse-wave {
  0% { height: 8px; opacity: 0.5; }
  100% { height: 50px; opacity: 1; background-color: var(--accent-glow); }
}

.results-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.check-item.completed {
  color: var(--text-primary);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  background-color: transparent;
  transition: all 0.4s ease;
}

.check-item.completed .check-icon {
  background-color: var(--success-green);
  border-color: var(--success-green);
  color: #FFFFFF;
}

.check-value {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.check-item.completed .check-value {
  color: var(--accent-orange);
}

/* 6. Social Proof Bar */
.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(17, 19, 24, 0.3);
}

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

.stat-card {
  text-align: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color var(--transition);
}

.stat-card:hover {
  border-color: rgba(240, 90, 40, 0.2);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 7. The Pain Section */
.pain {
  background-color: rgba(10, 12, 15, 0.7);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 4rem;
}

.pain-card {
  display: flex;
  flex-direction: column;
}

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

.pain-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background-color: var(--bg-elevated);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pain-icon {
  font-size: 1.5rem;
}

.pain-desc {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pain-impact {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-orange);
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.pain-quote-container {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pain-quote {
  width: 100%;
  max-width: 680px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.7;
  border-left: 3px solid var(--accent-orange);
  padding-left: 24px;
  background-color: rgba(240, 90, 40, 0.02);
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 0 8px 8px 0;
}

/* 8. How It Works Section */
.how-it-works {
  background-color: var(--bg-dark);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

.step-card:hover {
  border-color: rgba(240, 90, 40, 0.2);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 4.5rem;
  font-weight: 500;
  color: rgba(30, 37, 48, 0.4);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 25px;
  user-select: none;
}

.step-title {
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 80%;
  position: relative;
  z-index: 2;
}

/* 9. Features Section */
.features {
  background-color: rgba(17, 19, 24, 0.2);
  border-top: 1px solid var(--border);
}

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(240, 90, 40, 0.05);
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(240, 90, 40, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(240, 90, 40, 0.15);
}

.feature-icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-orange);
  stroke-width: 2;
  fill: none;
}

.feature-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* 10. ROI Calculator Section */
.calculator-section {
  background-color: var(--bg-dark);
}

.calc-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.calc-value-display {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--accent-orange);
  font-weight: bold;
}

/* Sliders */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 0 10px rgba(240, 90, 40, 0.4);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background-color: var(--accent-glow);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  border: none;
  transition: transform 0.1s;
  box-shadow: 0 0 10px rgba(240, 90, 40, 0.4);
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  background-color: var(--accent-glow);
}

/* Select/Dropdown */
.select-wrapper {
  position: relative;
  width: 100%;
}

.calc-select {
  width: 100%;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  transition: border-color var(--transition);
}

.calc-select:focus {
  border-color: var(--accent-orange);
}

.select-wrapper::after {
  content: "↓";
  font-size: 0.8rem;
  color: var(--text-secondary);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Live Output Panel */
.calc-results {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.calc-res-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.calc-res-big {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.1;
}

.calc-divider {
  height: 1px;
  background-color: var(--border);
  margin: 10px 0 20px 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.calc-row-val {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.calc-row.highlight {
  color: var(--success-green);
}

.calc-row.highlight .calc-row-val {
  color: var(--success-green);
}

.calc-roi-wrapper {
  background-color: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 24px;
}

.calc-roi-text {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.calc-roi-val {
  font-family: var(--font-mono);
  font-weight: bold;
  color: var(--success-green);
  font-size: 1.1rem;
}

.calc-cta-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1.5;
  background-color: rgba(240, 90, 40, 0.03);
  border-left: 2px solid var(--accent-orange);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
}

/* 11. Demo Section */
.demo-section {
  background-color: rgba(17, 19, 24, 0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.demo-player {
  aspect-ratio: 16/9;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: border-color var(--transition);
}

.demo-player:hover {
  border-color: rgba(240, 90, 40, 0.3);
}

.play-button {
  width: 70px;
  height: 70px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(240, 90, 40, 0.4);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.demo-player:hover .play-button {
  transform: scale(1.1);
  background-color: var(--accent-glow);
  box-shadow: 0 0 30px rgba(240, 90, 40, 0.6);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #FFFFFF;
  margin-left: 6px;
}

.demo-player-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: center;
  max-width: 320px;
  line-height: 1.4;
}

.demo-details {
  display: flex;
  flex-direction: column;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.demo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.demo-arrow {
  color: var(--accent-orange);
  font-weight: bold;
}

.demo-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Modal for video click */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 12, 15, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.close-modal-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px;
}

.close-modal-btn:hover {
  color: var(--text-secondary);
}

/* 12. Pricing Section */
.pricing {
  background-color: var(--bg-dark);
}

/* Pricing Grid & Cards Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.25) !important;
  box-shadow: 0 15px 40px rgba(240, 90, 40, 0.03);
}

.featured-pricing-card {
  border: 2px solid var(--accent-orange) !important;
  box-shadow: 0 15px 40px rgba(240, 90, 40, 0.08);
  transform: scale(1.02);
}

.featured-pricing-card:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: var(--accent-glow) !important;
  box-shadow: 0 20px 45px rgba(240, 90, 40, 0.15);
}

@media (max-width: 1023px) {
  .featured-pricing-card {
    transform: none;
  }
  .featured-pricing-card:hover {
    transform: translateY(-4px);
  }
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(240, 90, 40, 0.1);
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid rgba(240, 90, 40, 0.2);
}

.scarcity-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.price-val {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.price-val-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-divider {
  height: 1px;
  background-color: var(--border);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.pricing-check {
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.guarantee-box {
  background-color: rgba(240, 90, 40, 0.04);
  border: 1px solid rgba(240, 90, 40, 0.15);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 30px;
}

.guarantee-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ROI Info Cards inside pricing */
.pricing-roi-card {
  background-color: rgba(240, 90, 40, 0.04);
  border: 1px solid rgba(240, 90, 40, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 15px 0 20px 0;
  text-align: center;
}

.pricing-roi-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.pricing-roi-desc {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.pricing-roi-desc strong {
  color: var(--accent-orange);
}

.pricing-roi-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pricing-roi-sub strong {
  color: var(--success-green);
}

.pricing-pitch {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}

.pricing-fineprint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.objection-killer {
  text-align: center;
  font-size: 1rem;
  color: var(--text-primary);
  margin-top: 3rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.pricing-footer {
  width: 100%;
  max-width: 680px;
  margin: 60px auto 0 auto;
  text-align: center;
}

/* 13. Contact & Booking Section */
.contact-section {
  background-color: rgba(17, 19, 24, 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-section h2 {
  margin-bottom: 0.5rem;
}

.contact-subtext {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

/* Form Styles */
.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--accent-orange);
}

/* Radio Group */
.radio-group-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-btn-label {
  flex: 1;
  min-width: 80px;
  position: relative;
  cursor: pointer;
  text-align: center;
}

.radio-btn-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom-box {
  display: block;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.radio-btn-label input:checked + .radio-custom-box {
  border-color: var(--accent-orange);
  background-color: rgba(240, 90, 40, 0.05);
  color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(240, 90, 40, 0.1);
}

.contact-form-wrapper .btn {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--success-green);
  color: var(--text-primary);
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color var(--transition);
}

.info-card:hover {
  border-color: rgba(240, 90, 40, 0.15);
}

.info-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-orange);
  transition: color var(--transition);
}

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

.info-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* SVG icons */
.info-icon-svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
}

.info-link .info-icon-svg {
  stroke: var(--accent-orange);
}

.info-link:hover .info-icon-svg {
  stroke: var(--accent-glow);
}

/* 14. Footer */
footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-top .logo-text {
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
}

.footer-divider {
  height: 1px;
  background-color: var(--border);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-link:hover {
  color: var(--text-secondary);
}

.copyright {
  font-size: 0.8rem;
}

/* 15. Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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


/* ==========================================================================
   16. MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */

/* Mobile & Tablet adjustments: from 640px */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calc-container {
    padding: 40px;
  }
  
  .contact-form-wrapper {
    padding: 40px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Desktop layout activate: from 1024px */
@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-container {
    flex-direction: row;
    gap: 24px;
  }
  
  .step-card {
    flex: 1;
    padding: 40px 30px;
  }
  
  /* Horizontal line connector for steps */
  .steps-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
    z-index: 0;
    pointer-events: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .calc-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    padding: 50px;
  }
  
  .demo-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
  }
  
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-top {
    max-width: 320px;
  }
}

/* Large desktop: from 1280px */
@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

/* Mobile responsive hamburger menu */
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px 40px 40px;
    gap: 24px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }

  /* Transform Hamburger to X when active */
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   17. LEGAL PAGES & TEXT LAYOUTS
   ========================================================================== */
.legal-section {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--bg-dark);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 24px;
}

@media (min-width: 640px) {
  .legal-content {
    padding: 60px 40px;
  }
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-align: left;
}

.legal-meta {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  text-align: left;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--text-primary);
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-content th, 
.legal-content td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

.legal-content th {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content td {
  color: var(--text-secondary);
}

/* Legal Accordion Layout */
.legal-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}

.legal-details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition);
}

.legal-details:hover {
  border-color: rgba(240, 90, 40, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.legal-details[open] {
  border-color: rgba(240, 90, 40, 0.4);
  box-shadow: 0 4px 20px rgba(240, 90, 40, 0.05);
}

.legal-summary-header {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  list-style: none; /* Hide default browser arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.legal-summary-header:hover {
  background-color: var(--bg-elevated);
}

.legal-summary-header::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}

.legal-summary-header::after {
  content: "＋";
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.legal-details[open] .legal-summary-header::after {
  content: "－";
  transform: rotate(90deg);
}

.legal-body {
  padding: 4px 24px 24px 24px;
  border-top: 1px solid var(--border);
  background-color: rgba(10, 12, 15, 0.4);
}

/* Orange Highlights / Key take-away box */
.summary-highlight {
  background-color: rgba(240, 90, 40, 0.03);
  border: 1px solid rgba(240, 90, 40, 0.15);
  border-left: 4px solid var(--accent-orange);
  border-radius: 4px 8px 8px 4px;
  padding: 18px 20px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-highlight-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-highlight-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.summary-highlight-text strong {
  color: var(--accent-orange);
}

/* ==========================================================================
   18. MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* Mobile Overrides (Max Width 639px) */
@media (max-width: 639px) {
  h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem) !important;
    line-height: 1.2 !important;
  }
  
  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Global Card & Padding Adjustments */
  .card, .pricing-card {
    padding: 1.5rem 1.25rem !important;
  }

  .calc-container {
    padding: 20px 16px !important;
    gap: 24px !important;
  }

  .calc-results {
    padding: 20px 16px !important;
  }

  .contact-form-wrapper {
    padding: 24px 16px !important;
  }

  .calc-res-big {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
  }

  .pricing-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .pricing-item {
    font-size: 0.9rem;
  }
  
  .price-val {
    font-size: clamp(1.8rem, 6vw, 2.3rem) !important;
  }
}

/* Very Small Mobile Viewports (Max Width 379px) */
@media (max-width: 379px) {
  .calc-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-bottom: 16px !important;
  }

  .calc-row-val {
    align-self: flex-end !important;
  }

  /* Phone simulation scale down */
  .phone-body {
    padding: 16px !important;
  }

  .check-item {
    font-size: 0.8rem !important;
    gap: 6px !important;
  }

  .check-value {
    font-size: 0.75rem !important;
  }

  .caller-name {
    font-size: 1.3rem !important;
  }
}

/* Button Reset for Demo Player */
button.demo-player {
  font-family: inherit;
  color: inherit;
  text-align: center;
  outline: none;
  font-size: 1rem;
}

/* Cookie Consent Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: rgba(17, 19, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  z-index: 9999;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(240, 90, 40, 0.03);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

@media (min-width: 640px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    width: calc(100% - 48px);
  }
}




