/* ============================================================
   ACCURACY QUOTING — DESIGN SYSTEM
   Modern dark SaaS theme with orange accent
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --orange: #f97316;
  --orange-hover: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --orange-border: rgba(249, 115, 22, 0.3);
  --orange-subtle: rgba(249, 115, 22, 0.08);

  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #151515;
  --bg-card: #1a1a1a;
  --bg-card-hover: #1f1f1f;
  --bg-input: #0f0f0f;
  --bg-nav: rgba(10, 10, 10, 0.8);
  --bg-nav-scrolled: rgba(10, 10, 10, 0.85);

  /* Text Colors */
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-body: #d4d4d4;
  --text-muted: #6a6a6a;
  --text-on-orange: #ffffff;

  /* Borders */
  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(249, 115, 22, 0.4);

  /* Ambient Glow */
  --glow-orange: rgba(249, 115, 22, 0.15);
  --glow-orange-strong: rgba(249, 115, 22, 0.3);
  --glow-white: rgba(255, 255, 255, 0.03);

  /* Typography — Inter only */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Display Sizes */
  --display-hero: clamp(2.25rem, 5.5vw, 4.5rem);
  --display-xl: clamp(2.25rem, 4vw, 3.5rem);
  --display-lg: clamp(1.875rem, 3.2vw, 2.75rem);
  --display-md: clamp(1.5rem, 2.5vw, 2rem);
  --display-sm: clamp(1.25rem, 2vw, 1.625rem);

  /* Text Sizes */
  --text-xl: 1.25rem;
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Letter Spacing */
  --tracking-tighter: -0.03em;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-widest: 0.06em;

  /* Spacing */
  --section-padding: clamp(4rem, 7vw, 6rem);
  --section-header-mb: 3.5rem;
  --container-max: 1280px;
  --container-padding: clamp(1rem, 3vw, 2.5rem);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-hero: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-orange: 0 0 20px rgba(249, 115, 22, 0.3);
  --shadow-glow-sm: 0 0 15px rgba(249, 115, 22, 0.15);
  --shadow-glow-lg: 0 0 40px rgba(249, 115, 22, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-default: 250ms ease;
  --transition-slow: 400ms ease;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--text-primary); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}


/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1440px; }


/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

.display-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--display-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--text-secondary);
  max-width: 650px;
  line-height: var(--leading-relaxed);
}

.section-header { margin-bottom: var(--section-header-mb); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ---------- Sections ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}
.section--dark { background: var(--bg-primary); }
.section--darker,
.section-alt { background: var(--bg-secondary); }
.section--darkest { background: var(--bg-tertiary); }


/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 1rem var(--container-padding);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-default),
    border-color var(--transition-default),
    backdrop-filter var(--transition-default),
    padding var(--transition-default);
}

.navbar.scrolled {
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-default);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
  transition: opacity var(--transition-default);
}
.nav-logo:hover { opacity: 0.85; color: var(--text-primary); }
.nav-logo .text-orange { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--orange);
  color: var(--text-on-orange) !important;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  background: var(--orange-hover);
  box-shadow: var(--shadow-glow-sm);
  color: var(--text-on-orange) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-default), opacity var(--transition-default);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
  border-radius: var(--radius-md);
  transition: all var(--transition-default);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  padding: 0.75rem 1.75rem;
  font-size: var(--text-base);
  background: var(--orange);
  color: var(--text-on-orange);
  border: none;
  box-shadow: var(--shadow-glow-sm);
}

.btn--primary:hover {
  background: var(--orange-hover);
  box-shadow: var(--shadow-orange);
  color: var(--text-on-orange);
  transform: translateY(-1px);
}

.btn--secondary {
  padding: 0.7rem 1.75rem;
  font-size: var(--text-base);
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

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

.btn--large {
  padding: 0.9rem 2.25rem;
  font-size: var(--text-lg);
}

.btn--small {
  padding: 0.45rem 1.1rem;
  font-size: var(--text-sm);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-default);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.06);
}

