/* =========================================================================
   DevelShops — Landing
   Dirección: editorial cálido premium · papel crema + tinta + esmeralda + coral
   Display: Fraunces · Body: Hanken Grotesk
   ========================================================================= */

/* ----------------------------- Tokens ---------------------------------- */
:root {
  --paper:      #FBFAF5;
  --paper-2:    #F3EFE5;
  --paper-3:    #ECE6D7;
  --ink:        #17150F;
  --ink-soft:   #54504640;        /* used via color-mix fallbacks below */
  --ink-700:    #3C382F;
  --ink-500:    #6A6557;
  --ink-400:    #8C8675;

  --brand:      #0EA869;          /* esmeralda */
  --brand-600:  #0B8E58;
  --brand-700:  #0A7349;
  --brand-ink:  #07301F;          /* fondo verde profundo */
  --brand-tint: #DDF3E7;

  --accent:     #FF5A36;          /* coral */
  --accent-600: #E8431F;
  --accent-tint:#FFE6DD;

  --line:       rgba(23,21,15,.10);
  --line-2:     rgba(23,21,15,.16);
  --on-dark:    #F6F3EA;
  --on-dark-soft: rgba(246,243,234,.66);

  --shadow-sm:  0 1px 2px rgba(23,21,15,.06), 0 2px 6px rgba(23,21,15,.05);
  --shadow-md:  0 8px 24px -10px rgba(23,21,15,.18), 0 2px 8px -4px rgba(23,21,15,.10);
  --shadow-lg:  0 28px 60px -28px rgba(23,21,15,.32), 0 8px 24px -16px rgba(23,21,15,.16);
  --shadow-brand: 0 18px 40px -16px rgba(14,168,105,.45);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 420;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* atmósfera: grano sutil + halos cálidos */
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(14,168,105,.10), transparent 60%),
    radial-gradient(900px 520px at -6% 8%, rgba(255,90,54,.06), transparent 55%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

::selection { background: var(--brand); color: var(--on-dark); }

/* grano global */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------- Type ------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.serif-italic { font-style: italic; font-variation-settings: "SOFT" 40; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-700);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-700); line-height: 1.55; }
.muted { color: var(--ink-500); }

