/* =============================================================
   Kortes Landing Page — landing.css
   Complete production stylesheet
   ============================================================= */

/* ── Root Design Tokens ── */
:root {
  --c-bg:           #F7F3EE;
  --c-surface:      #FFFFFF;
  --c-dark:         #140F0C;
  --c-accent:       #C49A6C;
  --c-gold:         #D4AF7A;
  --c-accent-dark:  #9A7040;
  --c-accent-light: #F4E8D4;
  --c-text:         #1B1410;
  --c-muted:        #7C7068;
  --c-success:      #3B7D5A;
  --c-border:       #E5DDD3;
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;
  --wa-green:       #25D366;

  --shadow-sm:   0 1px 4px rgba(27, 20, 16, 0.08);
  --shadow-md:   0 4px 16px rgba(27, 20, 16, 0.10);
  --shadow-lg:   0 12px 40px rgba(27, 20, 16, 0.12);
  --shadow-xl:   0 24px 64px rgba(27, 20, 16, 0.14);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ── Container ── */
.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =============================================================
   NAV
   ============================================================= */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.lp-nav.is-scrolled {
  background: rgba(20, 15, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.lp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.lp-logo-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: -0.01em;
}

.lp-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(232, 224, 214, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav Menu */
.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.lp-nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232, 224, 214, 0.75);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}

.lp-nav-menu a:hover {
  color: var(--c-gold);
  background: rgba(196, 154, 108, 0.08);
}

/* Nav CTA */
.lp-nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.lp-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(232, 224, 214, 0.85);
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}

.lp-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-gold);
}

/* Mobile menu open state */
@media (max-width: 767px) {
  .lp-hamburger {
    display: flex;
    margin-left: auto;
  }

  .lp-nav-cta {
    display: none;
  }

  .lp-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(20, 15, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    margin-left: 0;
  }

  .lp-nav-menu.is-open {
    display: flex;
  }

  .lp-nav-menu a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: rgba(232, 224, 214, 0.85);
  }

  .lp-nav-menu a:hover {
    color: var(--c-gold);
    background: rgba(196, 154, 108, 0.1);
  }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  touch-action: manipulation;
  line-height: 1;
}

.lp-btn:active {
  transform: scale(0.97);
}

/* Gold gradient button */
.lp-btn-gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-accent) 100%);
  color: #1B0E06;
  box-shadow: 0 2px 12px rgba(196, 154, 108, 0.35);
}

.lp-btn-gold:hover {
  background: linear-gradient(135deg, #E0BC85 0%, var(--c-gold) 100%);
  box-shadow: 0 4px 20px rgba(196, 154, 108, 0.5);
  transform: translateY(-1px);
}

.lp-btn-gold:active {
  transform: scale(0.97) translateY(0);
}

/* Ghost white button — for dark backgrounds */
.lp-btn-ghost-white {
  background: transparent;
  color: rgba(232, 224, 214, 0.85);
  border: 1.5px solid rgba(232, 224, 214, 0.25);
}

.lp-btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 224, 214, 0.5);
  color: #fff;
}

/* Dark button — for light backgrounds */
.lp-btn-dark {
  background: var(--c-dark);
  color: var(--c-gold);
  box-shadow: var(--shadow-md);
}

