/* =========================================================
   CONCRE — Landing page
   Standalone stylesheet. Warm, minimal, mobile-first.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --ink: #0B0B0C;
  --ink-2: #26262B;
  --paper: #FCFBF7;
  --paper-2: #F3EFE7;
  --paper-3: #EDE7DA;
  --muted: #6C6C72;
  --line: rgba(11,11,12,.10);
  --line-2: rgba(11,11,12,.16);
  --accent: #E5533B;
  --accent-soft: #FBE7E1;
  --wa: #25D366;
  --wa-dark: #1DA851;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11,11,12,.06);
  --shadow: 0 18px 50px -18px rgba(11,11,12,.22);
  --shadow-lg: 0 40px 90px -30px rgba(11,11,12,.35);
  --maxw: 1140px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: 780px; }
.center { text-align: center; }
.mini { color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.h2--light { color: var(--paper); }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hl { color: var(--accent); }

.section { padding: clamp(64px, 9vw, 116px) 0; }
section[id], [id].guarantee { scroll-margin-top: 84px; }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 20px; height: 20px; flex: none; }

.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--dark:hover { background: #000; box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: rgba(11,11,12,.05); transform: none; }
.btn--wa { background: var(--wa); color: #06301A; box-shadow: 0 10px 26px -8px rgba(37,211,102,.6); }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,251,247,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 34px; width: auto; }
.nav__links { display: flex; gap: 28px; margin-left: 12px; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav__links a:hover { color: var(--accent); }
.nav__actions { display: flex; gap: 10px; margin-left: auto; align-items: center; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 22px 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
.nav__mobile a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a.btn { border: none; margin-top: 12px; color: #fff; }

/* ---------- Pills / trust ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 6vw, 78px) 0 clamp(30px, 4vw, 46px); position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 5.6vw, 3.6rem);
  line-height: 1.06; letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__risk { margin-top: 18px; color: var(--muted); font-size: .9rem; font-weight: 500; }

/* Phone */
.hero__visual { position: relative; display: flex; justify-content: center; }
.glow {
  position: absolute; inset: -6% 10% 4% 10%;
  background: radial-gradient(60% 55% at 55% 40%, rgba(229,83,59,.20), transparent 70%),
              radial-gradient(50% 50% at 30% 80%, rgba(37,211,102,.14), transparent 70%);
  filter: blur(20px); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: min(320px, 82vw);
  background: #111114; border-radius: 44px;
  padding: 10px; box-shadow: var(--shadow-lg);
  border: 1px solid #26262b;
}
.phone__bar { height: 26px; display: flex; align-items: center; justify-content: center; }
.phone__cam { width: 46px; height: 6px; border-radius: 999px; background: #26262b; }
.ig { background: #fff; border-radius: 34px; overflow: hidden; }
.ig__head { display: flex; align-items: center; gap: 9px; padding: 11px 12px; }
.ig__avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: contain; border: 1px solid var(--line); background:#fff; padding:4px; }
.ig__meta { display: flex; flex-direction: column; line-height: 1.15; }
.ig__meta strong { font-size: .82rem; }
.ig__meta span { font-size: .72rem; color: var(--muted); }
.ig__dots { margin-left: auto; color: var(--ink); letter-spacing: 1px; }
.ig__media { aspect-ratio: 4/5; background: var(--paper-3); }
.ig__media img { width: 100%; height: 100%; object-fit: cover; }
.ig__actions { display: flex; gap: 14px; padding: 11px 13px 4px; font-size: 1.2rem; }
.ig__ic { cursor: default; }
.ig__ic.heart { color: var(--accent); }
.ig__ic.bookmark { margin-left: auto; }
.ig__likes { padding: 0 13px; font-size: .8rem; font-weight: 600; }
.ig__caption { padding: 4px 13px 15px; font-size: .8rem; color: var(--ink-2); }
.ig__caption strong { color: var(--ink); }

.float-card {
  position: absolute; z-index: 3; bottom: 118px; left: -7%;
  display: flex; align-items: center; gap: 11px; white-space: nowrap;
  background: #fff; border-radius: 14px; padding: 11px 16px 11px 12px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  animation: floaty 4s ease-in-out infinite;
}
.float-card__dot { width: 32px; height: 32px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .95rem; flex: none; }
.float-card__name { display: block; font-size: .8rem; font-weight: 700; }
.float-card__msg { display: block; font-size: .74rem; color: var(--muted); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px;
  margin-top: clamp(40px, 6vw, 64px); padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-2); text-align: center;
}
.trust strong { color: var(--ink); }
.trust__sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }

