/* OptiTourPlan — Public Landing Page */

:root {
  --lp-orange: #F97316;
  --lp-orange-hover: #EA580C;
  --lp-orange-light: #FFF7ED;
  --lp-navy: #0F172A;
  --lp-navy-soft: #1E293B;
  --lp-bg: #F8FAFC;
  --lp-white: #FFFFFF;
  --lp-text: #0F172A;
  --lp-text-muted: #64748B;
  --lp-text-subtle: #94A3B8;
  --lp-border: #E2E8F0;
  --lp-green: #059669;
  --lp-green-light: #ECFDF5;
  --lp-blue: #2563EB;
  --lp-blue-light: #EFF6FF;
  --lp-radius: 12px;
  --lp-radius-lg: 16px;
  --lp-radius-xl: 24px;
  --lp-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --lp-shadow-lg: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 48px rgba(15, 23, 42, 0.1);
  --lp-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --lp-max: 1200px;
  --lp-header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ── Header ── */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--lp-header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
  transition: box-shadow 0.2s ease;
}

.lp-header.is-scrolled {
  box-shadow: var(--lp-shadow);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lp-header-h);
  gap: 24px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-brand__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.lp-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  transition: color 0.15s ease;
}

.lp-nav__link:hover { color: var(--lp-orange); }

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lp-btn:hover { transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text);
  border-color: var(--lp-border);
}

.lp-btn--ghost:hover {
  background: var(--lp-bg);
  border-color: var(--lp-text-subtle);
}

.lp-btn--primary {
  background: var(--lp-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}

.lp-btn--primary:hover {
  background: var(--lp-orange-hover);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.lp-btn--demo {
  background: var(--lp-blue);
  color: #fff;
  border-color: var(--lp-blue);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.lp-btn--demo:hover {
  background: #1D4ED8;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.lp-btn.is-loading {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
}

.lp-btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

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

.lp-btn--white {
  background: #fff;
  color: var(--lp-navy);
  border-color: var(--lp-border);
}

.lp-btn--white:hover {
  background: var(--lp-bg);
}

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--lp-navy);
  font-size: 1.25rem;
}

/* ── Hero ── */
.lp-hero {
  padding: calc(var(--lp-header-h) + 64px) 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
  overflow: hidden;
}

.lp-hero .lp-container {
  max-width: 1320px;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
}

.lp-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--lp-navy);
}

.lp-hero__title em {
  font-style: normal;
  color: var(--lp-orange);
}

.lp-hero__subtitle {
  font-size: 1.125rem;
  color: var(--lp-text-muted);
  margin: 0 0 32px;
  max-width: 520px;
  line-height: 1.7;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--lp-text-muted);
}

.lp-trust__item i {
  color: var(--lp-green);
  font-size: 0.875rem;
}

/* Hero visual */
.lp-hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.lp-hero-screenshot {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
}

.lp-mockup-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.lp-mockup-card__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.lp-mockup-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-border);
}

.lp-mockup-card__dot:nth-child(1) { background: #FCA5A5; }
.lp-mockup-card__dot:nth-child(2) { background: #FDE68A; }
.lp-mockup-card__dot:nth-child(3) { background: #86EFAC; }

.lp-mockup-card__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  min-height: 320px;
}

.lp-mockup-card__body--screenshot {
  display: block;
  min-height: auto;
  line-height: 0;
}

.lp-mockup-map {
  position: relative;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0FDF4 50%, #FEF3C7 100%);
  padding: 20px;
  overflow: hidden;
}

.lp-mockup-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.lp-mockup-route {
  position: absolute;
  stroke-linecap: round;
  fill: none;
  opacity: 0.85;
}

.lp-mockup-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lp-mockup-pin span { transform: rotate(45deg); }
.lp-mockup-pin--1 { background: var(--lp-blue); top: 18%; left: 22%; }
.lp-mockup-pin--2 { background: var(--lp-orange); top: 42%; left: 55%; }
.lp-mockup-pin--3 { background: var(--lp-green); top: 68%; left: 35%; }
.lp-mockup-pin--4 { background: #8B5CF6; top: 30%; left: 78%; }

.lp-mockup-stats {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--lp-white);
  border-left: 1px solid var(--lp-border);
}

.lp-stat-card {
  padding: 14px 16px;
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  transition: border-color 0.15s ease;
}

.lp-stat-card:hover { border-color: var(--lp-orange); }

.lp-stat-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-text-subtle);
  margin-bottom: 4px;
}

.lp-stat-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.lp-stat-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-stat-card__delta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-green);
  background: var(--lp-green-light);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ── Sections common ── */
.lp-section {
  padding: 80px 0;
}

