:root{
  --bg:#ffffff;
  --ink:#171717;
  --muted:#6b6b6b;
  --line:#ececec;

  /* 🔥 Verde marca refinado */
  --accent:#0F3B2A;       /* verde profundo principal */
  --accent-ink:#ffffff;

  --shadow: 0 18px 60px rgba(0,0,0,.08);

  --serif:"Playfair Display", serif;
  --sans:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-snap-type: y proximity;
}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }

/* Cada sección “engancha” arriba (snap) */
section{ scroll-snap-align: start; scroll-snap-stop: normal; }

/* ===================== NAV ===================== */
.nav{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  padding:18px 0;
  background: rgba(255,255,255,0);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding:12px 0;
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}

/* Logo switch */
.brand{
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  transition: width .25s ease, height .25s ease;
}
.nav.scrolled .brand{
  height: 52px;
}

.brand .logo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease;
}
.brand .logo-white{ opacity: 1; }
.brand .logo-dark{ opacity: 0; }
.nav.scrolled .logo-white{ opacity: 0; }
.nav.scrolled .logo-dark{ opacity: 1; }
@media (max-width: 720px){
  .brand{ width: 140px; height: 50px; }
}

/* Links */
.links{
  display:flex; align-items:center; gap:18px;
}
.links a{
  font-size:13px;
  font-weight: bold;
  color: rgba(23,23,23,.78);
  padding:8px 10px;
  border-radius:999px;
  transition: background .2s ease;
  white-space:nowrap;
}
.nav:not(.scrolled) .links a{ color: rgba(255,255,255,.92); }
.links a:hover{ background: rgba(0,0,0,.05); }
.nav:not(.scrolled) .links a:hover{ background: rgba(255,255,255,.16); }

/* Botón nav */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.85);
  color:white;
  font-size:13px;
  letter-spacing:.02em;
  background: rgba(255,255,255,.0);
  white-space:nowrap;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .25s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }

.nav.scrolled .btn{
  border-color: rgba(23,23,23,.20);
  color: var(--ink);
}
.nav.scrolled .btn:hover{ background: rgba(0,0,0,.05); }

/* Hover verde WhatsApp nav */
#ctaNav:hover{
  background: #1F8A70;
  border-color: #1F8A70;
  color: rgb(255, 255, 255);
}

/* ===================== HAMBURGER + MOBILE MENU ===================== */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  cursor:pointer;
  place-items:center;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.nav.scrolled .burger{
  border-color: rgba(23,23,23,.18);
  background: rgba(0,0,0,.04);
}
.burger:hover{ transform: translateY(-1px); }
.burger span{
  display:block;
  width:18px;
  height:2px;
  border-radius:99px;
  background: rgba(255,255,255,.92);
  margin:3px 0;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.nav.scrolled .burger span{ background: rgba(23,23,23,.85); }
.burger.open span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

.mobile-menu{
  position:fixed;
  top:72px;
  left:50%;
  transform: translateX(-50%);
  width:min(520px, calc(100% - 24px));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 30px 90px rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 10px;
  z-index:60;
  display:none;
}
.mobile-menu.open{ display:block; }

.mobile-menu a{
  display:flex;
  padding:14px 14px;
  border-radius: 14px;
  font-size:14px;
  color: rgba(23,23,23,.88);
  align-items:center;
  justify-content:space-between;
}
.mobile-menu a:hover{ background: rgba(0,0,0,.04); }
.mobile-menu .wa-btn{
  margin-top:8px;
  display:flex;
  justify-content:center;
  padding:14px 16px;
  border-radius: 14px;
  border:1px solid rgba(15,59,42,.55);
  background: rgba(14, 97, 65, 0.445);
  color: var(--accent-ink);
  font-weight:500;
}
.mobile-menu .wa-btn:hover{ background: rgba(10, 136, 88, 0.733); }

/* ===================== HERO ===================== */
.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.hero-bg{
  position:absolute;
  inset:-60px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45)),
    url("assets/5.webp");
  background-size:cover;
  background-position:center;
  transform: translate3d(0,0,0) scale(1.12);
  will-change: transform;
}
.hero-content{
  position:relative;
  text-align:center;
  padding: 0 16px;
  color:white;
  max-width: 860px;
  z-index:3;
}

