/* ============================================================
   CMRF Markets — Landing Page Styles
   Light UI · Primary #52bff0 · BG #f7f9fb · Surface #ffffff
   Apple light + Stripe / Notion inspired
   ============================================================ */

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

:root {
  --lp-bg:          #f7f9fb;
  --lp-surface:     #ffffff;
  --lp-surface-2:   #f0f4f8;
  --lp-primary:     #52bff0;
  --lp-primary-deep:#1ea8e0;
  --lp-primary-dim: rgba(82, 191, 240, .10);
  --lp-text:        #0f1720;
  --lp-text-2:      #5b6570;
  --lp-border:      #e6ebf0;
  --lp-radius:      14px;
  --lp-radius-lg:   20px;
  --lp-shadow-sm:   0 1px 3px rgba(15,23,32,.06), 0 1px 2px rgba(15,23,32,.04);
  --lp-shadow-md:   0 4px 16px rgba(15,23,32,.08), 0 2px 6px rgba(15,23,32,.04);
  --lp-shadow-lg:   0 16px 48px rgba(15,23,32,.10), 0 4px 12px rgba(15,23,32,.06);
  --lp-transition:  .3s cubic-bezier(.4, 0, .2, 1);
  --lp-container:   1200px;
  --lp-font:        'Inter', system-ui, sans-serif;
}

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

body.lp-body {
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────────── */
.lp-container {
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.lp-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: .75rem;
}

.lp-section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  font-family: var(--lp-font);
  font-weight: 600;
  border-radius: 99px;
  transition: var(--lp-transition);
  white-space: nowrap;
  text-decoration: none;
  padding: .65rem 1.4rem;
  font-size: .9rem;
}

.lp-btn--primary {
  background: var(--lp-primary);
  color: #0b0f14;
}
.lp-btn--primary:hover {
  background: var(--lp-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,191,240,.30);
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text-2);
  border: 1px solid var(--lp-border);
}
.lp-btn--ghost:hover {
  color: var(--lp-text);
  border-color: var(--lp-primary);
  transform: translateY(-2px);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-primary);
  border: 1.5px solid var(--lp-primary);
}
.lp-btn--outline:hover {
  background: var(--lp-primary-dim);
  transform: translateY(-2px);
}

.lp-btn--lg  { padding: .8rem 1.8rem;  font-size: 1rem; }
.lp-btn--xl  { padding: 1rem 2.2rem;   font-size: 1.1rem; }

.lp-btn__wa-icon { flex-shrink: 0; }

/* ── Header ───────────────────────────────────────────────── */
.lp-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 251, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
  transition: background var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-header.is-scrolled {
  background: rgba(247, 249, 251, .98);
  box-shadow: var(--lp-shadow-sm);
}

.lp-header__inner {
  max-width: var(--lp-container);
  margin-inline: auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-header__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.lp-header__logo-img {
  height: 32px;
  width: auto;
}
.lp-header__logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--lp-text);
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-header__nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--lp-text-2);
  transition: color var(--lp-transition);
}
.lp-header__nav-link:hover { color: var(--lp-text); }
.lp-header__nav-link.is-active {
  color: var(--lp-primary-deep);
  font-weight: 600;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Burger button (mobile only) */
.lp-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--lp-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--lp-transition);
}
.lp-header__burger:hover { border-color: var(--lp-primary); }
.lp-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.lp-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.lp-header__mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  opacity: 0;
  background: rgba(247, 249, 251, .98);
  border-top: 1px solid transparent;
}
.lp-header__mobile-nav.is-open {
  max-height: 400px;
  opacity: 1;
  border-top-color: var(--lp-border);
}
.lp-header__mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
  gap: .25rem;
}
.lp-header__mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-text-2);
  padding: .6rem .5rem;
  border-radius: 8px;
  transition: color var(--lp-transition), background var(--lp-transition);
}
.lp-header__mobile-link:hover { color: var(--lp-text); background: var(--lp-surface-2); }
.lp-header__mobile-link.is-active { color: var(--lp-primary-deep); font-weight: 700; }
.lp-header__mobile-cta { margin-top: .5rem; width: 100%; justify-content: center; }

