/* Talejo landing — estilos propios (no pisan la tienda) */
:root {
  --bg: #000000;
  --bg-soft: #0a0d14;
  --bg-card: #0f131c;
  --bg-card-2: #141a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --muted: #9aa4b2;
  --muted-2: #6b7480;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: #4f8dff;
  --blue-dark: #1d4ed8;
  --gold: #f5b301;
  --green: #22c55e;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-blue: 0 12px 40px rgba(37, 99, 235, 0.45);
  --max: 1200px;
}

.landing-page * { margin: 0; padding: 0; box-sizing: border-box; }
.landing-page { scroll-behavior: smooth; }
.landing-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.landing-page a { color: inherit; text-decoration: none; }
.landing-page img { max-width: 100%; display: block; }
.landing-page ul { list-style: none; }
.landing-page section { position: relative; }

.landing-page::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.landing-page .container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

.landing-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.landing-page .btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.landing-page .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 46px rgba(37,99,235,.6); }
.landing-page .btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid var(--border-strong);
}
.landing-page .btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.landing-page .btn-lg { padding: 16px 34px; font-size: 16px; }
.landing-page .btn-block { width: 100%; justify-content: center; }

.landing-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 7px 15px;
  border-radius: 999px;
}
.landing-page .section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.landing-page .section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 18px 0 14px;
  letter-spacing: -0.02em;
}
.landing-page .section-head p { color: var(--muted); font-size: 17px; }
.landing-page .grad-text {
  background: linear-gradient(120deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-page .section-pad { padding: 92px 0; }

.landing-page header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.landing-page .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.landing-page .logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 21px; letter-spacing: -0.02em; }
.landing-page .logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: 11px;
  box-shadow: var(--shadow-blue);
  font-size: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.landing-page .logo-mark--img { background: #0f131c; padding: 4px; }
.landing-page .logo-mark--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.landing-page .logo span { color: var(--blue-glow); }
.landing-page .nav-links { display: flex; align-items: center; gap: 30px; }
.landing-page .nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.landing-page .nav-links a:hover { color: #fff; }
.landing-page .nav-menu-actions { display: none; }
.landing-page .nav-cta { display: flex; align-items: center; gap: 14px; }
.landing-page .nav-cta-desktop { display: flex; align-items: center; gap: 14px; }
.landing-page .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; padding: 4px; line-height: 1; }

.landing-page .hero { padding: 70px 0 60px; overflow: hidden; }
.landing-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.landing-page .hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}
.landing-page .hero p.lead { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.landing-page .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.landing-page .hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.landing-page .hero-stats .stat strong { display: block; font-size: 28px; font-weight: 800; }
.landing-page .hero-stats .stat span { color: var(--muted); font-size: 14px; }

.landing-page .hero-art { position: relative; height: 460px; }
.landing-page .float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  animation: landing-floaty 6s ease-in-out infinite;
  backdrop-filter: blur(8px);
}
.landing-page .float-card .p-logo { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 20px; flex-shrink: 0; }
.landing-page .float-card .p-meta strong { display: block; font-size: 15px; }
.landing-page .float-card .p-meta span { color: var(--muted); font-size: 13px; }
.landing-page .fc1 { top: 10px; left: 0; animation-delay: 0s; }
.landing-page .fc2 { top: 120px; right: 10px; animation-delay: 1.2s; }
.landing-page .fc3 { top: 235px; left: 30px; animation-delay: 2.4s; }
.landing-page .fc4 { top: 350px; right: 40px; animation-delay: 1.8s; }
@keyframes landing-floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.landing-page .hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(37,99,235,.28), transparent 55%);
  filter: blur(20px);
  z-index: -1;
}