.lp-btn-dark:hover {
  background: #1F170F;
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.lp-btn-dark:active {
  transform: scale(0.97) translateY(0);
}

/* Ghost dark button — for light backgrounds */
.lp-btn-ghost-dark {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid rgba(27, 20, 16, 0.25);
}

.lp-btn-ghost-dark:hover {
  background: rgba(27, 20, 16, 0.06);
  border-color: rgba(27, 20, 16, 0.5);
}

/* Size variants */
.lp-btn-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.lp-btn-lg {
  min-height: 56px;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 14px;
}

/* =============================================================
   HERO
   ============================================================= */

.lp-hero {
  min-height: 100svh;
  background-color: var(--c-dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(196, 154, 108, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(154, 112, 64, 0.10) 0%, transparent 55%);
  padding: 6rem 1.25rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 100%;
  overflow: hidden;
}

.lp-hero-content {
  flex: 1;
  max-width: 560px;
  min-width: 0;
}

/* Hero badge */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-gold);
  background: rgba(196, 154, 108, 0.1);
  border: 1px solid rgba(196, 154, 108, 0.25);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Hero title */
.lp-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* Hero sub */
.lp-hero-sub {
  font-size: 1.0625rem;
  color: rgba(232, 224, 214, 0.72);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Hero actions */
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Hero proof text */
.lp-hero-proof {
  font-size: 0.8125rem;
  color: rgba(232, 224, 214, 0.42);
  letter-spacing: 0.01em;
}

/* Hero mockup */
.lp-hero-mockup {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Hide mockup on small screens */
@media (max-width: 1023px) {
  .lp-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 7rem 1.25rem 4rem;
    min-height: auto;
    gap: 3rem;
  }

  .lp-hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lp-hero-sub {
    text-align: center;
  }

  .lp-hero-actions {
    justify-content: center;
  }

  .lp-hero-mockup {
    display: none;
  }
}

/* =============================================================
   APP MOCKUP
   ============================================================= */

.mock-frame {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  width: 500px;
  flex-shrink: 0;
}

.mock-chrome {
  background: #1C1C1E;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.mock-dot-red    { background: #FF5F57; }
.mock-dot-yellow { background: #FEBC2E; }
.mock-dot-green  { background: #28C840; }

.mock-url {
  background: #2C2C2E;
  border-radius: 6px;
  flex: 1;
  padding: 3px 10px;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-body {
  display: flex;
  height: 340px;
}

.mock-sidebar {
  width: 140px;
  background: #140F0C;
  padding: 12px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.mock-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
  padding: 4px 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 6px;
}

.mock-nav-item {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(232, 224, 214, 0.45);
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  transition: background 0.15s, color 0.15s;
}

.mock-nav-item.is-active {
  background: rgba(196, 154, 108, 0.15);
  color: var(--c-gold);
}

.mock-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--c-gold);
  color: #1B0E06;
  border-radius: 999px;
  padding: 1px 5px;
  line-height: 1.4;
}

.mock-main {
  flex: 1;
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 8px;
  border-bottom: 1px solid #F0EBDF;
  background: white;
}

.mock-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-text);
}

.mock-date {
  font-size: 0.6875rem;
  color: var(--c-muted);
}

.mock-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow: hidden;
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: white;
  border-bottom: 1px solid #F5F0E8;
}

.mock-card-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-accent));
  color: #1B0E06;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.mock-card-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-card-detail {
  font-size: 0.625rem;
  color: var(--c-muted);
}

.mock-status {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mock-status-ok {
  background: rgba(59, 125, 90, 0.1);
  color: var(--c-success);
}

.mock-status-pend {
  background: rgba(196, 154, 108, 0.15);
  color: var(--c-accent-dark);
}

.mock-share {
  margin-top: auto;
  padding: 8px 12px;
  background: rgba(244, 232, 212, 0.6);
  border-top: 1px solid #F0EBDF;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--c-accent-dark);
  text-align: center;
}

/* =============================================================
   TRUST BAR
   ============================================================= */

.lp-trustbar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  border-top: 1px solid var(--c-border);
}

.lp-trustbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 1.75rem 2.5rem;
  text-align: center;
}

.lp-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  font-family: var(--font-sans);
  display: inline;
}

.lp-stat-plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: inline;
}

.lp-stat-prefix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: inline;
}

