/* ============================================================
   Insana Coach — Landing styles
   Three themes: light (terracota) · dark (preto) · editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:ital,opsz,wght@0,18..72,400;0,18..72,500;1,18..72,400&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  --font-sans: "Manrope", -apple-system, system-ui, sans-serif;
  --font-display: "Manrope", -apple-system, system-ui, sans-serif;
  --maxw: 1180px;
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;
  --display-weight: 800;
  --display-spacing: -0.02em;
  --eyebrow-transform: none;
}

/* Light · terracota (alinhado ao app) */
html[data-theme="light"] {
  --bg: #F7F3EC;
  --bg-2: #FBF8F2;
  --surface: #FFFFFF;
  --surface-2: #FDF8F0;
  --text: #1A1612;
  --text-2: #6E6357;
  --text-3: #A39685;
  --border: #E8DFCD;
  --border-2: #EDE6D6;
  --primary: #C76648;
  --primary-2: #B85837;
  --on-primary: #FFFFFF;
  --accent-soft: #FBE9DF;
  --accent-softer: #FDF4EE;
  --teal: #2F6E78;
  --success: #1F7A4E;
  --hero-bg: radial-gradient(120% 90% at 80% -10%, #FBE3D6 0%, rgba(251,227,214,0) 55%), var(--bg);
  --shadow-sm: 0 1px 2px rgba(60,40,20,.05), 0 1px 1px rgba(60,40,20,.04);
  --shadow-md: 0 4px 14px rgba(60,40,20,.07), 0 2px 5px rgba(60,40,20,.05);
  --shadow-lg: 0 18px 44px rgba(60,40,20,.10), 0 6px 16px rgba(60,40,20,.06);
  --header-bg: rgba(247,243,236,.82);
}

/* Dark · preto premium */
html[data-theme="dark"] {
  --bg: #141110;
  --bg-2: #1A1614;
  --surface: #1F1A17;
  --surface-2: #271F1A;
  --text: #F4EEE6;
  --text-2: #B5A899;
  --text-3: #847668;
  --border: #322821;
  --border-2: #3A2F27;
  --primary: #DB7A57;
  --primary-2: #E89072;
  --on-primary: #1A1006;
  --accent-soft: #2C1E17;
  --accent-softer: #221813;
  --teal: #4EA0AB;
  --success: #43B07B;
  --hero-bg: radial-gradient(120% 90% at 82% -15%, rgba(219,122,87,.22) 0%, rgba(219,122,87,0) 55%), var(--bg);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,.45);
  --shadow-lg: 0 22px 55px rgba(0,0,0,.6), 0 8px 18px rgba(0,0,0,.4);
  --header-bg: rgba(20,17,16,.78);
}

/* Editorial · claro minimalista */
html[data-theme="editorial"] {
  --font-display: "Newsreader", Georgia, serif;
  --display-weight: 500;
  --display-spacing: -0.005em;
  --eyebrow-transform: uppercase;
  --bg: #FFFFFF;
  --bg-2: #F8F6F2;
  --surface: #FFFFFF;
  --surface-2: #FBFAF7;
  --text: #14110E;
  --text-2: #5C564E;
  --text-3: #9A938A;
  --border: #EAE6DE;
  --border-2: #F0ECE4;
  --primary: #C0593A;
  --primary-2: #A4482D;
  --on-primary: #FFFFFF;
  --accent-soft: #F7EFEA;
  --accent-softer: #FBF6F3;
  --teal: #2C6670;
  --success: #1F7A4E;
  --hero-bg: var(--bg);
  --shadow-sm: none;
  --shadow-md: 0 1px 0 var(--border);
  --shadow-lg: 0 24px 60px rgba(20,17,14,.08);
  --header-bg: rgba(255,255,255,.85);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  line-height: 1.08;
}
html[data-theme="editorial"] .display { line-height: 1.04; }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: var(--eyebrow-transform);
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px;
}
html[data-theme="editorial"] .eyebrow { letter-spacing: .16em; font-weight: 600; }

.muted { color: var(--text-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: .005em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-soft { background: var(--accent-soft); color: var(--primary); }
.btn-soft:hover { background: var(--primary); color: var(--on-primary); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
html[data-theme="editorial"] .btn { border-radius: 4px; }

/* ---------- Header ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.01em; white-space: nowrap; }
html[data-theme="editorial"] .brand .wordmark { font-weight: 600; letter-spacing: .02em; }
.brand .wordmark b { color: var(--primary); font-weight: inherit; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-2); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* segmented controls (lang + theme) */
.seg { display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border); }
html[data-theme="editorial"] .seg { border-radius: 6px; }
.seg button {
  padding: 6px 11px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  color: var(--text-2); display: flex; align-items: center; gap: 6px; transition: all .15s;
}
html[data-theme="editorial"] .seg button { border-radius: 4px; }
.seg button.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
html[data-theme="dark"] .seg button.active { background: var(--primary); color: var(--on-primary); }
.seg button:not(.active):hover { color: var(--text); }
.seg .dot { width: 13px; height: 13px; border-radius: 50%; display: inline-block; }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--hero-bg); padding: 64px 0 30px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 60px); margin: 18px 0 0; max-width: 14ch; }
html[data-theme="editorial"] .hero h1 { max-width: 15ch; }
.hero p.lead { font-size: clamp(16px, 1.35vw, 19px); color: var(--text-2); margin: 22px 0 0; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 30px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); font-weight: 600; }
.hero-badges svg { color: var(--primary); flex: none; }