.lp-header__cta {
  font-size: .85rem;
  padding: .55rem 1.2rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.lp-hero__glow--1 {
  width: 700px;
  height: 500px;
  background: rgba(82, 191, 240, .14);
  top: -120px;
  right: -150px;
}
.lp-hero__glow--2 {
  width: 500px;
  height: 400px;
  background: rgba(82, 191, 240, .08);
  bottom: -100px;
  left: -100px;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 5rem 4rem;
  position: relative;
  z-index: 1;
}

.lp-hero__copy {
  max-width: 560px;
}

.lp-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lp-primary-deep);
  opacity: 0;
  background: var(--lp-primary-dim);
  padding: .25rem .85rem;
  border-radius: 99px;
}

.lp-hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  display: flex;
  flex-wrap: wrap;
  gap: .3em;
  margin-bottom: 1.25rem;
}

.lp-hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateZ(0) translateY(40px);
  will-change: transform, opacity;
}

.lp-hero__sub {
  font-size: 1.1rem;
  color: var(--lp-text-2);
  margin-bottom: 2rem;
  max-width: 440px;
  opacity: 0;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  opacity: 0;
}

/* ── Phone mockup ─────────────────────────────────────────── */
.lp-hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateZ(0) translateY(60px);
  will-change: transform, opacity;
}

.lp-phone {
  position: relative;
  width: 240px;
  filter: drop-shadow(0 24px 48px rgba(15,23,32,.15));
}

.lp-phone__frame {
  background: #e0e8f0;
  border-radius: 36px;
  border: 2px solid #cdd6e0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.6);
}

.lp-phone__screen {
  background: var(--lp-surface);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem .75rem;
}

.lp-phone__status-bar {
  height: 20px;
  background: #f0f4f8;
  border-radius: 4px;
  margin-bottom: .5rem;
  flex-shrink: 0;
}

.lp-phone__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lp-mockup-card {
  background: var(--lp-surface);
  border-radius: 12px;
  display: flex;
  gap: .6rem;
  padding: .6rem;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
  animation: lp-float-card 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes lp-float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.lp-mockup-card__img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dff0fb, #bce0f5);
  flex-shrink: 0;
}
.lp-mockup-card__img--alt  { background: linear-gradient(135deg, #fde8d4, #f9c9b0); }
.lp-mockup-card__img--alt2 { background: linear-gradient(135deg, #d4f3e5, #a8e6ca); }

.lp-mockup-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  justify-content: center;
}
.lp-mockup-card__title {
  height: 8px;
  background: #dce3ea;
  border-radius: 4px;
  width: 80%;
}
.lp-mockup-card__price {
  height: 8px;
  background: rgba(82,191,240,.4);
  border-radius: 4px;
  width: 40%;
}

.lp-phone__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #25d366;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .55rem;
  border-radius: 0 0 34px 34px;
  margin: .25rem -.75rem -.75rem;
  pointer-events: none;
}

.lp-phone__shadow {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(82,191,240,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* floating labels */
.lp-hero__float {
  position: absolute;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: .5rem .85rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  box-shadow: var(--lp-shadow-md);
}
.lp-hero__float .material-symbols-rounded { font-size: 1rem; color: var(--lp-primary-deep); }
.lp-hero__float--1 {
  top: 12%;
  left: -50px;
  animation: lp-float 5s ease-in-out infinite;
}
.lp-hero__float--2 {
  bottom: 20%;
  right: -40px;
  animation: lp-float 5s ease-in-out infinite .8s;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

/* scroll hint */
.lp-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.lp-hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lp-primary), transparent);
  animation: lp-scroll-hint 2s ease-in-out infinite;
  margin-inline: auto;
}
@keyframes lp-scroll-hint {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── Scroll-reveal base state ─────────────────────────────── */
[data-lp-scroll-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  will-change: transform, opacity;
  transition: opacity .6s cubic-bezier(.4,0,.2,1),
              transform .6s cubic-bezier(.4,0,.2,1);
}
[data-lp-scroll-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* ── Problem ──────────────────────────────────────────────── */
.lp-problem {
  padding-block: 6rem;
  border-top: 1px solid var(--lp-border);
}

.lp-problem__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.lp-problem__eyebrow { text-align: center; }

.lp-problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lp-problem__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--lp-text-2);
  transition: color var(--lp-transition);
}
.lp-problem__item.is-visible { color: var(--lp-text); }

.lp-problem__bullet {
  font-size: 1.4em;
  color: #e05252;
  line-height: 1;
}

/* ── Solution ─────────────────────────────────────────────── */
.lp-solution {
  padding-block: 6rem;
  background: var(--lp-surface);
}

.lp-solution__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.lp-solution__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  counter-reset: sol;
}

.lp-solution__step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.1rem 1.5rem;
  text-align: left;
  box-shadow: var(--lp-shadow-sm);
}