.card__icon,
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-subtle);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--orange);
}

.card__icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card p,
.card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ---------- Grid Layouts ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Bento Grid — asymmetric feature layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-grid > .card:nth-child(1),
.bento-grid > .card:nth-child(4) {
  grid-column: span 2;
}


/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(249, 115, 22, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

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

.hero-media {
  position: relative;
}

.hero-badge,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-secondary);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(249, 115, 22, 0); }
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-secondary);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--display-hero);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero h1 .text-orange { color: var(--orange); }

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 560px;
  line-height: 1.55;
}

.hero-cta-primary {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(232, 121, 36, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(232, 121, 36, 0.55);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-trust-icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero-visual { position: relative; }

.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid var(--border-default);
}

.hero-image-main img { width: 100%; height: auto; }


/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}


/* ---------- Before/After Comparison ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-default);
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.comparison-card--problem,
.comparison-problem { border-color: rgba(239, 68, 68, 0.2); }
.comparison-card--solution,
.comparison-solution { border-color: rgba(249, 115, 22, 0.15); }

.comparison-card--problem:hover,
.comparison-problem:hover { border-color: rgba(239, 68, 68, 0.35); }
.comparison-card--solution:hover,
.comparison-solution:hover { border-color: rgba(249, 115, 22, 0.3); }

.comparison-card img,
.comparison-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.comparison-card__content { padding: 1.5rem; }

.comparison-card .comparison-label,
.comparison-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin: 1rem 1.5rem 0.5rem;
}

.comparison-problem .comparison-label,
.comparison-card--problem .comparison-card__label { color: #ef4444; }
.comparison-solution .comparison-label,
.comparison-card--solution .comparison-card__label { color: var(--orange); }

.comparison-card h3,
.comparison-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin: 0 1.5rem 0.5rem;
}

.comparison-card p,
.comparison-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: 0 1.5rem 1.5rem;
}


/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}


/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step { text-align: center; position: relative; }

.process-step-number,
.process-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.process-step h3,
.process-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-step p,
.process-step-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 300px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: var(--border-default);
}


/* ---------- ROI Calculator ---------- */
/* ROI Calculator — two-panel layout */
.roi-calculator {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

/* --- Inputs panel --- */
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.roi-input-group label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
}

.roi-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.roi-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-default);
  outline: none;
  cursor: pointer;
}

.roi-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 12px rgba(232, 121, 36, 0.4);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.roi-slider-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 18px rgba(232, 121, 36, 0.6);
}

.roi-slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 12px rgba(232, 121, 36, 0.4);
  cursor: pointer;
}

.roi-slider-value {
  min-width: 56px;
  text-align: right;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  white-space: nowrap;
}

.roi-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* --- Results panel --- */
.roi-results {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Hero savings number */
.roi-hero-metric {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(0, 214, 143, 0.06);
  border: 1px solid rgba(0, 214, 143, 0.15);
  border-radius: var(--radius-lg);
}

.roi-hero-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.roi-hero-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #00D68F;
  line-height: 1;
  text-shadow: 0 0 40px rgba(0, 214, 143, 0.25);
}

.roi-hero-sub {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 0.6rem;
}

/* Comparison bars */
.roi-comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roi-bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.roi-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.roi-bar-amount {
  font-weight: var(--weight-bold);
}

.roi-cost-color { color: #F87171; }
.roi-save-color { color: #00D68F; }

.roi-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  overflow: hidden;
}

.roi-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.6s ease-out;
  min-width: 4px;
}

