/* ============================================
   LANDING PAGE — bautagebuch.org
   Premium, desktop-first design.
   Uses design tokens from tokens.css
   ============================================ */

/* ---- Reset & Base ---- */
html[data-theme="light"] {
  background: #F5F7FA;
}

.landing-page {
  font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text-muted);
  background: var(--bg);
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography — normal specificity for intentional style constraints */
.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--text-strong);
}

.landing-page h1 { letter-spacing: -0.035em; line-height: 1.08; }
.landing-page h2 { letter-spacing: -0.03em; line-height: 1.15; font-size: clamp(1.85rem, 3.4vw, 2.85rem); }
.landing-page h3 { letter-spacing: -0.02em; line-height: 1.25; }
.landing-page p { line-height: 1.65; }
.landing-page img { display: block; max-width: 100%; }
.landing-page button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; padding: 0; }

/* Zero-specificity resets — easily overridden by any class */
.landing-page :where(h1, h2, h3, p) { margin: 0; }
.landing-page :where(a) { color: inherit; text-decoration: none; }
.landing-page :where(img) { height: auto; }
.landing-page :where(ul) { list-style: none; margin: 0; padding: 0; }

/* ---- Utilities ---- */
.is-hidden { display: none !important; }

/* ---- Container ---- */
.lp-container {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #EA6A0E 0%, #D45A00 50%, #EA6A0E 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(234, 106, 14, 0.3),
    0 4px 12px rgba(234, 106, 14, 0.2),
    0 8px 24px rgba(234, 106, 14, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}
.lp-btn-primary:hover {
  background-position: 100% 100%;
  box-shadow:
    0 2px 4px rgba(234, 106, 14, 0.3),
    0 8px 20px rgba(234, 106, 14, 0.25),
    0 16px 40px rgba(234, 106, 14, 0.15);
  transform: translateY(-2px);
}
.lp-btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(234, 106, 14, 0.3),
    0 4px 12px rgba(234, 106, 14, 0.2);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.lp-btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--surface-1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* ---- Cards ---- */
.lp-card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-card:hover {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.lp-card-soft {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ---- Chips ---- */
.lp-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--text-faint);
  border: 1px solid var(--border-soft);
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* ---- Eyebrow ---- */
.lpv2-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-warm);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lpv2-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-warm), transparent);
  border-radius: 2px;
}

/* ---- Kicker ---- */
.lpv2-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

/* ---- Section Layout ---- */
.lpv2-section {
  padding-block: clamp(5rem, 7vw, 7rem);
  padding-inline: 24px;
  position: relative;
}

/* Alternating section backgrounds for visual rhythm */
.lpv2-section--tinted {
  background: linear-gradient(180deg, var(--surface-2) 0%, rgba(238, 241, 246, 0.5) 100%);
}

.lpv2-section--dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: rgba(255, 255, 255, 0.7);
}

.lpv2-section--dark h2,
.lpv2-section--dark h3 {
  color: #fff;
}

.lpv2-section--dark .lpv2-eyebrow {
  color: #F59E0B;
}

.lpv2-section--dark .lpv2-eyebrow::before {
  background: linear-gradient(90deg, #F59E0B, transparent);
}

.lpv2-section-head {
  margin-bottom: 48px;
  max-width: 720px;
}

.lpv2-section-head h2 {
  margin-bottom: 14px;
}

.lpv2-section-head p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lpv2-section-head--center {
  text-align: center;
  margin-inline: auto;
}

.lpv2-section-head--narrow {
  max-width: 600px;
}

.lpv2-section-actions {
  margin-top: 28px;
}

.lpv2-section-actions--center {
  text-align: center;
}

.lpv2-inline-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-faint);
}

.lpv2-inline-note--center {
  text-align: center;
}

/* ---- Section image card ---- */
.lpv2-section-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lpv2-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Two-Col Grid ---- */
.lpv2-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-two-col--wide-right {
  grid-template-columns: 5fr 7fr;
}

/* ---- Bullet List ---- */
.lpv2-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.lpv2-bullet-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
}

.lpv2-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), #F59E0B);
}

.lpv2-lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
.lpv2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 250, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lpv2-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 24px;
  min-height: 68px;
}

.lpv2-brand {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  white-space: nowrap;
}

.lpv2-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.lpv2-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.lpv2-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-warm);
  border-radius: 1px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpv2-nav a:hover {
  color: var(--text-strong);
}

.lpv2-nav a:hover::after {
  width: 100%;
}

.lpv2-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lpv2-header-login {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
  min-height: 40px;
}