.lp-section--white { background: var(--lp-white); }
.lp-section--gray { background: var(--lp-bg); }

.lp-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lp-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--lp-navy);
}

.lp-section__title em {
  font-style: normal;
  color: var(--lp-orange);
}

.lp-section__lead {
  font-size: 1.0625rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.7;
}

.lp-section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-orange);
  margin: 0 0 12px;
}

/* ── Trust bar (secteurs) ── */
.lp-trust-bar {
  padding: 28px 0;
  background: var(--lp-white);
  border-bottom: 1px solid var(--lp-border);
}

.lp-trust-bar__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-text-subtle);
  margin: 0 0 16px;
}

.lp-trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.lp-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-trust-bar__item i {
  color: var(--lp-orange);
  font-size: 0.875rem;
}

.lp-trust-bar__item:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--lp-shadow);
}

/* ── Product showcase ── */
/* Product screenshot */
.lp-product-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-product-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
}

.lp-product-frame {
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  background: var(--lp-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-product-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.lp-product-frame__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--lp-navy);
}

.lp-product-frame__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.lp-product-frame__chrome span:nth-child(1) { background: #FCA5A5; }
.lp-product-frame__chrome span:nth-child(2) { background: #FDE68A; }
.lp-product-frame__chrome span:nth-child(3) { background: #86EFAC; }

.lp-product-frame__url {
  flex: 1;
  margin-left: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.lp-product-ui__topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: var(--lp-white);
  border-bottom: 1px solid var(--lp-border);
}

.lp-product-ui__logo {
  height: 24px;
  width: auto;
}

.lp-product-ui__nav-item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  padding: 6px 0;
}

.lp-product-ui__nav-item--active {
  color: var(--lp-orange);
  border-bottom: 2px solid var(--lp-orange);
}

.lp-product-ui__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 20px;
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.lp-product-ui__kpi {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 12px 14px;
}

.lp-product-ui__kpi span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-text-subtle);
  margin-bottom: 4px;
}

.lp-product-ui__kpi strong {
  font-size: 1.125rem;
  color: var(--lp-navy);
}

.lp-product-ui__kpi--green strong {
  color: var(--lp-green);
}

.lp-product-ui__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 280px;
}

.lp-product-ui__map {
  position: relative;
  background: linear-gradient(135deg, #E0F2FE, #F0FDF4);
  overflow: hidden;
}

.lp-product-ui__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.lp-product-ui__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lp-product-ui__sidebar {
  padding: 16px;
  background: var(--lp-white);
  border-left: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-product-ui__route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--lp-radius);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  background: var(--lp-bg);
  border: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.lp-product-ui__route--active {
  background: var(--lp-orange-light);
  border-color: rgba(249, 115, 22, 0.25);
  color: var(--lp-navy);
  font-weight: 600;
}

.lp-product-ui__route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── How it works ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-orange), var(--lp-blue));
  opacity: 0.2;
  z-index: 0;
}

.lp-step {
  position: relative;
  z-index: 1;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--lp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-step__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-orange);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.lp-step__icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 16px;
  border-radius: 14px;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.lp-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-navy);
}

.lp-step__text {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── ROI section ── */
.lp-roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-roi-card {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-roi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--lp-shadow);
}

.lp-roi-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-orange);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.lp-roi-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0 0 8px;
}

.lp-roi-card__text {
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Problem cards ── */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-icon-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--lp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}

.lp-icon-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.lp-icon-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--lp-navy);
}

.lp-icon-card__text {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Solution ── */
.lp-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-compare-visual {
  width: 100%;
}

.lp-compare-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
}

.lp-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.lp-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--lp-text);
}

.lp-checklist__item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-green-light);
  color: var(--lp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  margin-top: 2px;
}

/* Laptop mockup */
.lp-laptop {
  perspective: 1200px;
}

.lp-laptop__screen {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg) var(--lp-radius-lg) 0 0;
  border: 2px solid var(--lp-navy-soft);
  border-bottom: none;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  transition: transform 0.3s ease;
}

.lp-laptop:hover .lp-laptop__screen {
  transform: rotateX(2deg);
}

.lp-laptop__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--lp-navy);
}

.lp-laptop__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.lp-laptop__content {
  padding: 20px;
  background: var(--lp-bg);
}

.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-compare__panel {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  overflow: hidden;
}

.lp-compareReason__label {
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-compare__label--before {
  background: #FEE2E2;
  color: #B91C1C;
}

.lp-compare__label--after {
  background: var(--lp-green-light);
  color: var(--lp-green);
}

.lp-compare__map {
  height: 100px;
  position: relative;
  background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
}

.lp-compare__map--after {
  background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
}

.lp-compare__stats {
  padding: 10px 12px;
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  border-top: 1px solid var(--lp-border);
}

.lp-compare__stats strong {
  color: var(--lp-navy);
  display: block;
  font-size: 1rem;
}

.lp-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #CBD5E1, #94A3B8);
  border-radius: 0 0 8px 8px;
  margin: 0 8%;
}