.roi-bar-fill--current {
  background: linear-gradient(90deg, #F87171, #EF4444);
}

.roi-bar-fill--new {
  background: linear-gradient(90deg, #00D68F, #10B981);
}

/* Supporting metric cards */
.roi-metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.roi-metric-card {
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
}

.roi-metric-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: 1.2;
}

.roi-metric-card-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Bottom area: equivalence + CTA */
.roi-bottom {
  text-align: center;
  padding-top: 0.5rem;
}

.roi-equivalence {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.roi-cta {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(232, 121, 36, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.roi-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 121, 36, 0.5);
}

.roi-cta-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.5rem;
}


/* ---------- Pricing Preview (Homepage) ---------- */
.pricing-preview {
  text-align: center;
}

.pricing-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-preview-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-preview-price {
  font-family: var(--font-display);
  font-size: var(--display-sm);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pricing-preview-price span {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
}

.pricing-preview-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-preview-card--featured {
  border-color: var(--orange);
  background: rgba(232, 121, 36, 0.05);
}

.pricing-note {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-default);
}

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

.pricing-card--featured {
  border-color: rgba(249, 115, 22, 0.2);
  position: relative;
}

.pricing-card--featured:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.08);
}

.pricing-card--featured::before {
  content: 'Starts Here';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--text-on-orange);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-addons-header {
  text-align: center;
  margin: 3rem 0 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid--addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--display-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-primary);
  line-height: var(--leading-none);
  margin-bottom: 0.25rem;
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: var(--leading-relaxed);
}

.pricing-card__features { text-align: left; margin-bottom: 2rem; }

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 0.4rem 0;
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-default); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-default);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ---------- Feature Row (alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-row__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-row__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

.feature-row__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-row__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.feature-row__list li svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.feature-row__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-card);
}

.feature-row__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Check list (used on features page) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Screenshot placeholder */
.screenshot-placeholder {
  width: 100%;
  min-height: 280px;
  background: var(--bg-card);
  border: 1px dashed var(--border-default);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- Founder Section ---------- */
/* Founder section with background image */
.founder-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 1;
}

.founder-section .container {
  position: relative;
  z-index: 2;
}

.founder-content {
  max-width: 680px;
}

.founder-media {
  display: flex;
  align-items: center;
}

.founder-quote {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.5rem;
  font-style: italic;
  border: none;
  padding: 0;
}

.founder-quote p {
  margin-bottom: 1rem;
}

.founder-quote footer {
  font-style: normal;
}

.founder-quote footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

.founder-quote footer span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.founder-image {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  opacity: 0.9;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

.founder-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-content h2,
.cta-section .section-title { color: var(--text-primary); }

.cta-content p,
.cta-section .section-subtitle {
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}


/* ---------- Hero Screenshot ---------- */
.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-default);
}


/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  padding: 4rem 0 2rem;
}

.footer-grid,
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4,
.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-nav a {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-default);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--text-primary); }


/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-orange { color: var(--orange) !important; }
.text-primary { color: var(--text-primary) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Glass utility — frosted glass panel */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}

/* Glow orb — ambient background effect */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
  background: var(--orange);
  z-index: 0;
}

.glow-orb--lg {
  width: 500px;
  height: 500px;
  filter: blur(120px);
  opacity: 0.25;
}

.glow-orb--sm {
  width: 200px;
  height: 200px;
  filter: blur(60px);
  opacity: 0.35;
}

.glow-orb--muted {
  opacity: 0.12;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--accent {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem var(--container-padding);
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-default);
}

.mobile-cta .btn { width: 100%; }


/* ---------- Landing Page Hero with BG Image ---------- */
.hero--bg,
.landing-page-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--bg::after,
.landing-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.25) 20%, transparent 40%, transparent 55%, #0a0a0a 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

.hero--bg .hero-content,
.landing-page-hero .hero-content,
.landing-page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: left;
}

/* Landing/content heroes don't use .hero-grid, so apply the same
   top padding that .hero-grid provides on the homepage to keep the
   content clear of the fixed navbar. */
.hero.hero--bg > .container,
.landing-page-hero > .container {
  padding-top: 7rem;
  padding-bottom: 4rem;
}