/* Logo en hero */
.hero-logo{
  display:block;
  margin:0 auto 18px;
  width: min(500px, 75vw);
  height:auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.35));
}
@media (max-width: 720px){
  .hero-logo{ width: min(520px, 90vw); }
}

.hero p{
  margin:0 auto 22px;
  font-size:16px;
  max-width: 60ch;
  color: rgba(255,255,255,.90);
  text-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}
.btn-solid{
  border-color: transparent;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.btn-solid:hover{ background: white; }
.btn-outline{ border-color: rgba(255,255,255,.70); }

/* Flecha down */
.down{
  position:absolute;
  left:50%;
  bottom:78px;
  transform:translateX(-50%);
  background: transparent;
  border: 0;
  padding: 10px;
  cursor:pointer;
  z-index:6;
  opacity:.95;
  transition: transform .15s ease, opacity .2s ease;
}
.down:hover{
  transform:translateX(-50%) translateY(-2px);
  opacity:1;
}
.down-icon{
  width:34px;
  height:34px;
  fill:none;
  stroke: rgba(255,255,255,.95);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}

/* ===================== WAVES (global) ===================== */
.wave{
  position:absolute;
  left:0; right:0;
  height:140px;
  pointer-events:none;
  z-index:2;
}
.wave.bottom{ bottom:-1px; }
.wave svg{ width:100%; height:100%; display:block; }
.wave .fill{ fill:#ffffff; }
.wave .fill-alt{ fill:#f7f6f3; }

/* ===== PARALLAX (IMG + overlay + waves) ===== */
.parallax-section{
  position: relative;
  overflow: hidden;            /* recorta imagen/overlay dentro del bloque */
  padding: 0;                  /* IMPORTANTE: evita padding global de section */
}

/* WAVES */
.parallax-section .wave{
  position: absolute;
  left: 0; right: 0;
  height: 160px;               /* grosor de ola */
  pointer-events: none;
  z-index: 5;                  /* arriba de overlay */
}

.parallax-section .wave.top{
  top: -1px;
  transform: rotate(180deg);
}

.parallax-section .wave.bottom{
  bottom: -1px;
}

.parallax-section .wave svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* si tu .fill está pisada por otra regla, esto lo arregla */
.parallax-section .wave path{
  fill: #fff;
}

/* CONTENEDOR */
.parallax-media{
  position: relative;
  min-height: 620px;           /* un poquito más alto para que “respire” */
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;                  /* debajo de waves */
}

/* IMAGEN (la mueve el JS) */
.parallax-img{
  position: absolute;
  inset: -120px;                /* más margen => podés mover más sin ver bordes */
  width: calc(100% + 240px);
  height: calc(100% + 240px);
  object-fit: cover;
  transform: translate3d(0,0,0) scale(1.12);
  will-change: transform;
  z-index: 1;
}

/* OVERLAY (mismo tamaño visible que la imagen porque está en parallax-media) */
.parallax-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
  z-index: 2;                  /* arriba de imagen, abajo de contenido */
}

/* CONTENIDO */
.parallax-content{
  position: relative;
  z-index: 3;                  /* arriba del overlay */
  max-width: 820px;
  padding: 120px 16px;         /* 16px para que no corte en mobile */
}

.parallax-icon{
  font-size: 32px;
  color: white;
  margin-bottom: 16px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
}

.parallax-content p{
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.8;
  text-shadow: 0 12px 40px rgba(0,0,0,.35);
}
/* ===================== SECTIONS ===================== */
.section-waved{ padding-bottom:120px; }
.section-after-wave{ padding-top:50px; }

section{ padding: 84px 0; position:relative; }

.section-head{
  text-align:center;
  margin-bottom: 38px;
}
.section-head h2{
  font-family:var(--serif);
  font-size:44px;
  margin:0 0 10px;
}
.section-head p{
  margin:0 auto;
  max-width: 70ch;
  color: var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* ===================== INTRO ===================== */
.intro{
  background: #fff;
  padding: 50px 0 20px;
}
.intro-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items:center;
}
.intro-text h2{
  font-family: var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: rgba(23,23,23,.92);
}
.intro-text p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 58ch;
}
.pill-cta{
  margin-top: 18px;
  border-color: rgba(15,59,42,.9);
  background: transparent;
}
.intro-media{
  display:flex;
  justify-content:center;
  align-items:center;
}
.intro-mockup{
  width: min(520px, 92%);
  height: auto;
  filter: drop-shadow(0 26px 70px rgba(0,0,0,.20));
  transform: translateY(6px);
}
@media (max-width: 980px){
  .intro{ padding: 80px 0 70px; }
  .intro-grid{
    grid-template-columns: 1fr;
    gap: 34px;
    text-align:center;
  }
  .intro-text p{
    margin-left:auto;
    margin-right:auto;
  }
  .intro-media{ order: 2; }
}

/* ===================== FEATURES ===================== */
.features{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.feature{ text-align:center; padding: 18px 14px; }

/* icon base + override para emojis */
.icon{
  margin-bottom: 12px;
}

.icon img{
  width: 48px;   /* ajustá tamaño */
  height: auto;
  display: block;
}
.features .icon{ font-size:20px; }

.feature b{
  display:block;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:6px;
  color: rgba(23,23,23,.80);
}
.feature span{
  font-size:13px;
  color: var(--muted);
  line-height:1.6;
}

/* Funcionalidades PRO */
.features-8{
  grid-template-columns: repeat(5, 1fr);
}
.extras{
  margin-top: 34px;
  padding: 22px 18px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  background: rgba(247,246,243,.6);
}
.extras-head{
  text-align:center;
  margin-bottom: 12px;
}
.extras h3{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
}
.extras p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.extras-chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 14px;
}
.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,59,42,.35);
  background: rgba(15,59,42,.40);
  color: var(--accent-ink);
  font-size: 13px;
  white-space: nowrap;
}