.lp-stat-label {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.lp-stat-sep {
  width: 1px;
  background: var(--c-border);
  margin: 0.75rem 0;
  align-self: stretch;
}

@media (max-width: 639px) {
  .lp-trustbar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .lp-stat-sep {
    display: none;
  }

  .lp-stat {
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
  }

  .lp-stat:nth-child(2),
  .lp-stat:nth-child(4) {
    border-right: none;
  }

  .lp-stat:nth-child(3),
  .lp-stat:nth-child(4) {
    border-bottom: none;
  }
}

/* =============================================================
   SECTION COMMONS
   ============================================================= */

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

.lp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.lp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.lp-section-title-white {
  color: #FFFFFF;
}

.lp-section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.lp-section-sub-muted {
  color: rgba(232, 224, 214, 0.55);
}

/* Section padding */
.lp-benefits,
.lp-how,
.lp-testimonials {
  padding: 5rem 0;
}

.lp-features {
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .lp-benefits,
  .lp-how,
  .lp-testimonials,
  .lp-features {
    padding: 4rem 0;
  }
}

/* =============================================================
   BENEFITS
   ============================================================= */

.lp-benefits {
  background: var(--c-bg);
}

.lp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .lp-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-benefit-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-benefit-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(196, 154, 108, 0.15);
}

.lp-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}

.lp-benefit-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.lp-benefit-desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */

.lp-how {
  background: var(--c-surface);
}

.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .lp-steps::after {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: calc(33.333% + 1rem);
    right: calc(33.333% + 1rem);
    height: 1px;
    background: linear-gradient(90deg, var(--c-border) 0%, var(--c-accent) 50%, var(--c-border) 100%);
    pointer-events: none;
  }
}

.lp-step {
  position: relative;
  padding: 1.5rem;
  background: var(--c-bg);
  border-radius: 16px;
  border: 1.5px solid var(--c-border);
}

.lp-step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-accent);
  opacity: 0.12;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.lp-step-emoji {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.lp-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.lp-step-desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* =============================================================
   FEATURES
   ============================================================= */

.lp-features {
  background: var(--c-dark);
}

.lp-features .lp-section-header {
  margin-bottom: 0;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .lp-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  color: rgba(232, 224, 214, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.18s ease, border-color 0.18s ease;
  line-height: 1.35;
}

.lp-feature-item:hover {
  background: rgba(196, 154, 108, 0.1);
  border-color: rgba(196, 154, 108, 0.25);
}

.lp-check-icon {
  color: var(--c-gold);
  flex-shrink: 0;
}

.lp-features-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */

.lp-testimonials {
  background: var(--c-bg);
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.lp-testimonial {
  background: var(--c-surface);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1.5px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lp-testimonial-stars {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}

.lp-testimonial-quote {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-accent));
  color: #1B0E06;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-testimonial-name {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.lp-testimonial-name strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
}

.lp-testimonial-name span {
  font-size: 0.8125rem;
  color: var(--c-muted);
}

/* =============================================================
   CTA SECTION
   ============================================================= */

.lp-cta-section {
  background: linear-gradient(135deg, var(--c-accent-light) 0%, #EDE0CC 100%);
  padding: 5rem 0;
}

.lp-cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
}

.lp-cta-sub {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* =============================================================
   FOOTER
   ============================================================= */

.lp-footer {
  background: var(--c-dark);
  padding: 3rem 0 0;
}

.lp-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lp-footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lp-footer-brand .lp-logo-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-gold);
}

.lp-footer-tagline {
  font-size: 0.8125rem;
  color: rgba(232, 224, 214, 0.4);
}

.lp-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-footer-nav a {
  font-size: 0.9rem;
  color: rgba(232, 224, 214, 0.55);
  font-weight: 500;
  transition: color 0.18s;
}

.lp-footer-nav a:hover {
  color: var(--c-gold);
}

.lp-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-gold);
  transition: color 0.18s, opacity 0.18s;
}

.lp-footer-wa:hover {
  opacity: 0.8;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
}

/* =============================================================
   WHATSAPP FAB
   ============================================================= */

.lp-wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.lp-wa-fab:hover .lp-wa-fab-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Pulse animation */
.lp-wa-fab::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.35;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.35; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip */
.lp-wa-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(calc(-50% + 4px));
  background: var(--c-dark);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.875rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-md);
}

.lp-wa-fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--c-dark);
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays for grid children */
.lp-benefits-grid .reveal:nth-child(2),
.lp-features-grid .reveal:nth-child(2),
.lp-testimonials-grid .reveal:nth-child(2),
.lp-steps .reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.lp-benefits-grid .reveal:nth-child(3),
.lp-features-grid .reveal:nth-child(3),
.lp-testimonials-grid .reveal:nth-child(3),
.lp-steps .reveal:nth-child(3) {
  transition-delay: 0.20s;
}