/* ---------- Content Page Styles ---------- */
.content-body {
  max-width: 800px;
  margin: 0 auto;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: var(--display-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-body h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-body p {
  margin-bottom: 1rem;
  line-height: var(--leading-relaxed);
}

.content-body ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.content-body ul li {
  margin-bottom: 0.5rem;
  line-height: var(--leading-relaxed);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { text-align: center; }
  .hero-media { width: 100%; max-width: 550px; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 550px; margin: 0 auto; }
  .hero--bg .hero-content,
  .landing-page-hero .hero-content,
  .landing-page-hero .container { text-align: center; margin: 0 auto; }

  .features-grid,
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid > .card:nth-child(1),
  .bento-grid > .card:nth-child(4) { grid-column: span 1; }

  .process-steps::before { display: none; }

  .comparison-grid { grid-template-columns: 1fr; max-width: 450px; }

  .footer-grid,
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse { direction: ltr; }

  .roi-calculator { grid-template-columns: 1fr; }
  .roi-hero-value { font-size: 2.5rem; }

  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-image { margin: 0 auto; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 5rem 2rem 2rem;
    gap: 0;
    margin: 0;
    transition: right var(--transition-default);
    border-left: 1px solid var(--border-default);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--border-default);
  }

  .nav-cta { display: none; }
}

@media (max-width: 576px) {
  .features-grid,
  .pricing-grid,
  .pricing-grid--addons,
  .pricing-preview-cards { grid-template-columns: 1fr; }

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

  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero-trust { flex-direction: column; gap: 0.5rem; }

  .roi-metric-cards { grid-template-columns: 1fr; }

  .footer-grid,
    .footer-content { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}


/* ============================================================
   HERO ANIMATED MOCKUP
   Simulated quote-builder UI for the homepage hero
   ============================================================ */

.hero-mockup {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  perspective: 1200px;
}

.mockup-window {
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s ease;
  aspect-ratio: 1 / 1.18;
}

.mockup-window:hover {
  transform: rotateY(0) rotateX(0);
}

/* Title bar */
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #495057;
  font-family: var(--font-body);
}

/* Body */
.mockup-body {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  color: #212529;
  position: relative;
  overflow: visible;
}

/* Customer row */
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0;
}

.mockup-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mockup-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mockup-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: #212529;
  padding: 0.3rem 0.5rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  min-height: 1.6rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Typing cursor */
.mockup-type::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 0.85em;
  background: #339af0;
  margin-left: 1px;
  animation: blink-cursor 0.6s step-end infinite;
  vertical-align: text-bottom;
}

.mockup-type.done::after {
  display: none;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Drag cursor animation */
.mockup-drag-cursor {
  position: absolute;
  top: -20px;
  right: -10px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: none;
}

.mockup-drag-file-icon {
  width: 32px;
  height: 32px;
}

.mockup-cursor-icon {
  width: 20px;
  height: 20px;
  margin-left: -6px;
  margin-top: 14px;
}

/* Edit cursor (reuses drag cursor element for click animations) */
.mockup-drag-cursor.editing {
  flex-direction: row-reverse;
}

.mockup-drag-cursor.editing .mockup-drag-file-icon {
  display: none;
}

.mockup-drag-cursor.editing .mockup-cursor-icon {
  margin: 0;
  width: 18px;
  height: 18px;
}

/* Highlight effect on field being edited */
.mockup-metric-value.editing {
  background: rgba(51, 154, 240, 0.08);
  outline: 1.5px solid #339af0;
  border-radius: 2px;
  transition: outline 0.2s, background 0.2s;
}

/* DXF drop zone */
.mockup-dropzone {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.mockup-dropzone.active {
  border-color: #339af0;
  background: rgba(51, 154, 240, 0.04);
}

.mockup-dropzone-idle,
.mockup-dropzone-file {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #868e96;
  transition: opacity 0.3s;
}

.mockup-upload-icon {
  width: 18px;
  height: 18px;
  color: #adb5bd;
}

.mockup-dropzone-file {
  opacity: 0;
  position: absolute;
  inset: 0;
  padding: 0.75rem;
  color: #212529;
  font-weight: 500;
}

.mockup-dropzone-file .mockup-file-icon {
  width: 16px;
  height: 16px;
  color: #339af0;
}

.mockup-dropzone-file .mockup-file-check {
  color: #28c840;
  font-weight: 700;
  font-size: 0.85rem;
}

.mockup-dropzone.uploaded .mockup-dropzone-idle {
  opacity: 0;
}

.mockup-dropzone.uploaded .mockup-dropzone-file {
  opacity: 1;
}

/* Part data */
.mockup-part-data {
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mockup-part-data.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Part title bar — mimics the app's blue-left-border row */
.mockup-part-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-left: 3px solid #339af0;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #212529;
}

.mockup-dxf-icon {
  width: 14px;
  height: 14px;
  color: #339af0;
  flex-shrink: 0;
}

.mockup-part-filename {
  flex: 1;
}

.mockup-part-qty-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: #495057;
}

.mockup-qty-label {
  color: #868e96;
}

.mockup-line-total {
  font-weight: 700;
  color: #212529;
}

/* Part detail: thumbnail + field grid side by side */
.mockup-part-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.mockup-part-thumb {
  width: 130px;
  height: 130px;
  border-radius: 6px;
  background: #f1f3f5;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-part-svg {
  width: 96px;
  height: 96px;
}

/* Two-column label/value grid — matches the app */
.mockup-fields-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.75rem;
}