/* ===================== MODELS ===================== */
.models{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items:start;
  padding-bottom: 80px;
}
.model{ text-align:center; }
.card{
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow)  transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover{
  transform: translateY(-4px);
}
.thumb{
  aspect-ratio: 10 / 12;
  background-size: cover;
  background-position:center;
  position:relative;
}
.thumb::after{
  content:"";
  position:absolute; inset:0;
  opacity:.9;
  pointer-events:none;
}
.model h3{ margin: 14px 0 6px; font-weight:500; color: rgba(23,23,23,.80); }
.model p{ margin: 0 0 14px; color: var(--muted); font-size:13px; line-height:1.6; padding: 0 10px; }

.pill{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(15,59,42,.55);
  color: var(--accent-ink);
  font-size:13px;
  transition: transform .15s ease, background .2s ease;
  background: rgba(15,59,42,.08);
}
.pill:hover{ transform: translateY(-1px); background: rgba(15,59,42,.14); }

/* ===================== CTA BANNER ===================== */
.banner{
  background:
    linear-gradient(
      180deg,
      #D9E9E2 0px,
      #D9E9E2 160px,
      rgba(217,233,226,0) 230px
    ),
    radial-gradient(900px 600px at 20% 30%, rgba(31,169,122,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 60%, rgba(31,169,122,.14), transparent 60%),
    #D9E9E2;

  border-top:1px solid rgba(0,0,0,.05);
  border-bottom:1px solid rgba(0,0,0,.05);

  padding:50px 0 90px;
  text-align:center;
}
.banner h2{ font-size:46px; margin:0 0 10px; font-family:var(--serif); }
.banner p{ margin:0 auto 18px; max-width: 70ch; color: var(--muted); font-size:14px; line-height:1.7; }
.banner .pill{ background:white; }

.wave-beige{
  fill: #EEF7F2;                 /* mint suave (reemplaza beige) */
  stroke: rgba(31,169,122,.28);  /* borde apenas más oscuro */
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

/* ===== Banner info (2 columnas: contacto + redes) ===== */
.banner-info{
  margin: 34px auto 0;        /* 👈 auto centra */
  max-width: 920px;           /* 👈 evita que quede “abierto” */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
  align-items: start;
}

/* Títulos dentro del banner */
.banner-info h3{
  margin: 0 0 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  color: rgba(23,23,23,.88);
}

/* Texto */
.banner-info p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 62ch;
}

/* Lista de items */
.info-list{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

/* Item */
.info-item{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(23,23,23,.78);
  font-size: 14px;
  transition: transform .15s ease, color .2s ease;
}

.info-item:hover{
  transform: translateY(-1px);
  color: var(--accent-ink);
}

/* Icono redondito */
.info-ico{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15,59,42,.25);
  background: rgba(15,59,42,.10);
  flex: 0 0 auto;
}

.info-ico svg{
  width: 18px;
  height: 18px;
  stroke: rgba(23,23,23,.75);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item:hover .info-ico svg{
  stroke: var(--accent-ink);
}

/* Responsive */
@media (max-width: 980px){
  .banner-info{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align:center;
  }
  .info-item{
    justify-content:center;
  }
}

/* ===================== FOOTER ===================== */
footer{
  padding: 28px 0;
  background:#111;
  color: rgba(255,255,255,.82);
  text-align:center;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Floating WA */
.wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px; height:56px;
  border-radius:999px;
  background:#1F8A70;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  display:grid;
  place-items:center;
  z-index:60;
}
.wa svg{ width:26px; height:26px; fill:white; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .features{ grid-template-columns: repeat(2, 1fr); }
  .features-8{ grid-template-columns: repeat(2, 1fr); }
  .models{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .links{ display:none; }
  .burger{ display:grid; }
}
@media (max-width: 640px){
  .features-8{ grid-template-columns: 1fr; }
}

/* Botones principales más visibles */
.pill,
.pill-cta{
  border-color: rgba(15,59,42,.55);
  background: rgba(15,59,42,.08);
  color: var(--accent);
}

.pill:hover,
.pill-cta:hover{
  background: rgba(15,59,42,.18);
  border-color: rgba(15,59,42,.75);
}
/* ✅ Fondo de la caja "Extras" (si la notás muy beige) */
.extras{
  background: rgba(238,247,242,.65);
  border-color: rgba(31,169,122,.12);
}

.wave-fill{ fill:#D9E9E2; }
.wave-stroke{
  fill:none;
  stroke: rgba(31,169,122,.25);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

#intro{
  scroll-margin-top: 70px; /* ajustá según altura real del nav */
}

#modelos{
  scroll-margin-top: 70px; /* ajustá según altura real del nav */
}

.parallax-icon img{
  width: 60px;   /* ajustá tamaño */
  height: auto;
  opacity: 0.9;
}

.parallax-icon{
  animation: float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.icon img{
  width: 38px;   /* tamaño ideal elegante */
  height: auto;
  display: block;
}

.icon img{
  width: 58px;
  opacity: .9;
}

.feature{
  text-align: center;
}

.feature{
  text-align: center;
}

.icon{
  display:flex;
  justify-content:center;
}

/* ===================== PLANS ===================== */

.plans{
  padding: 80px 0 120px;
}

.plans-table{
  margin-top:40px;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}

.plan-row{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom:1px solid var(--line);
}

.plan-row:nth-child(even){
  background: rgba(15,59,42,.04);
}

.plan-row:nth-child(even):not(.plan-head):not(.plan-price){
  background: rgba(15,59,42,.04);
}

.plan-row:hover{
  background: rgba(15,59,42,.08);
}

.plan-row:nth-child(even):hover{
  background: rgba(15,59,42,.08);
}

.plan-row div{
  padding:16px 18px;
  font-size:14px;
  text-align:center;
}

.plan-row div:first-child{
  text-align:left;
  color:var(--muted);
}

.plan-head{
  background:#fafafa;
  font-weight:600;
}

.plan-head div{
  font-family:var(--serif);
  font-size:18px;
  color:var(--ink);
}

.plan-price{
  background:rgba(15,59,42,.06);
  font-weight:600;
}

.plan-price div{
  font-size:16px;
  color:var(--accent);
}

.plan-row:last-child{
  border-bottom:none;
}

/* responsive */

@media (max-width:800px){

  .plans-table{
    overflow-x:auto;
  }

  .plan-row{
    min-width:600px;
  }

}

.plan-head div{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.plan-kicker{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.plan-kicker-highlight{
  color:var(--accent);
  font-weight:600;
}

.plan-name{
  font-family:var(--serif);
  font-size:18px;
  color:var(--ink);
}

.plan-badge {
  font-size: 12px;
}

.plan-badge-name {
  font-size: 22px;
}
/* columna Momento destacada */
.plan-row div:nth-child(3){
  background: rgba(37, 145, 104, 0.301);
}

.plan-head div:nth-child(3){
  background: rgba(30, 126, 89, 0.308);
  color: var(--accent);
  font-weight:600;
}

.plans-cta{
  text-align:center;
  margin-top:40px;
}

.plans-cta p{
  margin:0 0 12px;
  font-size:14px;
  color:var(--muted);
}

.plans-mobile{
  display:none;
}

.plan-mobile-card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 18px;
  background:#fff;
}

.plan-mobile-card + .plan-mobile-card{
  margin-top:16px;
}

.plan-mobile-card.featured{
  background:rgba(15,59,42,.08);
  border-color:rgba(15,59,42,.18);
}

.plan-mobile-head{
  text-align:center;
  margin-bottom:16px;
}

.plan-mobile-kicker{
  display:block;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:6px;
}

.plan-mobile-kicker.highlight{
  color:var(--accent);
  font-weight:600;
}

.plan-mobile-head h3{
  margin:0;
  font-family:var(--serif);
  font-size:30px;
}

.plan-mobile-price{
  margin:8px 0 0;
  color:var(--accent);
  font-weight:600;
  font-size:15px;
}

.plan-mobile-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.plan-mobile-list li{
  font-size:14px;
  color:var(--ink);
  line-height:1.5;
  padding-left:22px;
  position:relative;
}

.plan-mobile-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:600;
}

@media (max-width: 820px){
  .plans-table{
    display:none;
  }

  .plans-mobile{
    display:block;
    margin-top:32px;
  }
}


.panel-preview {
  padding: 120px 0;
  background: #f6f4ef;
}

.panel-preview__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.panel-text {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel-preview h2 {
  margin: 0 0 18px;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2.8rem, 2.29vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #171717;
}

.panel-preview p {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #6a655f;
  max-width: 40ch;
}

.panel-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}

.panel-features span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 59, 42, 0.05);
  border: 1px solid rgba(15, 59, 42, 0.08);
  font-size: 0.92rem;
  color: #2f2c29;
  white-space: nowrap;
}

.panel-image {
  width: 100%;
  max-width: 920px;
  margin-bottom: 34px;
}

.panel-image img {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}

.panel-preview .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 54px;
  background: #187753;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 26px rgba(15, 59, 42, 0.12);
}

.panel-preview .btn-primary:hover {
  transform: translateY(-2px);
  background: #124632;
  box-shadow: 0 14px 32px rgba(15, 59, 42, 0.16);
}

@media (max-width: 768px) {
  .panel-preview {
    padding: 72px 0;
  }

  .panel-preview h2 {
    font-size: 2.625rem;
    line-height: 0.96;
    margin-bottom: 14px;
  }

  .panel-preview p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 30ch;
  }

  .panel-features {
    gap: 8px;
    margin-bottom: 28px;
  }

  .panel-features span {
    font-size: 0.88rem;
    min-height: 34px;
    padding: 0 12px;
  }

  .panel-image {
    margin-bottom: 24px;
  }

  .panel-image img {
    border-radius: 16px;
  }

  .panel-preview .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.panel-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  transition: .2s ease;
}

.panel-login-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 110, 6, 0.534)!important;
} 