/* ---------- Problem ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.pcard__emoji { font-size: 1.7rem; display: block; margin-bottom: 12px; }
.pcard p { font-size: .98rem; color: var(--ink-2); }
.problem__punch {
  margin-top: 40px; text-align: center; font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.4; font-family: var(--font-display); font-weight: 500;
  max-width: 860px; margin-inline: auto; letter-spacing: -.01em;
}
.problem__punch strong { color: var(--accent); font-weight: 700; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 40px 28px 30px; box-shadow: var(--shadow-sm);
}
.step__n {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--paper-3); line-height: 1;
}
.step__ic {
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--accent-soft); border-radius: 16px; font-size: 1.7rem; margin-bottom: 20px;
}
.step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.step p { color: var(--ink-2); font-size: .98rem; }
.center { margin-top: 46px; }

/* ---------- Showcase ---------- */
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.wa {
  max-width: 400px; margin-inline: auto; width: 100%;
  background: #E9E2D6; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.wa__head { display: flex; align-items: center; gap: 10px; background: #075E54; color: #fff; padding: 12px 14px; }
.wa__av { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; background: #fff; padding: 5px; }
.wa__meta { display: flex; flex-direction: column; line-height: 1.2; }
.wa__meta strong { font-size: .92rem; }
.wa__meta span { font-size: .72rem; opacity: .8; }
.wa__icons { margin-left: auto; font-size: .9rem; opacity: .9; }
.wa__body {
  padding: 16px 12px; display: flex; flex-direction: column; gap: 9px;
  background-image: linear-gradient(rgba(233,226,214,.9), rgba(233,226,214,.9));
  background-color: #E9E2D6;
}
.wa-msg {
  max-width: 82%; padding: 9px 12px 20px; border-radius: 12px; position: relative;
  font-size: .87rem; box-shadow: 0 1px 1px rgba(0,0,0,.08); line-height: 1.4;
}
.wa-msg--in { align-self: flex-start; background: #fff; border-top-left-radius: 3px; }
.wa-msg--out { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 3px; }
.wa-time { position: absolute; right: 10px; bottom: 5px; font-size: .62rem; color: rgba(0,0,0,.42); }
.wa-msg--media { padding: 6px 6px 20px; }
.wa-msg--media img { border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 7px; }
.wa-msg--media p { font-size: .8rem; padding: 0 4px; color: var(--ink-2); }
.wa__foot { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #E9E2D6; }
.wa__foot > span:first-child { flex: 1; background: #fff; border-radius: 999px; padding: 9px 14px; color: var(--muted); font-size: .85rem; }
.wa__send { width: 38px; height: 38px; border-radius: 50%; background: #075E54; color: #fff; display: grid; place-items: center; }

.igprofile { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.igprofile__top { display: flex; align-items: center; gap: 20px; padding: 20px; }
.igprofile__av { width: 64px; height: 64px; border-radius: 50%; object-fit: contain; border: 2px solid var(--accent); padding: 8px; background: #fff; }
.igprofile__stats { display: flex; gap: 22px; }
.igprofile__stats div { text-align: center; }
.igprofile__stats strong { display: block; font-size: 1.05rem; }
.igprofile__stats span { font-size: .78rem; color: var(--muted); }
.igprofile__bio { padding: 0 20px 16px; font-size: .88rem; display: flex; flex-direction: column; }
.igprofile__bio span { color: var(--ink-2); }
.igprofile__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.igprofile__grid img { aspect-ratio: 1/1; object-fit: cover; }
.showcase__note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 16px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gcard__media { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); }
.gcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gcard:hover .gcard__media img { transform: scale(1.05); }
.gcard figcaption { padding: 15px 16px 18px; font-size: .85rem; color: var(--ink-2); }
.gcard figcaption strong { color: var(--ink); }
.gcard .tags { display: block; margin-top: 6px; color: var(--accent); font-weight: 600; font-size: .78rem; }

/* ---------- Benefits ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; }
.section--alt .bcard { background: #fff; }
.bcard__ic { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.bcard h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.bcard p { color: var(--ink-2); font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--paper); padding: clamp(64px, 9vw, 104px) 0; }
.stats .section__head { margin-bottom: 42px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 20px 14px; border-radius: var(--r); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 2.9rem); color: #fff; letter-spacing: -.02em; margin-bottom: 8px; }
.stat p { color: rgba(255,255,255,.72); font-size: .92rem; }
.stats__src { text-align: center; color: rgba(255,255,255,.42); font-size: .78rem; margin-top: 30px; }

/* ---------- Pricing ---------- */
.toggle { display: inline-flex; gap: 4px; padding: 5px; background: var(--paper-3); border-radius: 999px; margin: 0 auto 44px; }
.section--alt .toggle { background: #fff; border: 1px solid var(--line); }
.toggle { display: flex; width: max-content; margin-inline: auto; }
.toggle__btn { padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--muted); transition: .2s; display: inline-flex; align-items: center; gap: 8px; }
.toggle__btn.is-active { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.toggle__save { background: var(--accent); color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.toggle__btn.is-active .toggle__save { background: var(--wa); color: #06301A; }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 22px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.plan--pop { border: 2px solid var(--ink); box-shadow: var(--shadow); transform: translateY(-8px); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.plan__tag { color: var(--muted); font-size: .9rem; margin: 4px 0 20px; }
.plan__price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
.plan__cur { font-size: 1.4rem; font-weight: 600; margin-top: 8px; }
.plan__amount { font-family: var(--font-display); font-size: 3.3rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.plan__per { color: var(--muted); align-self: flex-end; margin-bottom: 8px; font-weight: 500; }
.plan__note { font-size: .8rem; color: var(--muted); margin-bottom: 22px; }
.plan__feats { margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }
.plan__feats li { font-size: .92rem; color: var(--ink-2); }
.plan__feats li strong { color: var(--ink); }
.plan__all { font-weight: 700; color: var(--ink) !important; font-size: .85rem !important; text-transform: uppercase; letter-spacing: .04em; opacity: .7; }
.plan__flex { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .83rem; color: var(--muted); }
.plan__flex strong { color: var(--ink); }
.plans__vat { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 28px; }

/* Compare table */
.compare { margin-top: 64px; }
.compare__title { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 26px; letter-spacing: -.01em; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
.ctable { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.ctable th, .ctable td { padding: 15px 18px; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.ctable thead th { font-family: var(--font-display); font-weight: 700; font-size: 1rem; background: var(--paper); }
.ctable td:first-child, .ctable th:first-child { color: var(--muted); font-weight: 500; }
.ctable__hi { background: var(--accent-soft) !important; color: var(--ink) !important; font-weight: 700; }
.ctable tbody tr:last-child td { border-bottom: none; }

/* ---------- Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { font-size: 1rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tcard__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: .95rem; font-family: var(--font-display);
}
.tcard__av::before { content: attr(data-initials); }
.tcard figcaption strong { display: block; font-size: .95rem; }
.tcard figcaption span { font-size: .82rem; color: var(--muted); }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vw, 92px) 0; }
.guarantee__inner { display: flex; gap: 32px; align-items: center; max-width: 900px; margin-inline: auto; }
.guarantee__ico { font-size: 4rem; flex: none; }
.guarantee p { color: rgba(255,255,255,.74); margin-top: 12px; max-width: 560px; }
.guarantee__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 30px 18px 0; position: relative;
  font-weight: 600; font-size: 1.02rem; font-family: var(--font-display); letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .2s; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 20px; color: var(--ink-2); font-size: .97rem; }

/* ---------- Final CTA ---------- */
.finalcta { padding: clamp(70px, 10vw, 130px) 0; background:
  radial-gradient(80% 120% at 50% 0%, #1a1a1e 0%, var(--ink) 60%); color: var(--paper); text-align: center; }
.finalcta__inner { max-width: 760px; margin-inline: auto; }
.finalcta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -.03em; }
.finalcta__title .hl { color: var(--accent); }
.finalcta__sub { color: rgba(255,255,255,.74); font-size: 1.1rem; margin: 20px auto 34px; max-width: 560px; }
.finalcta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.finalcta__mini { margin-top: 22px; color: rgba(255,255,255,.5); font-size: .85rem; }

/* ---------- Footer ---------- */
.footer { background: #08080A; color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; }
.footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; max-width: 280px; }
.footer__made { margin-top: 12px; color: rgba(255,255,255,.45); font-size: .85rem; }
.footer__col h3 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-family: var(--font-display); }
.footer__col a { display: block; padding: 6px 0; font-size: .9rem; transition: color .15s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---------- Sticky CTA + cookie ---------- */
.stickycta {
  display: none; position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 70;
  background: var(--wa); color: #06301A; font-weight: 700; text-align: center;
  padding: 15px; border-radius: 999px; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.7);
}
.stickycta .ico { width: 22px; height: 22px; }

.cookie {
  position: fixed; bottom: 16px; left: 16px; z-index: 80; max-width: 360px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; gap: 14px; align-items: center;
}
.cookie p { font-size: .84rem; color: var(--ink-2); }
.cookie a { color: var(--accent); font-weight: 600; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Persona / para quién ---------- */
.persona__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.persona__media { position: relative; }
.persona__img1 { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.persona__img2 { position: absolute; width: 44%; right: -20px; bottom: -28px; border-radius: var(--r); border: 6px solid var(--paper-2); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.persona__chip { position: absolute; top: 20px; left: -14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px 15px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.persona__lead { color: var(--ink-2); font-size: 1.1rem; margin: 16px 0 24px; }
.persona__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.persona__list li { position: relative; padding-left: 30px; color: var(--ink-2); font-weight: 500; }
.persona__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 800; font-size: 1.05rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__grid { grid-template-columns: 1fr; gap: 46px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .persona__grid { grid-template-columns: 1fr; gap: 66px; }
  .persona__media { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav__links, .nav__login { display: none; }
  .nav__actions .btn--dark { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .steps { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .plans { grid-template-columns: 1fr; gap: 30px; }
  .plan--pop { transform: none; order: -1; }
  .guarantee__inner { flex-direction: column; text-align: center; }
  .guarantee p { margin-inline: auto; }
  .guarantee__cta { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .stickycta { display: flex; }
  body { padding-bottom: 78px; }
  .float-card { left: 4px; right: auto; bottom: 92px; }
  .cookie { left: 12px; right: 12px; bottom: 82px; max-width: none; }
  .persona__img2 { width: 40%; right: 0; bottom: -14px; }
  .persona__chip { left: 0; }
}

@media (max-width: 430px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}