.lpv2-header-cta {
  min-height: 40px;
  padding: 0 22px;
  font-size: 14px;
  border-radius: 10px;
}

/* Hamburger */
.lpv2-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.lpv2-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile nav */
.lpv2-mobile-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--surface-1);
}

.lpv2-mobile-nav:not([hidden]) {
  display: block;
}

.lpv2-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}

.lpv2-mobile-nav-inner a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}

.lpv2-mobile-nav-inner a:last-of-type:not(.lpv2-mobile-nav-cta) {
  border-bottom: none;
}

.lpv2-mobile-nav-cta {
  margin-top: 12px;
  border-bottom: none !important;
  text-align: center;
}

.lpv2-menu-open {
  overflow: hidden;
}

/* ============================================
   TOAST
   ============================================ */
.lp-toast {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 200;
  transform: translateX(-50%);
  width: 92%;
  max-width: 520px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: opacity 300ms ease;
}

.lp-toast.is-error {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.lp-toast.is-success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.lp-toast.is-fading {
  opacity: 0;
}

/* ============================================
   HERO
   ============================================ */
.lpv2-hero-section {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
}

/* Decorative gradient blob behind hero */
.lpv2-hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 106, 14, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.lpv2-hero-section::after {
  content: '';
  position: absolute;
  top: 80px;
  left: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 122, 232, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.lpv2-hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}

.lpv2-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lpv2-hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--text-strong);
}

.lpv2-hero-title-highlight {
  background: linear-gradient(135deg, #EA6A0E 0%, #D45A00 60%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lpv2-hero-subheadline {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.lpv2-hero-copytext {
  font-size: 15px;
  color: var(--text-faint);
  line-height: 1.65;
  margin-bottom: 32px;
}

.lpv2-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lpv2-hero-micro {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.01em;
}

.lpv2-hero-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpv2-hero-visual:hover {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.lpv2-hero-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lpv2-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PROOF STRIP
   ============================================ */
.lpv2-proof-strip {
  padding: 24px 24px;
  background: var(--surface-1);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.lpv2-proof-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.lpv2-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.35);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(22, 163, 74, 0.3); }
  50% { box-shadow: 0 0 12px rgba(22, 163, 74, 0.5); }
}

/* ============================================
   VIDEO
   ============================================ */
.lpv2-video-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-video-wrapper {
  max-width: 900px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
}

.lpv2-video-wrapper:hover {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.lpv2-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.lpv2-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   STORY
   ============================================ */
.lpv2-story-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.lpv2-story-visual-column {
  position: sticky;
  top: 100px;
}

.lpv2-story-feature-card {
  border-radius: 20px;
}

.lpv2-story-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lpv2-story-step {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.lpv2-story-step:hover {
  background: var(--surface-2);
}

.lpv2-story-step.is-active {
  background: var(--surface-1);
  border-color: var(--border-soft);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 16px rgba(0, 0, 0, 0.06);
}

.lpv2-story-step-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--surface-3);
  flex-shrink: 0;
  width: 40px;
  transition: color 0.35s ease;
}

.lpv2-story-step.is-active .lpv2-story-step-number {
  color: var(--accent-warm);
}

.lpv2-story-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lpv2-story-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lpv2-story-step span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
}

/* ============================================
   DEMO
   ============================================ */
.lpv2-demo-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.lpv2-demo-output {
  padding: 24px;
}

.lpv2-demo-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.lpv2-demo-block:last-child {
  border-bottom: none;
}

.lpv2-demo-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lpv2-demo-block--accent {
  background: linear-gradient(135deg, rgba(234, 106, 14, 0.06) 0%, rgba(245, 158, 11, 0.04) 100%);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
  border-bottom: none;
  border: 1px solid rgba(234, 106, 14, 0.1);
}

.lpv2-demo-block--accent p {
  color: var(--text-strong);
}

.lpv2-demo-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lpv2-demo-rows > div {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.lpv2-demo-rows span {
  color: var(--text-faint);
  min-width: 100px;
  flex-shrink: 0;
}

.lpv2-demo-rows strong {
  color: var(--text-strong);
  font-weight: 600;
}

/* ============================================
   PROBLEM
   ============================================ */
.lpv2-problem-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.lpv2-problem-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.lpv2-problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.5), rgba(239, 68, 68, 0.1));
  border-radius: 0 2px 2px 0;
}

.lpv2-problem-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  padding-left: 4px;
}