/* ----------------------------- Layout ---------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.center .measure, .center .measure-sm { margin-inline: auto; }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.35rem;
  border-radius: var(--r-pill);
  font-weight: 650;
  font-size: .98rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-brand { background: var(--brand); color: var(--on-dark); box-shadow: var(--shadow-brand); }
.btn-brand:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 22px 46px -16px rgba(14,168,105,.6); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(23,21,15,.04); transform: translateY(-2px); }
.btn-light { background: var(--on-dark); color: var(--brand-ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { border-color: rgba(246,243,234,.34); color: var(--on-dark); }
.btn-outline-light:hover { border-color: var(--on-dark); background: rgba(246,243,234,.08); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 650; color: var(--brand-700); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand svg { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; margin-inline: auto; }
.nav-links a { font-weight: 560; font-size: .96rem; color: var(--ink-700); position: relative; padding: .3rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--brand);
  border-radius: 2px; transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; font-size: .82rem; font-weight: 700; }
.lang-switch a { padding: .34rem .6rem; color: var(--ink-400); letter-spacing: .03em; }
.lang-switch a[aria-current="true"] { background: var(--ink); color: var(--paper); }
.nav-ingresar { font-weight: 600; font-size: .95rem; padding: .3rem .2rem; }
.nav-ingresar:hover { color: var(--brand-700); }

.burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* announcement bar */
.topbar { background: var(--brand-ink); color: var(--on-dark); font-size: .85rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: .6rem; padding-block: .55rem; text-align: center; flex-wrap: wrap; }
.topbar strong { color: #8ef0c0; font-weight: 700; }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--on-dark-soft); }

/* ----------------------------- Hero ------------------------------------ */
.hero { position: relative; padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero h1 .hl { position: relative; color: var(--brand-700); white-space: nowrap; }
.hero h1 .hl svg { position: absolute; left: -2%; bottom: -.18em; width: 104%; height: .42em; color: var(--accent); }
.hero p.lede { margin-top: 1.4rem; max-width: 40ch; }
.hero-cta { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.6rem; flex-wrap: wrap; color: var(--ink-500); font-size: .9rem; }
.hero-trust .check { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust .check svg { width: 16px; height: 16px; color: var(--brand); }

.hero-visual { position: relative; }
.hero-visual .halo { position: absolute; inset: -12% -8%; background: radial-gradient(closest-side, rgba(14,168,105,.18), transparent 70%); z-index: 0; filter: blur(8px); }

/* mockup browser card */
.mock {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: .4rem; padding: .7rem .9rem; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.mock-bar .url { margin-left: .6rem; font-size: .74rem; color: var(--ink-400); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .25rem .7rem; display: inline-flex; align-items: center; gap: .35rem; }
.mock-bar .url svg { width: 11px; height: 11px; color: var(--brand); }
.mock-body { padding: 1rem; display: grid; gap: .8rem; }
.mock-hero { background: linear-gradient(120deg, var(--brand-ink), var(--brand-700)); color: var(--on-dark); border-radius: var(--r-md); padding: 1.05rem 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mock-hero h4 { font-family: var(--font-display); color: #fff; font-size: 1.15rem; line-height: 1.1; }
.mock-hero span { font-size: .76rem; color: var(--on-dark-soft); }
.mock-hero .pill { background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: var(--r-pill); white-space: nowrap; }
.mock-products { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; }
.mock-prod { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: #fff; }
.mock-prod .img { aspect-ratio: 1; background: var(--paper-2); position: relative; }
.mock-prod .img svg { position: absolute; inset: 0; margin: auto; width: 42%; height: 42%; color: var(--ink-400); opacity: .55; }
.mock-prod .meta { padding: .45rem .5rem .55rem; }
.mock-prod .meta b { display: block; height: 7px; width: 78%; background: var(--paper-3); border-radius: 3px; margin-bottom: .35rem; }
.mock-prod .meta .price { font-size: .72rem; font-weight: 700; color: var(--brand-700); }

/* floating chips */
.chip-float {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: .7rem .85rem;
  display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600;
}
.chip-float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.chip-float small { display: block; font-weight: 500; color: var(--ink-400); font-size: .72rem; }
.chip-float svg { width: 18px; height: 18px; }
.chip-zero { top: -22px; right: -10px; }
.chip-zero .ico { background: var(--accent-tint); color: var(--accent-600); }
.chip-sale { bottom: -20px; left: -16px; }
.chip-sale .ico { background: var(--brand-tint); color: var(--brand-700); }
.float-anim { animation: float 6s ease-in-out infinite; }
.float-anim.delay { animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ----------------------------- Marquee / strip ------------------------- */
.strip { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--paper-2) 60%, transparent); }
.strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.1rem; flex-wrap: wrap; }
.strip-item { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; color: var(--ink-700); }
.strip-item svg { width: 20px; height: 20px; color: var(--brand-600); }

/* ----------------------------- Section head ---------------------------- */
.s-head { max-width: 56ch; margin-bottom: clamp(40px, 5vw, 64px); }
.s-head.center { margin-inline: auto; }
.s-head h2 { margin-top: .9rem; }
.s-head p { margin-top: 1.1rem; }

/* ----------------------------- Features -------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-700); margin-bottom: 1.1rem;
}
.feature:nth-child(3n-1) .ico { background: var(--accent-tint); color: var(--accent-600); }
.feature:nth-child(3n) .ico { background: var(--paper-3); color: var(--ink-700); }
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
.feature p { margin-top: .5rem; color: var(--ink-500); font-size: .96rem; }

/* ----------------------------- Free band ------------------------------- */
.band-free {
  background: var(--brand-ink); color: var(--on-dark); border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px); position: relative; overflow: hidden;
}
.band-free::before {
  content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(14,168,105,.4), transparent 70%);
}
.band-free .wrap-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items: center; }
.band-free h2 { color: #fff; }
.band-free h2 em { color: #8ef0c0; font-style: normal; }
.band-free p { color: var(--on-dark-soft); margin-top: 1.1rem; font-size: 1.08rem; }
.band-free .cta { margin-top: 1.8rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.free-points { display: grid; gap: .9rem; }
.free-point { display: flex; gap: .85rem; align-items: flex-start; padding: 1rem 1.1rem; background: rgba(246,243,234,.06); border: 1px solid rgba(246,243,234,.12); border-radius: var(--r-md); }
.free-point svg { width: 22px; height: 22px; color: #8ef0c0; flex-shrink: 0; margin-top: 2px; }
.free-point b { display: block; color: #fff; font-weight: 650; }
.free-point span { color: var(--on-dark-soft); font-size: .92rem; }

/* ----------------------------- Pricing --------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-lg); position: relative; }
.plan--featured h3, .plan--featured .price b { color: #fff; }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--r-pill); white-space: nowrap; }
.plan h3 { font-size: 1.35rem; }
.plan .plan-desc { color: var(--ink-500); font-size: .92rem; margin-top: .35rem; min-height: 2.6em; }
.plan--featured .plan-desc { color: rgba(246,243,234,.6); }
.price { margin: 1.3rem 0 .4rem; display: flex; align-items: baseline; gap: .35rem; }
.price b { font-family: var(--font-display); font-weight: 560; font-size: 2.7rem; letter-spacing: -.03em; line-height: 1; }
.price .per { color: var(--ink-400); font-size: .92rem; }
.plan--featured .price .per { color: rgba(246,243,234,.55); }
.price .currency { font-size: 1.1rem; align-self: flex-start; margin-top: .3rem; font-weight: 600; }
.plan-note { font-size: .85rem; color: var(--brand-700); font-weight: 600; min-height: 1.2em; }
.plan--featured .plan-note { color: #8ef0c0; }
.plan ul.feats { display: grid; gap: .7rem; margin: 1.4rem 0; }
.plan ul.feats li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; color: var(--ink-700); }
.plan--featured ul.feats li { color: rgba(246,243,234,.85); }
.plan ul.feats svg { width: 18px; height: 18px; color: var(--brand-600); flex-shrink: 0; margin-top: 2px; }
.plan--featured ul.feats svg { color: #8ef0c0; }
.plan .btn { margin-top: auto; }
.price-foot { margin-top: 1.4rem; color: var(--ink-500); font-size: .9rem; }

/* ----------------------------- Case study ------------------------------ */
.case-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px,5vw,64px); align-items: center; }
.case-copy .quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.22; letter-spacing: -.02em; margin: 1.2rem 0 1.4rem; }
.case-meta { display: flex; align-items: center; gap: .8rem; }
.case-meta .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.case-meta b { display: block; }
.case-meta span { color: var(--ink-500); font-size: .9rem; }
.case-stats { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.case-stats .stat b { font-family: var(--font-display); font-size: 2rem; color: var(--brand-700); display: block; line-height: 1; letter-spacing: -.02em; }
.case-stats .stat span { font-size: .85rem; color: var(--ink-500); }

/* storefront mock (tribu) */
.store-mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.store-nav { background: #16A34A; color: #fff; display: flex; align-items: center; gap: .8rem; padding: .85rem 1.1rem; }
.store-nav .logo { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.store-nav .search { margin-left: auto; background: rgba(255,255,255,.2); border-radius: var(--r-pill); height: 26px; width: 130px; }
.store-nav .cart { width: 22px; height: 22px; }
.store-banner { background: linear-gradient(120deg,#16A34A,#0c7a37); color: #fff; padding: 1.4rem 1.2rem; }
.store-banner h4 { color: #fff; font-size: 1.25rem; }
.store-banner span { font-size: .8rem; opacity: .85; }
.store-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; padding: 1rem; }
.store-card { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.store-card .ph { aspect-ratio: 1; background: var(--paper-2); display: grid; place-items: center; }
.store-card .ph svg { width: 38%; height: 38%; color: #16A34A; opacity: .4; }
.store-card .info { padding: .4rem .5rem .6rem; }
.store-card .info b { display: block; height: 6px; width: 80%; background: var(--paper-3); border-radius: 3px; }
.store-card .info .p { margin-top: .35rem; font-size: .7rem; font-weight: 700; color: #16A34A; }

/* ----------------------------- Steps ----------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .n { font-family: var(--font-display); font-size: 1rem; font-weight: 600; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand-700); margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-500); margin-top: .5rem; font-size: .96rem; }
.step::after { content: ""; position: absolute; top: 1.9rem; left: 48px; right: -1.4rem; height: 1px; background: var(--line); }
.steps .step:last-child::after { display: none; }

/* ----------------------------- FAQ ------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; cursor: pointer; font-weight: 600; font-size: 1.08rem; list-style: none; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; transition: .25s; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq summary .pm::before { width: 11px; height: 1.6px; }
.faq summary .pm::after { width: 1.6px; height: 11px; transition: transform .25s; }
.faq details[open] summary .pm { background: var(--brand); border-color: var(--brand); }
.faq details[open] summary .pm::before, .faq details[open] summary .pm::after { background: #fff; }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq details[open] summary { color: var(--brand-700); }
.faq .ans { padding: 0 0 1.3rem; color: var(--ink-500); max-width: 64ch; }

/* ----------------------------- Final CTA ------------------------------- */
.cta-final { background: var(--ink); color: var(--paper); border-radius: var(--r-xl); padding: clamp(48px,7vw,96px); text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 50% 120%, rgba(14,168,105,.35), transparent 60%); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(246,243,234,.7); margin: 1.2rem auto 0; max-width: 50ch; font-size: 1.1rem; }
.cta-final .cta { margin-top: 2rem; display: inline-flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.cta-final small { display: block; margin-top: 1.4rem; color: rgba(246,243,234,.5); font-size: .85rem; }

/* ----------------------------- Footer ---------------------------------- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: clamp(48px,6vw,80px) 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand .brand { margin-bottom: 1rem; }
.foot-brand p { color: var(--ink-500); font-size: .94rem; max-width: 34ch; }
.foot-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-700); transition: .2s; }
.foot-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--font-sans); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 1.1rem; }
.foot-col ul { display: grid; gap: .7rem; }
.foot-col a { color: var(--ink-700); font-size: .95rem; }
.foot-col a:hover { color: var(--brand-700); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: clamp(36px,5vw,56px); padding-top: 1.6rem; border-top: 1px solid var(--line); flex-wrap: wrap; color: var(--ink-500); font-size: .88rem; }
.foot-bottom a { font-weight: 600; color: var(--ink-700); }
.foot-bottom a:hover { color: var(--brand-700); }
.foot-bottom .dev { display: inline-flex; align-items: center; gap: .4rem; }
.foot-bottom .dev b { color: var(--ink); }

/* ----------------------------- Mobile menu ----------------------------- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--paper); padding: var(--pad); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.7,.3,1); visibility: hidden; }
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; height: 74px; margin-bottom: 1.5rem; }
.mobile-menu .mm-close { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-sm); display: grid; place-items: center; font-size: 1.4rem; }
.mobile-menu nav { display: grid; gap: .3rem; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-actions { margin-top: auto; display: grid; gap: .8rem; padding-top: 2rem; }

/* ----------------------------- Reveal ---------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-anim { animation: none; }
}

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; margin-top: 1rem; }
  .band-free .wrap-inner { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .step::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.5rem; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-ingresar { display: none; }
  .burger { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .strip .wrap { justify-content: flex-start; gap: 1.1rem 1.6rem; }
  .case-stats { gap: 1.4rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (min-width: 761px) { .mobile-menu { display: none; } }