.lp-solution__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--lp-primary-deep);
  line-height: 1;
  min-width: 2rem;
  font-variant-numeric: tabular-nums;
}

.lp-solution__text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── Plans ────────────────────────────────────────────────── */
.lp-plans {
  padding-block: 6rem;
}

.lp-plans__inner { text-align: center; }

.lp-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}

.lp-plan-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
  box-shadow: var(--lp-shadow-sm);
}

.lp-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--lp-primary);
  box-shadow: var(--lp-shadow-lg);
}

.lp-plan-card--highlighted {
  border-color: var(--lp-primary);
  background: linear-gradient(160deg, rgba(82,191,240,.07) 0%, var(--lp-surface) 70%);
  box-shadow: 0 0 0 3px var(--lp-primary-dim), var(--lp-shadow-md);
}

.lp-plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-primary-deep);
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.lp-plan-card__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.lp-plan-card__desc {
  font-size: .9rem;
  color: var(--lp-text-2);
  line-height: 1.5;
}

.lp-plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.lp-plan-card__feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--lp-text-2);
}

.lp-plan-card__check {
  font-size: 1.1rem;
  color: var(--lp-primary);
}

.lp-plan-card__cta {
  text-align: center;
  justify-content: center;
  margin-top: .5rem;
}

/* ── How it works ─────────────────────────────────────────── */
.lp-how {
  padding-block: 6rem;
  background: var(--lp-surface);
}

.lp-how__inner { text-align: center; }

.lp-how__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  max-width: 860px;
  margin: 3rem auto 0;
  position: relative;
}

.lp-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  position: relative;
}

.lp-how__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  background: var(--lp-primary-dim);
  border: 1.5px solid rgba(82,191,240,.25);
  border-radius: var(--lp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lp-shadow-sm);
}

.lp-how__icon {
  font-size: 2rem;
  color: var(--lp-primary-deep);
}

.lp-how__step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--lp-primary);
  color: #0b0f14;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-how__step-title {
  font-size: 1rem;
  font-weight: 700;
}

.lp-how__step-desc {
  font-size: .875rem;
  color: var(--lp-text-2);
  line-height: 1.5;
}

.lp-how__connector {
  display: none;
}

/* Arrow line between steps (desktop) */
@media (min-width: 768px) {
  .lp-how__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 36px);
    height: 1.5px;
    background: linear-gradient(to right, rgba(82,191,240,.4), rgba(82,191,240,.1));
    pointer-events: none;
  }
}

/* ── Extras ───────────────────────────────────────────────── */
.lp-extras {
  padding-block: 6rem;
}

.lp-extras__inner { text-align: center; }

.lp-extras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.lp-extra-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition: border-color var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
  box-shadow: var(--lp-shadow-sm);
}
.lp-extra-card:hover {
  border-color: var(--lp-primary);
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-md);
}

.lp-extra-card__icon {
  font-size: 2rem;
  color: var(--lp-primary-deep);
  margin-bottom: .75rem;
  display: block;
}

.lp-extra-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.lp-extra-card__desc {
  font-size: .875rem;
  color: var(--lp-text-2);
  line-height: 1.6;
}

/* ── CTA Final ────────────────────────────────────────────── */
.lp-cta-final {
  padding-block: 7rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--lp-border);
}

.lp-cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-cta-final__glow {
  position: absolute;
  width: 800px;
  height: 300px;
  background: rgba(82, 191, 240, .12);
  border-radius: 50%;
  filter: blur(100px);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lp-cta-final__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.lp-cta-final__sub {
  font-size: 1.1rem;
  color: var(--lp-text-2);
  max-width: 500px;
}

.lp-cta-final__actions { margin-top: .75rem; }

/* ── Footer (expanded) ────────────────────────────────────── */
.lp-footer {
  padding-block: 3rem 0;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg);
}