.lpv2-problem-transition {
  text-align: center;
  margin-top: 36px;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-warm);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.lpv2-testimonial-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lpv2-testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Decorative quote mark */
.lpv2-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-warm);
  opacity: 0.08;
  pointer-events: none;
  font-family: Georgia, serif;
}

.lpv2-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06);
}

.lpv2-testimonial-card blockquote {
  margin: 0;
}

.lpv2-testimonial-card blockquote p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
}

.lpv2-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.lpv2-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(234, 106, 14, 0.12), rgba(245, 158, 11, 0.08));
  color: var(--accent-warm);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lpv2-testimonial-footer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
}

.lpv2-testimonial-footer span {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ============================================
   NO-APP & ARCHIVE (two-col layouts)
   ============================================ */
.lpv2-noapp-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-noapp-section h2 {
  margin-bottom: 14px;
}

.lpv2-noapp-section > .lpv2-two-col > div:first-child p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   TEAM
   ============================================ */
.lpv2-team-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-team-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lpv2-team-step {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
}

.lpv2-team-step:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06);
}

.lpv2-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EA6A0E 0%, #D45A00 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(234, 106, 14, 0.25);
}

.lpv2-team-step p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
}

/* ============================================
   AUTO-REPORT
   ============================================ */
.lpv2-auto-report-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-time-report-card {
  padding: 0;
  overflow: hidden;
}

.lpv2-section-image--office {
  border-bottom: 1px solid var(--border-soft);
}

.lpv2-time-list {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lpv2-time-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lpv2-time-item strong {
  min-width: 48px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-faint);
  flex-shrink: 0;
}

.lpv2-time-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
}

.lpv2-time-item p {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

.lpv2-time-item.is-final strong {
  color: var(--accent-warm);
}

.lpv2-time-report-preview {
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(238, 241, 246, 0.5) 100%);
}

.lpv2-time-report-row {
  margin-top: 10px;
}

.lpv2-time-report-row span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.lpv2-time-report-row p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.6;
}

/* ============================================
   EXAMPLE PROJECT
   ============================================ */
.lpv2-project-example-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lpv2-example-card {
  padding: 24px;
}

.lpv2-example-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lpv2-example-card--middle {
  padding: 0;
}

.lpv2-example-input img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lpv2-example-input-copy {
  padding: 16px 20px;
}

.lpv2-example-input-copy p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
}

.lpv2-example-input-copy span {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================
   REPORT PREVIEW
   ============================================ */
.lpv2-report-preview-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-report-sheet {
  max-width: 800px;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.04);
}

.lpv2-report-sheet-head {
  padding: 28px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
}

.lpv2-report-sheet-head h3 {
  font-size: 18px;
  font-weight: 700;
}

.lpv2-report-sheet-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 12px;
  color: var(--text-faint);
  white-space: nowrap;
}

.lpv2-report-sheet-body {
  padding: 28px;
}

.lpv2-report-sheet-row {
  margin-bottom: 18px;
}

.lpv2-report-sheet-row span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.lpv2-report-sheet-row p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lpv2-report-preview-visual {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.lpv2-report-preview-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ============================================
   ARCHIVE
   ============================================ */
.lpv2-archive-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lpv2-archive-visual {
  padding: 16px;
}

.lpv2-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lpv2-archive-grid article {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.lpv2-archive-grid article:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.lpv2-archive-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lpv2-archive-grid article div {
  padding: 10px 12px;
}

.lpv2-archive-grid article strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-strong);
}

.lpv2-archive-grid article span {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ============================================
   DISPUTE / TRUST
   ============================================ */
.lpv2-dispute-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-proof-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.lpv2-proof-pillar {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* Gradient top edge on proof pillars */
.lpv2-proof-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-warm) 0%, #F59E0B 100%);
}

.lpv2-proof-pillar h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lpv2-proof-pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lpv2-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.lpv2-trust-card {
  padding: 18px 22px;
  transition: all 0.3s ease;
}

.lpv2-trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.lpv2-trust-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
}

/* ============================================
   MULTILINGUAL
   ============================================ */
.lpv2-multilang-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-multilang-layout {
  align-items: start;
}

.lpv2-multilang-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lpv2-multilang-card {
  padding: 22px;
}

.lpv2-multilang-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lpv2-multilang-card--accent {
  border-color: var(--accent-warm);
  background: linear-gradient(135deg, var(--surface-1) 0%, rgba(234, 106, 14, 0.02) 100%);
}

.lpv2-multilang-card--accent p {
  color: var(--text-strong);
  font-weight: 500;
}

/* ============================================
   FEATURES
   ============================================ */