.mockup-field-pair {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid #f1f3f5;
}

.mockup-field-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #868e96;
  white-space: nowrap;
}

.mockup-metric-value {
  font-size: 0.65rem;
  font-weight: 600;
  color: #212529;
  transition: color 0.3s;
  text-align: right;
}

.mockup-metric-value.pop {
  color: #339af0;
}

/* Operations — table layout like the app */
.mockup-operations {
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mockup-operations.visible {
  opacity: 1;
  transform: translateY(0);
}

.mockup-ops-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.mockup-ops-table {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.6rem;
}

.mockup-ops-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 0.25rem;
  padding: 0.3rem 0.5rem;
  align-items: center;
}

.mockup-ops-header-row {
  background: #f8f9fa;
  font-weight: 600;
  color: #868e96;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e9ecef;
}

.mockup-tag {
  color: #495057;
  border-bottom: 1px solid #f1f3f5;
  opacity: 0;
  transition: opacity 0.3s;
}

.mockup-tag:last-child {
  border-bottom: none;
}

.mockup-tag.visible {
  opacity: 1;
}

/* Footer / Price Breakdown */
.mockup-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mockup-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.mockup-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 180px;
}

.mockup-price-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.2rem;
}

.mockup-total-line {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.6rem;
  color: #868e96;
}

.mockup-total-value {
  font-weight: 600;
  color: #212529;
  text-align: right;
}

.mockup-grand-total {
  font-size: 0.75rem;
  font-weight: 700;
  color: #212529;
  border-top: 2px solid #e9ecef;
  padding-top: 0.2rem;
  margin-top: 0.15rem;
}

.mockup-grand-total .mockup-total-value {
  color: #2b8a3e;
  font-size: 0.75rem;
}

.mockup-send-btn {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: #339af0;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  cursor: default;
  white-space: nowrap;
  opacity: 0.5;
  transform: scale(0.95);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.4s;
  align-self: flex-end;
}

.mockup-send-btn.ready {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 2px 12px rgba(51, 154, 240, 0.4);
}

.mockup-send-btn.pulse {
  animation: btn-pulse 1.5s ease-in-out 2;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(51, 154, 240, 0.4); }
  50% { box-shadow: 0 2px 24px rgba(51, 154, 240, 0.7); }
}

/* Responsive: adjust mockup aspect ratio for stacked layouts */
@media (max-width: 1024px) {
  .mockup-window {
    aspect-ratio: 1 / 1.38;
  }
}

@media (max-width: 480px) {
  .mockup-window {
    aspect-ratio: 1 / 1.71;
  }
}

/* Responsive: scale mockup on tablets */
@media (max-width: 768px) {
  .hero-mockup {
    max-width: 480px;
  }
  .mockup-part-thumb {
    width: 100px;
    height: 100px;
  }
  .mockup-part-svg {
    width: 72px;
    height: 72px;
  }
}