.lp-footer__inner {
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.lp-footer__brand {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lp-footer__brand-logo { display: inline-block; }
.lp-footer__brand-logo img { height: 32px; width: auto; }
.lp-footer__brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--lp-text);
}

.lp-footer__desc {
  font-size: .875rem;
  color: var(--lp-text-2);
  line-height: 1.6;
  max-width: 280px;
}

.lp-footer__location {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--lp-text-2);
  font-weight: 500;
}
.lp-footer__location .material-symbols-rounded {
  font-size: 1rem;
  color: var(--lp-primary-deep);
}

.lp-footer__col {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lp-footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-text-2);
}

.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lp-footer__link {
  font-size: .875rem;
  color: var(--lp-text-2);
  transition: color var(--lp-transition);
}
.lp-footer__link:hover { color: var(--lp-primary-deep); }

.lp-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.lp-footer__contact-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-text-2);
  transition: color var(--lp-transition);
}
.lp-footer__contact-link:hover { color: var(--lp-primary-deep); }
.lp-footer__contact-link svg { flex-shrink: 0; color: #25d366; }
.lp-footer__contact-link:last-child svg { color: var(--lp-primary); }

.lp-footer__bottom {
  border-top: 1px solid var(--lp-border);
  padding: 1rem 1.25rem;
  max-width: var(--lp-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer__copy {
  font-size: .8rem;
  color: var(--lp-text-2);
}

.lp-footer__made {
  font-size: .8rem;
  color: var(--lp-text-2);
  font-style: italic;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-block: 4rem 3rem;
  }
  .lp-hero__copy { max-width: 100%; }
  .lp-hero__headline { justify-content: center; }
  .lp-hero__actions { justify-content: center; }
  .lp-hero__sub { margin-inline: auto; }

  .lp-hero__float--1 { left: 0; }
  .lp-hero__float--2 { right: 0; }

  .lp-how__steps {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .lp-how__step::after { display: none !important; }

  .lp-header__nav { display: none; }
  .lp-header__burger { display: flex; }
  .lp-header__cta { display: none; }

  .lp-mockup-section__inner,
  .lp-mockup-section__inner--reversed {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .lp-mockup-section__visual {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .lp-mockup-section__copy .lp-btn { align-self: center; }

  .lp-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-portfolio__item:first-child {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .lp-laptop { max-width: 360px; }
}

@media (max-width: 600px) {
  .lp-hero { min-height: 100dvh; }

  .lp-phone { width: 210px; }
  .lp-phone__screen { min-height: 400px; }

  .lp-hero__float { display: none; }

  .lp-problem__item { font-size: 1.1rem; }

  .lp-plans__grid { grid-template-columns: 1fr; }

  .lp-how__steps { grid-template-columns: 1fr; }

  .lp-extras__grid { grid-template-columns: 1fr; }

  .lp-cta-final { padding-block: 5rem; }

  .lp-portfolio__grid { grid-template-columns: 1fr; }

  .lp-footer__inner { flex-direction: column; gap: 2rem; }
  .lp-footer__bottom { flex-direction: column; gap: .25rem; }

  .lp-sub-hero { padding-block: 7rem 3rem; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-lp-scroll-reveal],
  .lp-hero__word,
  .lp-hero__eyebrow,
  .lp-hero__sub,
  .lp-hero__actions,
  .lp-hero__mockup {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .lp-mockup-card,
  .lp-hero__float { animation: none !important; }
}

/* ── Portfolio grid ───────────────────────────────────────── */
.lp-portfolio {
  padding-block: 6rem;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
}

.lp-portfolio__header {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lp-portfolio__item:first-child {
  grid-row: span 1;
}

.lp-portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
  transition: box-shadow var(--lp-transition), transform var(--lp-transition);
  display: block;
  background: var(--lp-surface-2);
  aspect-ratio: 4/3;
  text-decoration: none;
  color: inherit;
}

.lp-portfolio__item:first-child {
  aspect-ratio: unset;
}

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

.lp-portfolio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lp-portfolio__item:hover .lp-portfolio__img {
  transform: scale(1.04);
}

.lp-portfolio__mock {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(145deg, var(--lp-surface) 0%, var(--lp-bg) 100%);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: .6rem;
}

.lp-portfolio__mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--lp-border);
}
.lp-portfolio__mock-bar:nth-child(1) { width: 55%; }
.lp-portfolio__mock-bar:nth-child(2) { width: 75%; }
.lp-portfolio__mock-bar:nth-child(3) { width: 40%; background: rgba(82,191,240,.35); }

.lp-portfolio__mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .5rem;
  flex: 1;
}

.lp-portfolio__mock-card {
  border-radius: 6px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

.lp-portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,32,.5);
  opacity: 0;
  transition: opacity var(--lp-transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  border-radius: var(--lp-radius);
}
.lp-portfolio__item:hover .lp-portfolio__overlay { opacity: 1; }

.lp-portfolio__overlay-content { color: #fff; }

.lp-portfolio__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: .25rem;
}

.lp-portfolio__title {
  font-size: 1rem;
  font-weight: 700;
}

/* ── Mockup split sections (catalog / premium) ────────────── */
.lp-mockup-section {
  padding-block: 6rem;
  border-top: 1px solid var(--lp-border);
}

.lp-mockup-section--light { background: var(--lp-bg); }
.lp-mockup-section--white { background: var(--lp-surface); }

.lp-mockup-section__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.lp-mockup-section__inner--reversed {
  flex-direction: row-reverse;
}

.lp-mockup-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--lp-text);
  margin-bottom: 1rem;
}

.lp-mockup-section__desc {
  font-size: 1.05rem;
  color: var(--lp-text-2);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.lp-mockup-section__copy {
  flex: 1;
  min-width: 0;
}

.lp-mockup-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 44%;
  max-width: 44%;
}

/* ── Laptop mockup ────────────────────────────────────────── */
.lp-laptop {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.lp-laptop__shell {
  background: #d4dce6;
  border-radius: 10px 10px 4px 4px;
  padding: 10px 10px 0;
  box-shadow: var(--lp-shadow-lg);
}

.lp-laptop__screen-area {
  background: var(--lp-surface);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid #bcc6d0;
}

.lp-laptop__screen-mock {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f0f6fc 0%, #e8f1f8 100%);
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.lp-laptop__mock-header {
  height: 20px;
  background: var(--lp-surface);
  border-radius: 3px;
  border: 1px solid var(--lp-border);
  flex-shrink: 0;
}

.lp-laptop__mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .3rem;
  flex: 1;
}

.lp-laptop__mock-card {
  border-radius: 4px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}

.lp-laptop__base {
  height: 8px;
  background: linear-gradient(to bottom, #c0cad4, #b0bcc6);
  border-radius: 0 0 4px 4px;
  margin-inline: -10px;
}

.lp-laptop__foot {
  height: 5px;
  background: #a0aab4;
  border-radius: 0 0 6px 6px;
  margin-inline: 16px;
}

/* ── Sub-page hero (catalog / premium pages) ──────────────── */
.lp-sub-hero {
  padding-block: 9rem 5rem;
  text-align: center;
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
  position: relative;
  overflow: hidden;
}

.lp-sub-hero__glow {
  position: absolute;
  width: 600px;
  height: 350px;
  background: rgba(82, 191, 240, .1);
  border-radius: 50%;
  filter: blur(80px);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.lp-sub-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.lp-sub-hero__headline {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: var(--lp-text);
}

.lp-sub-hero__sub {
  font-size: 1.15rem;
  color: var(--lp-text-2);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 560px;
  margin-inline: auto;
}

.lp-sub-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ── Benefits ─────────────────────────────────────────────── */
.lp-benefits {
  padding-block: 5rem;
  border-top: 1px solid var(--lp-border);
}

.lp-benefits--light { background: var(--lp-bg); }
.lp-benefits--white { background: var(--lp-surface); }

.lp-benefits__inner { text-align: center; }

.lp-benefits__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.lp-benefit-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--lp-shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  text-align: left;
}

.lp-benefit-card__icon {
  font-size: 1.4rem;
  color: var(--lp-primary-deep);
  flex-shrink: 0;
  margin-top: .1rem;
}

.lp-benefit-card__text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1.5;
}

/* ── Comparison table ─────────────────────────────────────── */
.lp-comparison {
  padding-block: 5rem;
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
}

.lp-comparison__inner { text-align: center; }

.lp-comparison__table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
}

.lp-comparison__table {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--lp-surface);
}

.lp-comparison__table th,
.lp-comparison__table td {
  padding: .9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--lp-border);
  color: var(--lp-text);
}