.lpv2-features-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lpv2-feature-card {
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lpv2-feature-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.lpv2-feature-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
}

/* ============================================
   BRANCHES
   ============================================ */
.lpv2-branches-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-branches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lpv2-branch-card {
  padding: 14px 28px;
  transition: all 0.25s ease;
}

.lpv2-branch-card:hover {
  transform: translateY(-1px);
  border-color: var(--accent-warm);
}

.lpv2-branch-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
}

/* ============================================
   PRICING
   ============================================ */
.lpv2-pricing-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-pricing-shell {
  padding: 56px 36px;
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.lpv2-pricing-toggle-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.lpv2-pricing-toggle {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 3px;
}

.lpv2-pricing-toggle button {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s ease;
  color: var(--text-faint);
}

.lpv2-pricing-toggle button.is-active {
  background: var(--surface-1);
  color: var(--text-strong);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.lpv2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.lpv2-price-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpv2-price-card:hover {
  transform: translateY(-3px);
}

.lpv2-price-card--recommended {
  border: 2px solid var(--accent-warm);
  box-shadow:
    0 0 0 1px rgba(234, 106, 14, 0.1),
    0 4px 12px rgba(234, 106, 14, 0.08),
    0 16px 40px rgba(234, 106, 14, 0.06);
  position: relative;
  background: linear-gradient(180deg, var(--surface-1) 0%, rgba(234, 106, 14, 0.02) 100%);
}

.lpv2-price-card--recommended:hover {
  box-shadow:
    0 0 0 1px rgba(234, 106, 14, 0.15),
    0 8px 20px rgba(234, 106, 14, 0.12),
    0 24px 56px rgba(234, 106, 14, 0.08);
}

.lpv2-price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.lpv2-price-head h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

.lpv2-price-badge {
  display: inline-flex;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  background: linear-gradient(135deg, #EA6A0E 0%, #D45A00 100%);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(234, 106, 14, 0.25);
}

.lpv2-price-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.lpv2-price-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.lpv2-price-note--billing,
.lpv2-price-note--benefit {
  display: none;
}

.lpv2-price-note--billing.is-visible,
.lpv2-price-note--benefit.is-visible {
  display: block;
}

.lpv2-price-summary {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0 18px;
  line-height: 1.55;
}

.lpv2-price-chip-row {
  margin-bottom: 16px;
}

.lpv2-price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.lpv2-price-list li {
  padding-left: 22px;
  position: relative;
  font-size: 13px;
  color: var(--text-muted);
}

.lpv2-price-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 13px;
}

.lpv2-pricing-cta {
  width: 100%;
  text-align: center;
}

/* Addon pricing */
.lpv2-addon-pricing-block {
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
}

.lpv2-addon-pricing-head {
  margin-bottom: 20px;
}

.lpv2-addon-pricing-head h3 {
  font-size: 16px;
  font-weight: 600;
}

.lpv2-addon-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.lpv2-addon-price-card {
  padding: 18px 22px;
  transition: all 0.3s ease;
}

.lpv2-addon-price-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.lpv2-addon-price-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lpv2-addon-price-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
}

.lpv2-addon-price-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.lpv2-addon-price-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.lpv2-faq-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-accordion-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.lp-accordion-item.is-open {
  border-color: var(--accent-warm);
  box-shadow: 0 2px 12px rgba(234, 106, 14, 0.06);
}

.lp-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  transition: background 0.2s ease;
}

.lp-accordion-btn:hover {
  background: var(--hover-overlay);
}

.faq-icon-wrap {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-faint);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-accordion-item.is-open .faq-icon-wrap {
  transform: rotate(45deg);
}

.lp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.lp-accordion-item.is-open .lp-accordion-panel {
  max-height: 300px;
  padding: 0 22px 22px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.lpv2-final-cta-section {
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-final-cta {
  padding: 56px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Gradient orb behind CTA */
.lpv2-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(234, 106, 14, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lpv2-final-cta h2 {
  margin-bottom: 14px;
  color: #fff;
  position: relative;
}

.lpv2-final-cta > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  position: relative;
}

.lpv2-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.lpv2-final-cta .lp-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

/* ============================================
   FOOTER
   ============================================ */
.lpv2-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border-soft);
  padding: 56px 24px;
}

.lpv2-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 1200px;
  margin-inline: auto;
}

.lpv2-footer-brand p {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
  margin-top: 12px;
}

.lpv2-footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.lpv2-footer-contact {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cool);
  transition: color 0.2s ease;
}