/* ── Two modes ── */
.lp-modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-mode-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 36px 32px;
  box-shadow: var(--lp-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-mode-card--recurrent {
  border-top: 4px solid var(--lp-blue);
}

.lp-mode-card--daily {
  border-top: 4px solid var(--lp-green);
}

.lp-mode-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.lp-mode-card--recurrent .lp-mode-card__badge {
  background: var(--lp-blue-light);
  color: var(--lp-blue);
}

.lp-mode-card--daily .lp-mode-card__badge {
  background: var(--lp-green-light);
  color: var(--lp-green);
}

.lp-mode-card__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--lp-navy);
}

.lp-mode-card__text {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  margin: 0 0 24px;
  line-height: 1.65;
}

.lp-mode-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-mode-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--lp-text);
}

.lp-mode-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-orange);
  flex-shrink: 0;
}

/* ── Results ── */
.lp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.lp-kpi-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--lp-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.35);
}

.lp-kpi-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.lp-kpi-card__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-navy);
  line-height: 1.4;
  margin: 0;
}

.lp-impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-impact-box {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 32px;
  box-shadow: var(--lp-shadow);
}

.lp-impact-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--lp-navy);
}

.lp-impact-box__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-impact-box__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--lp-text);
}

.lp-impact-box__list li i {
  color: var(--lp-green);
  font-size: 1rem;
}

.lp-testimonial {
  background: linear-gradient(135deg, var(--lp-orange-light), #fff);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--lp-radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-testimonial__quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--lp-text);
  line-height: 1.7;
  margin: 0 0 16px;
}

.lp-testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-text-muted);
}

/* ── Segments ── */
.lp-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-segment-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-segment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
  border-color: rgba(249, 115, 22, 0.25);
}

.lp-segment-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--lp-bg);
  color: var(--lp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.lp-segment-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin: 0;
  line-height: 1.4;
}

/* ── CTA ── */
.lp-cta {
  padding: 80px 0;
  background: var(--lp-navy);
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-cta__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
  line-height: 1.6;
}

.lp-cta__note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Footer ── */
.lp-footer {
  padding: 56px 0 32px;
  background: #0B1220;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.lp-footer__logo {
  height: 40px;
  width: auto;
  max-width: min(280px, 70vw);
  margin-bottom: 0;
  object-fit: contain;
}

.lp-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.lp-footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}

.lp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-footer__col a:hover { color: var(--lp-orange); }

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.lp-footer__links {
  display: flex;
  gap: 24px;
}

.lp-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s ease;
}

.lp-footer__links a:hover { color: var(--lp-orange); }

/* Fix typo in compare label class */
.lp-compare__label {
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Mobile nav overlay ── */
.lp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lp-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.lp-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--lp-white);
  padding: calc(var(--lp-header-h) + 16px) 24px 24px;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.lp-mobile-nav.is-open .lp-mobile-nav__panel {
  transform: translateX(0);
}

.lp-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-text);
  border-bottom: 1px solid var(--lp-border);
}

.lp-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lp-hero__grid,
  .lp-solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-modes-grid { grid-template-columns: 1fr; }
  .lp-mockup-card__body { grid-template-columns: 1fr; }
  .lp-mockup-stats { border-left: none; border-top: 1px solid var(--lp-border); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-steps::before { display: none; }
  .lp-roi-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-product-ui__body { grid-template-columns: 1fr; }
  .lp-product-ui__sidebar { border-left: none; border-top: 1px solid var(--lp-border); }
  .lp-product-ui__kpis { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .lp-nav, .lp-header__actions { display: none; }
  .lp-menu-toggle { display: flex; }
  .lp-mobile-nav { display: block; }

  .lp-hero { padding-bottom: 56px; }
  .lp-section { padding: 56px 0; }
  .lp-problem-grid,
  .lp-segments-grid,
  .lp-kpi-grid,
  .lp-roi-grid { grid-template-columns: 1fr; }
  .lp-impact-row { grid-template-columns: 1fr; }
  .lp-hero__actions { flex-direction: column; }
  .lp-hero__actions .lp-btn { width: 100%; }
  .lp-trust { flex-direction: column; gap: 10px; }
  .lp-trust-bar__items { gap: 8px; }
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-footer__bottom { flex-direction: column; text-align: center; }
  .lp-product-ui__kpis { grid-template-columns: 1fr 1fr; }
}
