@font-face { font-family: "DM Sans"; src: url(/fonts/dm-sans-latin-wght-normal.woff2) format("woff2"); font-weight: 100 1000; font-display: swap; }
@font-face { font-family: "Manrope"; src: url(/fonts/manrope-latin-wght-normal.woff2) format("woff2"); font-weight: 200 800; font-display: swap; }

:root {
  --ink: #202126;
  --muted: #62636b;
  --soft: #f7f7f5;
  --line: #e9e7e2;
  --coral: #ff5f46;
  --coral-dark: #d9422b;
  --coral-soft: #fff1ec;
  --night: #212228;
  --radius: 22px;
  color: var(--ink);
  background: var(--soft);
  font-family: "DM Sans", system-ui, sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: -.045em; line-height: 1.08; }
p { margin: 0; }
.wrap { width: min(1120px, 100% - 40px); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--coral-dark); font: 800 12px "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 18px; height: 3px; border-radius: 3px; background: var(--coral); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 24px; border-radius: 14px; font-weight: 700; font-size: 16px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(49,91,214,.35); outline-offset: 3px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 12px 26px rgba(255,95,70,.28); }
.btn-primary:hover { background: #ff6c55; }
.btn-ghost { border: 1.5px solid var(--line); background: #fff; color: var(--ink); }
.btn-dark { background: var(--night); color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--soft); transition: box-shadow .2s ease; }
.site-header.scrolled { box-shadow: 0 1px 0 #e9e7e2, 0 8px 24px rgba(33,34,40,.05); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 500 20px "Manrope", sans-serif; letter-spacing: -.04em; }
.brand strong { font-weight: 800; }
.mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--coral); color: #fff; transform: rotate(-3deg); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .login { padding: 10px 6px; color: var(--muted); font-size: 15px; font-weight: 600; text-decoration: none; }
.header-actions .btn { min-height: 42px; padding: 0 16px; font-size: 14px; }

/* Hero */
.hero { padding: 36px 0 64px; overflow: hidden; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero h1 { margin-top: 16px; font-size: clamp(2.35rem, 8vw, 4.2rem); }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero .lead { margin-top: 18px; max-width: 560px; color: var(--muted); font-size: clamp(1.05rem, 2.6vw, 1.25rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.trust li { display: flex; align-items: center; gap: 7px; }
.trust li::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--coral-soft); color: var(--coral-dark); font-size: 12px; font-weight: 800; }
.hero-visual { position: relative; display: flex; justify-content: center; min-height: 520px; }
.phone { position: relative; width: min(290px, 72vw); aspect-ratio: 390 / 844; padding: 10px; border-radius: 44px; background: #16171b; box-shadow: 0 40px 80px rgba(33,34,40,.22), inset 0 0 0 1.5px #34353c; }
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 34px; }
.hero-visual .phone.back { position: absolute; left: 0; top: 70px; width: 250px; transform: rotate(-6deg); display: none; }
.hero-visual .phone.front { transform: rotate(2deg); }
.sticker { position: absolute; left: 4%; bottom: 44px; z-index: 2; padding: 12px 16px; border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(33,34,40,.14); font-size: 14px; font-weight: 700; }
.sticker span { display: block; color: var(--coral-dark); font: 800 26px "Manrope", sans-serif; letter-spacing: -.04em; }

/* Sections */
section { scroll-margin-top: 80px; }
.section { padding: 72px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2 { margin-top: 12px; font-size: clamp(1.9rem, 5vw, 2.9rem); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.pain { background: #fff; border-block: 1px solid var(--line); }
.pain-grid { display: grid; gap: 14px; }
.pain-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.pain-card b { display: block; font: 800 1.12rem "Manrope", sans-serif; letter-spacing: -.02em; }
.pain-card p { margin-top: 8px; color: var(--muted); }
.pain-answer { margin-top: 28px; font: 700 clamp(1.2rem, 3vw, 1.5rem) "Manrope", sans-serif; letter-spacing: -.03em; }
.pain-answer span { color: var(--coral); }

.steps { display: grid; gap: 14px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 24px; border-radius: var(--radius); background: var(--night); color: #fff; }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--coral); font: 800 18px "Manrope", sans-serif; }
.step h3 { margin-top: 18px; font-size: 1.35rem; }
.step p { margin-top: 8px; color: #c4c5cb; }

.feature { display: grid; gap: 32px; align-items: center; padding: 36px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature h3 { margin-top: 12px; font-size: clamp(1.6rem, 4vw, 2.3rem); }
.feature p { margin-top: 12px; color: var(--muted); font-size: 1.05rem; }
.feature ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.feature li { display: flex; gap: 10px; }
.feature li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--coral); }
.feature .phone { margin: 0 auto; width: min(270px, 70vw); }

.spain { background: var(--night); color: #fff; }
.spain .section-head p { color: #c4c5cb; }
.spain .eyebrow { color: #ffb6aa; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { padding: 10px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.06); font-weight: 600; }

.plans { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 26px 26px; border: 1.5px solid var(--line); border-radius: 26px; background: #fff; }
.plan.featured { border-color: var(--coral); box-shadow: 0 24px 60px rgba(255,95,70,.14); }
.plan .badge { position: absolute; top: -13px; left: 26px; padding: 5px 12px; border-radius: 999px; background: var(--coral); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.plan h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.price { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.price strong { font: 800 3rem "Manrope", sans-serif; letter-spacing: -.06em; }
.price span { color: var(--muted); font-weight: 600; }
.plan .note { margin-top: 6px; color: var(--muted); font-size: 15px; min-height: 24px; }
.plan .note b { color: var(--coral-dark); }
.plan.featured .price strong { color: var(--coral-dark); }
.plan .note.billed b { color: var(--ink); }
.plan .saving { margin-top: 14px; padding: 10px 14px; border-radius: 12px; background: var(--coral-soft); color: var(--coral-dark); font-size: 15px; font-weight: 600; line-height: 1.4; }
.plan .saving b { font-weight: 800; }
.plan ul { margin: 20px 0 24px; padding: 0; list-style: none; display: grid; gap: 9px; }
.plan li { display: flex; gap: 9px; font-size: 15px; }
.plan li::before { content: "✓"; color: var(--coral-dark); font-weight: 800; }
.plan .btn { margin-top: auto; width: 100%; }
.plans-foot { margin-top: 22px; color: var(--muted); font-size: 14px; text-align: center; }

.access { display: grid; gap: 12px; counter-reset: access; }
.access li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; list-style: none; }
.access li::before { counter-increment: access; content: counter(access); flex-shrink: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--coral-soft); color: var(--coral-dark); font: 800 15px "Manrope", sans-serif; }
.access b { display: block; }
.access span { color: var(--muted); font-size: 15px; }
.access-list { margin: 0; padding: 0; }

.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; cursor: pointer; list-style: none; font: 700 1.08rem "Manrope", sans-serif; letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex-shrink: 0; color: var(--coral); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--muted); }

.final { padding: 20px 0 80px; }
.final-card { padding: clamp(32px, 6vw, 60px); border-radius: 30px; background: var(--coral); color: #fff; text-align: center; }
.final-card h2 { font-size: clamp(2rem, 5.5vw, 3.2rem); }
.final-card p { margin-top: 12px; opacity: .92; font-size: 1.1rem; }
.final-card .btn { margin-top: 26px; background: #fff; color: var(--coral-dark); box-shadow: 0 12px 26px rgba(0,0,0,.12); }

.site-footer { padding: 36px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }

@media (min-width: 760px) {
  .pain-grid, .steps { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px 0; }
  .feature.reverse .feature-visual { order: -1; }
  .access { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .hero { padding: 64px 0 90px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-visual { min-height: 620px; justify-content: flex-end; }
  .hero-visual .phone.back { display: block; }
  .hero-visual .phone.front { width: 300px; margin-right: 8px; transform: rotate(3deg); }
  .sticker { left: 150px; bottom: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