.lp-comparison__table tr:last-child th,
.lp-comparison__table tr:last-child td { border-bottom: none; }

.lp-comparison__table thead th {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--lp-bg);
  color: var(--lp-text-2);
}

.lp-comparison__table th:not(:first-child),
.lp-comparison__table td:not(:first-child) { text-align: center; }

.lp-comparison__table thead th.is-highlight {
  color: var(--lp-primary-deep);
  background: var(--lp-primary-dim);
}

.lp-check {
  color: var(--lp-primary-deep);
  font-size: 1.2rem;
  display: inline-block;
}
.lp-dash {
  color: var(--lp-text-2);
  display: inline-block;
}

/* ── Contact section ──────────────────────────────────────── */
.lp-contact {
  padding-block: 6rem;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
}

.lp-contact__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.lp-contact__copy {
  flex: 0 0 42%;
  max-width: 42%;
}

.lp-contact__title {
  margin-bottom: .75rem;
}

.lp-contact__desc {
  font-size: 1.05rem;
  color: var(--lp-text-2);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.lp-contact__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.lp-contact__location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-text-2);
}
.lp-contact__location .material-symbols-rounded {
  font-size: 1.1rem;
  color: var(--lp-primary-deep);
}

.lp-contact__map {
  flex: 1;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  min-height: 380px;
}
.lp-contact__map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