.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-glow { position: absolute; inset: -10% -5%; background: radial-gradient(closest-side, var(--accent-soft), transparent 70%); filter: blur(20px); z-index: 0; }
html[data-theme="dark"] .hero-glow { background: radial-gradient(closest-side, rgba(219,122,87,.25), transparent 70%); }

/* ---------- Device frame ---------- */
.device {
  position: relative; z-index: 1;
  width: 308px; max-width: 78vw;
  padding: 11px; border-radius: 42px;
  background: linear-gradient(160deg, #2c2622, #16110e);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.device::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 7px; border-radius: 999px; background: rgba(0,0,0,.55); z-index: 3;
}
.device img { border-radius: 32px; width: 100%; display: block; }
.device.tilt { transform: rotate(2.2deg); }

.caption { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 16px; font-weight: 600; }

/* ---------- Section heading ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-2); }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(27px, 3.3vw, 42px); margin: 14px 0 0; }
.sec-head p { font-size: 17px; color: var(--text-2); margin: 16px 0 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.step { position: relative; }
.step .num {
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: 56px; line-height: 1; color: var(--primary); opacity: .9;
}
html[data-theme="editorial"] .step .num { font-style: italic; }
.step h3 { font-size: 21px; margin: 16px 0 8px; }
.step p { color: var(--text-2); margin: 0; font-size: 15.5px; }
.step .line { position: absolute; top: 28px; left: 78px; right: -26px; height: 2px;
  background: linear-gradient(90deg, var(--border-2), transparent); }
.step:last-child .line { display: none; }

/* ---------- Feature rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.frow + .frow { margin-top: 96px; }
.frow.flip .ftext { order: 2; }
.frow.flip .fvisual { order: 1; }
.ficon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--primary); margin-bottom: 20px;
}
html[data-theme="editorial"] .ficon { border-radius: 8px; }
.frow h3 { font-size: clamp(23px, 2.4vw, 31px); margin: 0 0 14px; }
.frow p { color: var(--text-2); font-size: 17px; margin: 0; max-width: 46ch; }
.fvisual { display: flex; justify-content: center; }

/* ---------- Feature grid (smaller) ---------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.fcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
html[data-theme="editorial"] .fcard { border-radius: 8px; box-shadow: none; }
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fcard h3 { font-size: 19px; margin: 16px 0 8px; }
.fcard p { color: var(--text-2); font-size: 15px; margin: 0; }
.fcard .thumb { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
  height: 168px; margin-bottom: 4px; background: var(--bg-2); }
.fcard .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ---------- Coaches ---------- */
.coaches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.coach {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px 20px; box-shadow: var(--shadow-sm);
}
html[data-theme="editorial"] .coach { box-shadow: none; border-radius: 8px; }
.coach .dot { width: 28px; height: 28px; border-radius: 9px; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--primary); margin-bottom: 14px; }
.coach h4 { font-size: 16px; margin: 0 0 6px; }
.coach p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.5; }

/* ---------- Plans ---------- */
.plan-toggle { display: flex; justify-content: center; margin: 30px 0 12px; }
.save-pill { margin-left: 8px; font-size: 11px; font-weight: 800; background: var(--success);
  color: #fff; padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
html[data-theme="dark"] .save-pill { color: #08120c; }

.plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 38px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .2s, box-shadow .2s;
}
html[data-theme="editorial"] .plan { border-radius: 8px; box-shadow: none; }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--primary); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--accent-softer), var(--surface) 36%); }
.plan .rec-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--on-primary); font-size: 11px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 20px; margin: 0; }
.plan .tag { font-size: 13px; color: var(--text-2); margin: 6px 0 18px; min-height: 38px; }
.plan .price { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.plan .price .cur { font-size: 16px; font-weight: 700; color: var(--text-2); }
.plan .price .val { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 38px; letter-spacing: -.02em; }
.plan .price .per { font-size: 14px; color: var(--text-2); font-weight: 600; }
.plan .price-note { font-size: 12.5px; color: var(--text-3); margin-top: 4px; min-height: 18px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.45; }
.plan li svg { flex: none; color: var(--primary); margin-top: 3px; }
.plan .btn { margin-top: auto; }

/* ---------- CTA banner ---------- */
.cta-band { background: var(--accent-soft); }
html[data-theme="dark"] .cta-band { background: linear-gradient(120deg, #2a1c15, #1d1512); }
.cta-band .inner { text-align: center; padding: 78px 0; }
.cta-band h2 { font-size: clamp(26px, 3.2vw, 40px); margin: 0 auto; max-width: 18ch; }
.cta-band p { color: var(--text-2); font-size: 18px; margin: 16px auto 30px; max-width: 50ch; }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.foot-brand .wordmark b { color: var(--primary); }
.foot-brand p { color: var(--text-2); font-size: 15px; max-width: 34ch; margin: 14px 0 0; }
.foot-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); margin: 4px 0 14px; }
.foot-col a { display: block; color: var(--text-2); font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--primary); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-3); font-size: 13.5px; flex-wrap: wrap; }
.store-btns { display: flex; gap: 10px; margin-top: 18px; }
.store-btn { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 700; }
html[data-theme="editorial"] .store-btn { border-radius: 6px; }
.store-btn svg { color: var(--text); }
.store-btn small { display: block; font-size: 10px; color: var(--text-3); font-weight: 600; }