.lp-benefits-grid .reveal:nth-child(4),
.lp-features-grid .reveal:nth-child(4) {
  transition-delay: 0.30s;
}

.lp-features-grid .reveal:nth-child(5) {
  transition-delay: 0.10s;
}

.lp-features-grid .reveal:nth-child(6) {
  transition-delay: 0.20s;
}

.lp-features-grid .reveal:nth-child(7) {
  transition-delay: 0.30s;
}

.lp-features-grid .reveal:nth-child(8) {
  transition-delay: 0.40s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-wa-fab::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =============================================================
   RESPONSIVE — ADDITIONAL MOBILE RULES
   ============================================================= */

@media (max-width: 767px) {
  /* Step connector hidden on mobile */
  .lp-steps::after {
    display: none;
  }

  /* Features grid 1 col on very small */
  @media (max-width: 479px) {
    .lp-features-grid {
      grid-template-columns: 1fr;
    }
  }

  /* CTA section */
  .lp-cta-section {
    padding: 4rem 0;
  }

  /* Footer on mobile */
  .lp-footer {
    padding: 2.5rem 0 0;
  }

  /* FAB on mobile */
  .lp-wa-fab {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .lp-wa-fab-tooltip {
    display: none;
  }
}

@media (max-width: 479px) {
  .lp-features-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .lp-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-cta-actions .lp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================
   SCREENSHOT SHOWCASE — Ve el sistema en acción
   ============================================================= */

.lp-showcase {
  background: var(--c-bg);
  padding: 5rem 0 4rem;
}

/* ── Alternating rows ── */
.lp-screen-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.lp-screen-row:last-of-type {
  margin-bottom: 0;
}

.lp-screen-row-reverse {
  flex-direction: row-reverse;
}

/* ── Browser frame ── */
.lp-screen-frame {
  flex: 1 1 55%;
  max-width: 620px;
  background: var(--c-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(27,20,16,0.06),
    0 16px 48px rgba(27,20,16,0.12),
    0 32px 80px rgba(27,20,16,0.08);
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-screen-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(27,20,16,0.08),
    0 24px 64px rgba(27,20,16,0.16),
    0 40px 96px rgba(27,20,16,0.1);
}

.lp-screen-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #ECECEC;
  border-bottom: 1px solid var(--c-border);
}

.lp-screen-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

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

.lp-screen-dots span:nth-child(1) { background: #FF5F57; }
.lp-screen-dots span:nth-child(2) { background: #FEBC2E; }
.lp-screen-dots span:nth-child(3) { background: #28C840; }

.lp-screen-url {
  font-size: 0.7rem;
  color: var(--c-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: white;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  flex: 1;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-screen-frame img {
  width: 100%;
  display: block;
  border: none;
}

/* ── Text column ── */
.lp-screen-text {
  flex: 1 1 40%;
  min-width: 0;
}

.lp-screen-tag {
  display: inline-block;
  background: var(--c-accent-light);
  color: var(--c-accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lp-screen-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-screen-text p {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.lp-screen-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-screen-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.5;
}

.lp-screen-bullets li::before {
  content: '✓';
  color: var(--c-success);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background: #EAF4EE;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Showcase CTA ── */
.lp-showcase-cta {
  text-align: center;
  padding-top: 3.5rem;
  border-top: 1px solid var(--c-border);
  margin-top: 2rem;
}

.lp-showcase-cta-note {
  margin: 0.875rem 0 0;
  font-size: 0.875rem;
  color: var(--c-muted);
}

/* ── Responsive showcase ── */
@media (max-width: 1023px) {
  .lp-screen-row,
  .lp-screen-row-reverse {
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }

  .lp-screen-frame {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .lp-screen-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 479px) {
  .lp-showcase {
    padding: 3rem 0;
  }

  .lp-screen-row {
    margin-bottom: 2.5rem;
  }

  .lp-screen-text h3 {
    font-size: 1.375rem;
  }
}