.landing-page .b-netflix { background: #e50914; color:#fff; }
.landing-page .b-disney  { background: #0c2461; color:#fff; }
.landing-page .b-prime   { background: #00a8e1; color:#001b2e; }
.landing-page .b-max     { background: linear-gradient(135deg,#7b2ff7,#4a1fb8); color:#fff; }
.landing-page .b-spotify { background: #1db954; color:#00160b; }
.landing-page .b-yt      { background: #ff0000; color:#fff; }
.landing-page .b-apple   { background: #ffffff; color:#000; }
.landing-page .b-paramount { background: #0064ff; color:#fff; }
.landing-page .b-star    { background: #000; color:#fff; border:1px solid #333; }
.landing-page .b-crunchy { background: #f47521; color:#000; }

.landing-page .marquee-wrap { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg-soft); }
.landing-page .marquee { display: flex; gap: 60px; width: max-content; animation: landing-scroll 26s linear infinite; }
.landing-page .marquee:hover { animation-play-state: paused; }
.landing-page .marquee .m-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; font-size: 18px; white-space: nowrap; }
.landing-page .marquee .dot { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; font-weight: 800; }
.landing-page .marquee .dot.landing-brand-img { object-fit: cover; padding: 0; }
.landing-page .marquee .m-item { display: flex; align-items: center; gap: 10px; }
@keyframes landing-scroll { to { transform: translateX(-50%); } }

.landing-page .plat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.landing-page .plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: transform .2s, border-color .2s, background .2s;
}
.landing-page .plat-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.5); background: var(--bg-card-2); }
.landing-page .plat-card .p-logo { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; font-weight: 800; font-size: 24px; margin: 0 auto 14px; }
.landing-page .plat-card strong { display: block; font-size: 15px; }
.landing-page .plat-card span { color: var(--muted); font-size: 13px; }

.landing-page .slider { position: relative; max-width: 980px; margin: 0 auto; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.landing-page .slides { display: flex; transition: transform .6s cubic-bezier(.65,.05,.36,1); }
.landing-page .slide { min-width: 100%; position: relative; }
.landing-page .slide-inner {
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  position: relative;
}
.landing-page .slide-inner::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.85)); z-index:1; }
.landing-page .slide-tag { position: relative; z-index:2; align-self: flex-start; background: var(--gold); color:#000; font-weight:800; font-size:12px; padding:6px 14px; border-radius:999px; margin-bottom:14px; text-transform: uppercase; letter-spacing:.5px; }
.landing-page .slide-inner h3 { position: relative; z-index:2; font-size: clamp(24px,3.4vw,38px); font-weight:800; margin-bottom:10px; letter-spacing:-.02em; }
.landing-page .slide-inner p { position: relative; z-index:2; color:#d5dae2; max-width:520px; margin-bottom:20px; }
.landing-page .slide-inner .btn { position: relative; z-index:2; align-self:flex-start; }
.landing-page .s1 { background: linear-gradient(135deg,#3a0c0c,#e50914 140%), radial-gradient(circle at 30% 30%, rgba(229,9,20,.6), transparent); }
.landing-page .s2 { background: linear-gradient(135deg,#041236,#0c2461 130%); }
.landing-page .s3 { background: linear-gradient(135deg,#2b0a45,#7b2ff7 150%); }
.landing-page .s4 { background: linear-gradient(135deg,#04241a,#1db954 150%); }
.landing-page .slide-emoji { position:absolute; right:40px; top:40px; font-size:120px; opacity:.16; z-index:1; }

.landing-page .slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid var(--border-strong);
  color: #fff; font-size: 22px; cursor: pointer; z-index: 5;
  display: grid; place-items: center; backdrop-filter: blur(6px);
  transition: background .2s;
}
.landing-page .slider-btn:hover { background: var(--blue); }
.landing-page .slider-btn.prev { left: 18px; }
.landing-page .slider-btn.next { right: 18px; }
.landing-page .dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.landing-page .dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); cursor: pointer; transition: all .3s; }
.landing-page .dots button.active { background: var(--blue-light); width: 30px; border-radius: 999px; }

.landing-page .toggle-wrap { display:flex; justify-content:center; align-items:center; gap:14px; margin-bottom:44px; }
.landing-page .toggle-wrap span { color: var(--muted); font-weight:600; font-size:15px; }
.landing-page .toggle-wrap span.active { color:#fff; }
.landing-page .switch { width: 56px; height: 30px; background: var(--bg-card-2); border:1px solid var(--border-strong); border-radius:999px; position:relative; cursor:pointer; transition: background .2s; }
.landing-page .switch::after { content:""; position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:50%; background: var(--blue-light); transition: transform .25s; }
.landing-page .switch.on::after { transform: translateX(26px); }
.landing-page .save-badge { background: rgba(34,197,94,.15); color: var(--green); font-size:12px; font-weight:700; padding:4px 10px; border-radius:999px; }

.landing-page .plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.landing-page .plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
  position: relative;
}
.landing-page .plan:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.landing-page .plan.featured { border-color: var(--blue); background: linear-gradient(180deg, rgba(37,99,235,.12), var(--bg-card)); box-shadow: 0 0 0 1px rgba(37,99,235,.4), var(--shadow-blue); }
.landing-page .plan-tag { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: linear-gradient(135deg,var(--blue-light),var(--blue-dark)); font-size:12px; font-weight:700; padding:6px 16px; border-radius:999px; box-shadow: var(--shadow-blue); }
.landing-page .plan .p-screens { display:flex; align-items:center; gap:8px; font-size:14px; color: var(--blue-glow); font-weight:700; margin-bottom:8px; }
.landing-page .plan h3 { font-size:20px; font-weight:800; margin-bottom:6px; }
.landing-page .plan .price { font-size:40px; font-weight:900; letter-spacing:-.03em; margin: 12px 0 2px; }
.landing-page .plan .price small { font-size:15px; color: var(--muted); font-weight:600; }
.landing-page .plan .price-note { color: var(--muted); font-size:13px; margin-bottom:22px; }
.landing-page .plan ul { display:flex; flex-direction:column; gap:12px; margin-bottom:26px; flex:1; }
.landing-page .plan ul li { display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:#d5dae2; }
.landing-page .plan ul li .check { color: var(--green); font-weight:800; flex-shrink:0; }
.landing-page .plan ul li.off { color: var(--muted-2); }
.landing-page .plan ul li.off .check { color: var(--muted-2); }

.landing-page .feat-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.landing-page .feat {
  background: var(--bg-card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s, border-color .2s;
}
.landing-page .feat:hover { transform: translateY(-5px); border-color: rgba(37,99,235,.4); }
.landing-page .feat .f-ico { width:52px; height:52px; border-radius:14px; background: rgba(37,99,235,.15); border:1px solid rgba(37,99,235,.3); display:grid; place-items:center; font-size:24px; margin-bottom:16px; }
.landing-page .feat h3 { font-size:18px; font-weight:700; margin-bottom:8px; }
.landing-page .feat p { color: var(--muted); font-size:15px; }

.landing-page .reviews-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.landing-page .review {
  background: var(--bg-card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display:flex; flex-direction:column; gap:14px;
  transition: transform .2s, border-color .2s;
}
.landing-page .review:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.landing-page .stars { color: var(--gold); font-size:16px; letter-spacing:2px; }
.landing-page .review p { color:#d5dae2; font-size:15px; flex:1; }
.landing-page .reviewer { display:flex; align-items:center; gap:12px; }
.landing-page .avatar { width:44px; height:44px; border-radius:50%; display:grid; place-items:center; font-weight:800; color:#fff; font-size:16px; }
.landing-page .reviewer strong { display:block; font-size:14.5px; }
.landing-page .reviewer span { color: var(--muted); font-size:13px; }
.landing-page .verified { margin-left:auto; color: var(--green); font-size:12px; font-weight:700; display:flex; align-items:center; gap:4px; }

.landing-page .rating-summary { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:44px; flex-wrap:wrap; }
.landing-page .rating-summary .big { font-size:44px; font-weight:900; }
.landing-page .rating-summary .stars { font-size:22px; }
.landing-page .rating-summary span { color: var(--muted); }

.landing-page .pay-wrap { display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:center; }
.landing-page .pay-methods { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; }
.landing-page .pay-intro h2 { font-size: clamp(26px,3.6vw,40px); font-weight:800; letter-spacing:-.02em; margin:16px 0 14px; line-height:1.15; }
.landing-page .pay-intro p { color: var(--muted); font-size:17px; margin-bottom:24px; }
.landing-page .pay-trust { display:flex; gap:22px; margin-top:26px; flex-wrap:wrap; }
.landing-page .pay-trust .t { display:flex; align-items:center; gap:8px; color:#d5dae2; font-size:14px; font-weight:600; }

.landing-page .wallet-box { background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(15,19,28,.9)); border:1px solid rgba(37,99,235,.35); border-radius: var(--radius); padding: 22px; margin-top: 16px; grid-column: 1 / -1; display:flex; align-items:center; gap:16px; }
.landing-page .wallet-box .w-ico { width:52px; height:52px; border-radius:14px; background: linear-gradient(135deg,var(--blue-light),var(--blue-dark)); display:grid; place-items:center; font-size:24px; flex-shrink:0; box-shadow: var(--shadow-blue); overflow:hidden; }
.landing-page .wallet-box__img { width:100%; height:100%; object-fit:cover; display:block; }
.landing-page .wallet-box strong { font-size:16px; }
.landing-page .wallet-box p { color: var(--muted); font-size:13.5px; }

.landing-page .wompi-banner {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.landing-page .wompi-banner img { margin: 0 auto; max-width: 720px; width: 100%; height: auto; }
.landing-page .wompi-fallback { display: none; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.landing-page .wompi-left { text-align: left; }
.landing-page .wompi-secure { display:flex; align-items:center; gap:8px; color:#7a8794; font-weight:800; font-size:15px; letter-spacing:.5px; margin-bottom:4px; }
.landing-page .wompi-word { font-size:54px; font-weight:900; color:#12365f; line-height:1; letter-spacing:-.02em; }
.landing-page .wompi-idea { color:#12365f; font-size:16px; margin-top:4px; }
.landing-page .wompi-idea b { color:#0b2846; }
.landing-page .wompi-cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.landing-page .wcard { background:#eef1f4; border:1px solid #e0e4e8; border-radius:8px; min-width:100px; height:56px; display:grid; place-items:center; font-weight:800; font-size:14px; color:#1a1f71; text-align:center; line-height:1.05; padding:0 8px; }
.landing-page .wcard.visa { color:#1a1f71; font-style:italic; font-size:22px; letter-spacing:1px; }
.landing-page .wcard.mc { color:#333; }
.landing-page .wcard.amex { background:#2e77bb; color:#fff; font-size:10px; letter-spacing:.5px; }
.landing-page .wcard.pse { color:#0a7cc4; }
.landing-page .wcard.nequi { color:#2b0a5e; }
.landing-page .wcard.banco { color:#12365f; font-size:12px; }

.landing-page .faq-list { max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.landing-page .faq-item { background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-sm); overflow:hidden; }
.landing-page .faq-q { width:100%; text-align:left; background:none; border:none; color:#fff; font-size:16px; font-weight:600; padding:20px 22px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:14px; }
.landing-page .faq-q .ico { color: var(--blue-glow); font-size:22px; transition: transform .25s; flex-shrink:0; }
.landing-page .faq-item.open .faq-q .ico { transform: rotate(45deg); }
.landing-page .faq-a { max-height:0; overflow:hidden; transition: max-height .3s ease; color: var(--muted); font-size:15px; }
.landing-page .faq-a p { padding: 0 22px 20px; }

.landing-page .cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), #0b1b45);
  border:1px solid rgba(37,99,235,.4);
  border-radius: 26px;
  padding: 54px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.landing-page .cta-banner::before { content:""; position:absolute; top:-50%; left:-10%; width:400px; height:400px; background: radial-gradient(circle, rgba(79,141,255,.4), transparent 60%); }
.landing-page .cta-banner h2 { font-size: clamp(28px,4vw,42px); font-weight:900; letter-spacing:-.02em; margin-bottom:14px; position:relative; }
.landing-page .cta-banner p { color:#d5e0f5; font-size:18px; margin-bottom:28px; position:relative; }
.landing-page .cta-banner .btn { position:relative; }

.landing-page .wa-float { position: fixed; bottom: 26px; right: 26px; width:60px; height:60px; border-radius:50%; background:#25d366; display:grid; place-items:center; font-size:30px; box-shadow: 0 10px 30px rgba(37,211,102,.5); z-index:90; transition: transform .2s; }
.landing-page .wa-float:hover { transform: scale(1.1); }

.landing-page .landing-brand-img { object-fit: cover; display: block; }
.landing-page .float-card .landing-brand-img { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; }
.landing-page .plat-card .landing-brand-img { width: 58px; height: 58px; border-radius: 15px; margin: 0 auto 14px; }
.landing-page .hero.hero--has-bg { background-size: cover; background-position: center; position: relative; }
.landing-page .hero.hero--has-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.35) 100%);
  z-index: 0;
}
.landing-page .hero.hero--has-bg .container { position: relative; z-index: 1; }
.landing-page .slide-inner.slide--has-image { background-size: cover !important; background-position: center !important; }

@media (max-width: 980px) {
  .landing-page .hero-grid { grid-template-columns: 1fr; }
  .landing-page .hero-art { display:none; }
  .landing-page .plat-grid { grid-template-columns: repeat(3,1fr); }
  .landing-page .plans { grid-template-columns: repeat(2,1fr); }
  .landing-page .feat-grid, .landing-page .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .landing-page .pay-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .landing-page .nav-links { display:none; }
  .landing-page .menu-toggle { display:block; }
  .landing-page .nav-cta-desktop { display: none; }
  .landing-page .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .landing-page .nav-links.open .nav-menu-actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .landing-page .nav-links.open .nav-menu-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 11px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
  .landing-page .plat-grid { grid-template-columns: repeat(2,1fr); }
  .landing-page .plans, .landing-page .feat-grid, .landing-page .reviews-grid, .landing-page .pay-methods { grid-template-columns: 1fr; }
  .landing-page .section-pad { padding: 64px 0; }
  .landing-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px;
    width: 100%;
  }
  .landing-page .hero-stats .stat {
    text-align: center;
    min-width: 0;
  }
  .landing-page .hero-stats .stat strong {
    font-size: clamp(20px, 5.5vw, 26px);
  }
  .landing-page .hero-stats .stat span {
    font-size: 11px;
    line-height: 1.35;
    display: block;
  }
  .landing-page .slide-inner { padding: 28px; height: 400px; }
}