/* ---------- Payment modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(20,14,10,.55); backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface); color: var(--text); width: 100%; max-width: 460px;
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  max-height: 92vh; overflow-y: auto;
}
html[data-theme="editorial"] .modal { border-radius: 12px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 0; }
.modal-head h3 { font-size: 19px; margin: 0; }
.modal-close { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  color: var(--text-2); background: var(--surface-2); }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 18px 24px 26px; }
.modal-step { display: none; }
.modal-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.order-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px; }
.order-row { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; padding: 7px 0; }
.order-row.total { border-top: 1px dashed var(--border); margin-top: 6px; padding-top: 13px; font-weight: 800; font-size: 17px; }
.order-row .lbl { color: var(--text-2); }
.recur-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding: 13px 15px;
  background: var(--accent-softer); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 13px; color: var(--text-2); }
.recur-note svg { color: var(--primary); flex: none; margin-top: 1px; }
.recur-note b { color: var(--text); }

.field { margin-top: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text-2); }
.field input {
  width: 100%; padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .15s;
}
.field input:focus { outline: none; border-color: var(--primary); }
.field input::placeholder { color: var(--text-3); }

/* Phone row (DDI / DDD / number) */
.phone-row { display: flex; gap: 8px; }
.phone-row .ph-ddi { flex: 0 0 58px; text-align: center; }
.phone-row .ph-ddd { flex: 0 0 68px; text-align: center; }
.phone-row .ph-num { flex: 1; }

/* Inline form message (errors / info) */
.form-msg {
  display: none; margin-top: 12px; font-size: 13px; font-weight: 600; line-height: 1.4;
  padding: 10px 13px; border-radius: var(--r-sm); border: 1px solid var(--border);
  color: var(--primary); background: var(--accent-soft);
}
.form-msg.show { display: block; }
.form-msg.ok { color: var(--success); }
.waiting.err { color: var(--primary); }

/* Pix QR step */
.pix-box { text-align: center; }
.qr {
  width: 196px; height: 196px; margin: 4px auto 0; border-radius: var(--r-md); background: #fff;
  padding: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.qr svg { width: 100%; height: 100%; display: block; }
.pix-brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; color: #32BCAD; margin-bottom: 12px; font-size: 15px; }
.copy-code { display: flex; gap: 8px; margin-top: 16px; }
.copy-code input { flex: 1; padding: 11px 13px; border-radius: var(--r-sm); border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text-2); font-size: 12px; font-family: monospace; }
.copy-code button { padding: 0 16px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--primary); font-weight: 700; font-size: 13px; white-space: nowrap; }
.copy-code button:hover { background: var(--primary); color: var(--on-primary); }
.waiting { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; color: var(--text-2); font-size: 14px; font-weight: 600; }
.spinner { width: 16px; height: 16px; border: 2.5px solid var(--border-2); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success step */
.success-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff;
  display: grid; place-items: center; margin: 8px auto 18px; animation: pop .4s cubic-bezier(.2,1.3,.5,1); }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pix-success { text-align: center; }
.pix-success h3 { font-size: 22px; margin: 0 0 8px; }
.pix-success p { color: var(--text-2); font-size: 15px; margin: 0 auto; max-width: 38ch; }
.modal-foot { margin-top: 20px; }
.demo-note { text-align: center; font-size: 12px; color: var(--text-3); margin-top: 14px; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero h1, .hero p.lead { max-width: none; }
  .hero-cta, .hero-badges { justify-content: center; }
  .frow, .frow.flip { grid-template-columns: 1fr; gap: 28px; }
  .frow .ftext, .frow .fvisual, .frow.flip .ftext, .frow.flip .fvisual { order: 0; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .coaches { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step .line { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }
  .fgrid, .coaches, .plans { grid-template-columns: 1fr; }
  .nav-right .seg.lang .lbl { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 20px; }
}