@media (max-width: 900px) {
  .lp-contact__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .lp-contact__copy {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
}

/* ── Sticky WhatsApp button ───────────────────────────────── */
.lp-wa-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  transition: transform var(--lp-transition), box-shadow var(--lp-transition);
  text-decoration: none;
  will-change: transform;
}
.lp-wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.lp-wa-sticky svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .lp-wa-sticky {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

/* ════════════════════════════════════════════════════════════
   Global dark header + footer (all landing pages)
   ════════════════════════════════════════════════════════════ */

/* ── Dark header ─────────────────────────────────────────── */
.lp-body .lp-header {
  background: rgba(15, 23, 32, .96);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.lp-body .lp-header.is-scrolled {
  background: rgba(15, 23, 32, .99);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}
.lp-body .lp-header__logo-text { color: #ffffff; }
.lp-body .lp-header__logo-img  { filter: brightness(0) invert(1); }
.lp-body .lp-header__nav-link  { color: rgba(255, 255, 255, .65); }
.lp-body .lp-header__nav-link:hover { color: #ffffff; }
.lp-body .lp-header__nav-link.is-active { color: var(--lp-primary); }
.lp-body .lp-header__burger { border-color: rgba(255, 255, 255, .2); }
.lp-body .lp-header__burger:hover { border-color: var(--lp-primary); }
.lp-body .lp-header__burger span { background: #ffffff; }
.lp-body .lp-header__mobile-nav {
  background: rgba(15, 23, 32, .99);
  border-top-color: rgba(255, 255, 255, .08);
}
.lp-body .lp-header__mobile-link { color: rgba(255, 255, 255, .65); }
.lp-body .lp-header__mobile-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
}
.lp-body .lp-header__mobile-link.is-active { color: var(--lp-primary); }

/* ── Dark footer ─────────────────────────────────────────── */
.lp-body .lp-footer {
  background: #0f1720;
  border-top-color: rgba(255, 255, 255, .08);
}
.lp-body .lp-footer__inner {
  border-bottom-color: rgba(255, 255, 255, .07);
}
.lp-body .lp-footer__brand-name,
.lp-body .lp-footer__brand-logo { color: #ffffff; }
.lp-body .lp-footer__desc,
.lp-body .lp-footer__location    { color: #9aa4af; }
.lp-body .lp-footer__location .material-symbols-rounded { color: var(--lp-primary); }
.lp-body .lp-footer__col-title   { color: rgba(255, 255, 255, .4); }
.lp-body .lp-footer__link        { color: #9aa4af; }
.lp-body .lp-footer__link:hover  { color: #ffffff; }
.lp-body .lp-footer__contact-link { color: #9aa4af; }
.lp-body .lp-footer__contact-link:hover { color: #ffffff; }
.lp-body .lp-footer__bottom { border-top-color: rgba(255, 255, 255, .07); }
.lp-body .lp-footer__copy,
.lp-body .lp-footer__made        { color: #9aa4af; }

/* ── Responsiveness: mockup sections ─────────────────────── */
.lp-mockup-section { overflow: hidden; }

@media (max-width: 768px) {
  .lp-mockup-section__inner,
  .lp-mockup-section__inner--reversed {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
  .lp-mockup-section__copy {
    width: 100%;
    padding-inline: 0;
  }
  .lp-mockup-section__copy .lp-btn {
    display: inline-flex;
    align-self: center;
  }
  .lp-mockup-section__visual {
    flex: unset;
    max-width: 420px;
    width: 100%;
  }
  /* Ensure the laptop mockup doesn't overflow on narrow screens */
  .lp-laptop {
    max-width: 100%;
    width: 100%;
  }
  /* Phone mockup max-width on mobile */
  .lp-phone {
    max-width: 280px;
    width: 100%;
  }
}

/* ── Dark: How it works ──────────────────────────────────── */
.lp-how--dark {
  background: #0f1720;
  border-top-color: rgba(255, 255, 255, .07);
}
.lp-how--dark .lp-eyebrow { color: var(--lp-primary); }
.lp-how--dark .lp-section-title { color: #ffffff; }
.lp-how--dark .lp-how__step-title { color: #ffffff; }
.lp-how--dark .lp-how__step-desc  { color: rgba(255, 255, 255, .6); }
.lp-how--dark .lp-how__icon-wrap {
  background: rgba(82, 191, 240, .12);
  border-color: rgba(82, 191, 240, .22);
}
.lp-how--dark .lp-how__icon { color: var(--lp-primary); }
.lp-how--dark .lp-how__step-num {
  background: var(--lp-primary-deep);
  color: #0b0f14;
}
@media (min-width: 768px) {
  .lp-how--dark .lp-how__step:not(:last-child)::after {
    background: linear-gradient(to right, rgba(82, 191, 240, .3), rgba(82, 191, 240, .05));
  }
}

/* ── Dark: CTA Final ─────────────────────────────────────── */
.lp-cta-final--dark {
  background: #0f1720;
  border-top-color: rgba(255, 255, 255, .07);
}
.lp-cta-final--dark .lp-cta-final__headline { color: #ffffff; }
.lp-cta-final--dark .lp-cta-final__sub      { color: rgba(255, 255, 255, .65); }
.lp-cta-final--dark .lp-cta-final__glow {
  background: rgba(82, 191, 240, .18);
}

/* ── Dark: Comparison ────────────────────────────────────── */
.lp-comparison--dark {
  background: #0f1720;
  border-top-color: rgba(255, 255, 255, .07);
}
.lp-comparison--dark .lp-eyebrow { color: var(--lp-primary); }
.lp-comparison--dark .lp-section-title { color: #ffffff; }
.lp-comparison--dark .lp-comparison__table-wrap {
  border-color: rgba(255, 255, 255, .1);
}
.lp-comparison--dark .lp-comparison__table {
  background: #141e2b;
}
.lp-comparison--dark .lp-comparison__table th,
.lp-comparison--dark .lp-comparison__table td {
  border-bottom-color: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .85);
}
.lp-comparison--dark .lp-comparison__table thead th {
  background: #0a1219;
  color: rgba(255, 255, 255, .5);
}
.lp-comparison--dark .lp-comparison__table thead th.is-highlight {
  background: rgba(82, 191, 240, .14);
  color: var(--lp-primary);
}
.lp-comparison--dark .lp-check { color: var(--lp-primary); }
.lp-comparison--dark .lp-dash  { color: rgba(255, 255, 255, .3); }