.lpv2-footer-contact:hover {
  text-decoration: underline;
}

.lpv2-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: flex-end;
  align-content: flex-start;
}

.lpv2-footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
  transition: color 0.2s ease;
}

.lpv2-footer-nav a:hover {
  color: var(--text-strong);
}

/* ============================================
   SAMPLE REPORT MODAL
   ============================================ */
.lp-sample-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  padding: 0;
}

.lp-sample-modal.is-open {
  display: flex;
}

.lp-sample-backdrop {
  position: absolute;
  inset: 0;
}

.lp-sample-shell {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  height: 100dvh;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.16);
}

.lp-sample-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft);
}

.lp-sample-head-text {
  min-width: 0;
}

.lp-sample-head-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.lp-sample-head-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-top: 4px;
}

.lp-sample-head-desc {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 4px;
  max-width: 500px;
}

.lp-sample-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp-sample-close-btn {
  min-height: 40px;
  min-width: 40px;
  padding: 0 12px;
  font-size: 18px;
  border-radius: 10px;
}

.lp-sample-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.lp-sample-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-faint);
}

.lp-sample-loading.is-hidden {
  display: none;
}

.lp-sample-frame {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.lp-sample-frame.is-loaded {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 1100px)
   ============================================ */
@media (max-width: 1100px) {
  .lpv2-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lpv2-two-col,
  .lpv2-two-col--wide-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lpv2-story-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lpv2-story-visual-column {
    position: static;
  }

  .lpv2-demo-grid {
    grid-template-columns: 1fr;
  }

  .lpv2-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-example-grid {
    grid-template-columns: 1fr;
  }

  .lpv2-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-proof-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-pricing-grid .lpv2-price-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-inline: auto;
    width: 100%;
  }

  .lpv2-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lpv2-footer-nav {
    justify-content: flex-start;
  }

  .lpv2-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-multilang-layout {
    grid-template-columns: 1fr;
  }

  .lp-sample-shell {
    border-radius: 0;
  }
}

/* ============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .lpv2-section {
    padding-inline: 16px;
    padding-block: clamp(2.5rem, 5vw, 4rem);
  }

  /* Header mobile */
  .lpv2-nav {
    display: none;
  }

  .lpv2-header-login {
    display: none;
  }

  .lpv2-menu-toggle {
    display: flex;
  }

  .lpv2-header-inner {
    padding: 0 16px;
  }

  /* Hero */
  .lpv2-hero-title {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .lpv2-hero-subheadline {
    font-size: 16px;
  }

  .lpv2-hero-actions {
    flex-direction: column;
  }

  .lpv2-hero-actions .lp-btn-primary,
  .lpv2-hero-actions .lp-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Decorative blobs */
  .lpv2-hero-section::before,
  .lpv2-hero-section::after {
    display: none;
  }

  /* Proof strip */
  .lpv2-proof-strip-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Team */
  .lpv2-team-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .lpv2-testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .lpv2-pricing-shell {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .lpv2-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lpv2-pricing-grid .lpv2-price-card:last-child {
    max-width: none;
  }

  .lpv2-pricing-toggle button {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Features */
  .lpv2-feature-grid {
    grid-template-columns: 1fr;
  }

  /* Proof */
  .lpv2-proof-grid-4 {
    grid-template-columns: 1fr;
  }

  /* Archive */
  .lpv2-archive-grid {
    grid-template-columns: 1fr;
  }

  /* Report */
  .lpv2-report-sheet-head {
    flex-direction: column;
  }

  .lpv2-report-sheet-meta {
    align-items: flex-start;
  }

  /* Final CTA */
  .lpv2-final-cta {
    padding: 36px 20px;
    border-radius: 16px;
  }

  /* Footer */
  .lpv2-footer {
    padding: 32px 16px;
  }

  /* Section heads */
  .lpv2-section-head {
    margin-bottom: 28px;
  }

  /* Eyebrow line hidden on mobile */
  .lpv2-eyebrow::before {
    display: none;
  }

  /* Modal */
  .lp-sample-modal {
    padding: 0;
  }
}

/* ============================================
   RESPONSIVE — Small mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .lpv2-hero-section {
    padding-top: 2rem;
  }

  .lpv2-hero-title {
    font-size: 1.875rem;
  }

  .lpv2-team-flow {
    grid-template-columns: 1fr;
  }

  .lpv2-problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DESKTOP large (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .lp-sample-shell {
    height: 82vh;
    border-radius: 20px;
  }

  .lp-sample-modal {
    padding: 24px;
  }
}