/* Responsive: tighten mockup on mobile phones */
@media (max-width: 480px) {
  .hero-media {
    max-width: 100%;
  }
  .hero-mockup {
    max-width: 100%;
  }
  .mockup-body {
    padding: 0.75rem 0.75rem;
  }
  .mockup-row {
    gap: 0.4rem;
  }
  .mockup-label {
    font-size: 0.5rem;
  }
  .mockup-value {
    font-size: 0.7rem;
    padding: 0.2rem 0.35rem;
  }
  .mockup-part-detail {
    gap: 0.5rem;
  }
  .mockup-part-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .mockup-part-svg {
    width: 42px;
    height: 42px;
  }
  .mockup-fields-grid {
    gap: 0.15rem 0.4rem;
  }
  .mockup-field-label {
    font-size: 0.5rem;
  }
  .mockup-metric-value {
    font-size: 0.55rem;
  }
  .mockup-part-titlebar {
    font-size: 0.6rem;
    padding: 0.3rem 0.4rem;
    flex-wrap: wrap;
  }
  .mockup-part-qty-price {
    font-size: 0.55rem;
  }
  .mockup-ops-table {
    font-size: 0.5rem;
  }
  .mockup-ops-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0.15rem;
    padding: 0.25rem 0.35rem;
  }
  .mockup-ops-row span:last-child {
    display: none;
  }
  .mockup-ops-header-row {
    font-size: 0.45rem;
  }
  .mockup-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mockup-send-btn {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
    align-self: flex-start;
  }
  .mockup-price-breakdown {
    min-width: unset;
  }
  .mockup-total-line {
    font-size: 0.5rem;
  }
  .mockup-grand-total {
    font-size: 0.65rem;
  }
  .mockup-grand-total .mockup-total-value {
    font-size: 0.65rem;
  }
}

/* ============================================
   ANNOUNCEMENT BANNER (promo)
   ============================================ */
:root {
  --announcement-h: 44px;
}

.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announcement-h);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #b24310 0%,
      #f97316 25%,
      #fbbf24 50%,
      #f97316 75%,
      #b24310 100%
    );
  background-size: 200% 100%;
  animation: announcement-flow 6s linear infinite;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.35);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 600;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.announcement-banner--hiding {
  transform: translateY(-100%);
}

@keyframes announcement-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.announcement-banner__shine {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: announcement-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes announcement-shine {
  0%   { left: -30%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.announcement-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 3rem 0 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.announcement-banner__spark {
  color: #0a0a0a;
  font-size: 1.05rem;
  animation: announcement-pulse 1.2s ease-in-out infinite;
}

@keyframes announcement-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.75; }
}

.announcement-banner__text strong {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.announcement-banner__code {
  display: inline-block;
  margin: 0 0.15rem;
  padding: 0.05rem 0.3rem;
  background: rgba(10, 10, 10, 0.12);
  color: #0a0a0a;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 900;
  font-size: 1em;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.announcement-banner__code:hover {
  background: rgba(10, 10, 10, 0.25);
}

.announcement-banner__code.is-copied {
  background: #16a34a;
  color: #fff;
}

.announcement-banner__expires {
  margin-left: 0.6rem;
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
}

.announcement-banner__cta {
  color: #0a0a0a;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.announcement-banner__cta:hover {
  color: #1a1a1a;
}

.announcement-banner__close {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #0a0a0a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.announcement-banner__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.15);
}

/* Push the fixed navbar and page content down when the banner is visible */
body.has-announcement-banner .navbar {
  top: var(--announcement-h);
}

body.has-announcement-banner {
  padding-top: var(--announcement-h);
}

@media (max-width: 640px) {
  :root { --announcement-h: 72px; }
  .announcement-banner__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.6rem;
    padding: 0.4rem 2.5rem;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
  }
  .announcement-banner__expires {
    width: 100%;
    margin-left: 0;
    font-size: 0.7rem;
  }
}
