/* ===== Tokens (light only) ===== */
:root {
  --red: #D71920;
  --red-dark: #B5141A;
  --green: #3F9D7D;
  --green-dark: #2F7F64;
  --green-soft: #EAF6F1;
  --blue-soft: #EDF6FB;
  --white: #FFFFFF;
  --off: #FAFAFA;
  --gray-bg: #F5F6F7;
  --blue-bg: #F4F8FC;
  --text: #171717;
  --text-2: #202124;
  --muted: #555B63;
  --border: #E5E7EB;
  --shadow: 0 1px 2px rgba(17,24,39,.04), 0 6px 20px rgba(17,24,39,.05);
  --shadow-lg: 0 2px 4px rgba(17,24,39,.04), 0 16px 40px rgba(17,24,39,.07);
  --radius: 16px;
  --serif: "Merriweather", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); }
h1, h2, h3 { margin: 0; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }
.center { text-align: center; }

/* ===== Progress bar ===== */
.progress { position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 200; background: transparent; }
.progress__bar { height: 100%; width: 0; background: var(--red); transition: width .1s linear; }

/* ===== Header ===== */
.site-header { background: var(--red); color: #fff; position: relative; z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { color: #fff; text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-weight: 900; font-size: 30px; letter-spacing: .5px; }
.brand__tag { font-size: 14px; opacity: .92; margin-top: 4px; letter-spacing: .3px; }
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 12px; border-radius: 8px; transition: background .2s;
}
.main-nav a:hover, .main-nav a:focus-visible { background: rgba(255,255,255,.16); }
.nav-toggle { display: none; background: none; border: 0; width: 48px; height: 48px; padding: 12px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.subbar { background: var(--white); border-bottom: 1px solid var(--border); }
.subbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }
.subbar__label { color: var(--red); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; }
.subbar__ad { font-size: 13px; color: var(--muted); border: 1px solid var(--border); padding: 2px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section--white { background: var(--white); }
.section--off { background: var(--off); }
.section--blue { background: var(--blue-bg); }

.kicker { color: var(--red); font-weight: 800; font-size: 14px; letter-spacing: 2px; margin: 0 0 14px; }
.kicker--green { color: var(--green); }
.headline {
  font-family: var(--serif); font-weight: 900; color: var(--text);
  font-size: clamp(32px, 5vw, 52px); line-height: 1.18; letter-spacing: -.5px;
}
.dek { color: var(--muted); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.55; margin: 22px 0 0; }
.h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.22; color: var(--text); margin-bottom: 20px; }
.lead { font-size: 21px; color: var(--muted); }
.subtitle { font-size: 22px; color: var(--green-dark); font-weight: 700; margin: 12px 0 0; }
.note { font-size: 17px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 18px; margin-top: 28px; }
.fine { font-size: 15px; color: var(--muted); margin-top: 24px; }

/* Byline */
.byline { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.byline__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gray-bg); border: 1px solid var(--border); display: grid; place-items: center; font-weight: 800; color: var(--muted); }
.byline__meta { display: flex; flex-direction: column; line-height: 1.35; font-size: 17px; }
.byline__meta span { color: var(--muted); font-size: 16px; }
.byline__date { font-size: 15px !important; }
.share { display: flex; gap: 8px; margin-left: auto; }
.share__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--white);
  display: grid; place-items: center; cursor: pointer; transition: border-color .2s, transform .2s;
}
.share__btn svg { width: 18px; height: 18px; fill: var(--text-2); }
.share__btn:hover { border-color: var(--red); transform: translateY(-2px); }
.share__btn:hover svg { fill: var(--red); }

/* Figures / placeholders */
.figure { margin: 44px 0; }
.figure figcaption { font-size: 16px; color: var(--muted); margin-top: 12px; padding-left: 12px; border-left: 3px solid var(--border); line-height: 1.5; }
.img-ph {
  width: 100%; border-radius: 14px; border: 1px solid var(--border); overflow: hidden;
  background: linear-gradient(135deg, #FDFBF6 0%, #F4F8FC 55%, #EAF6F1 100%);
  display: grid; place-items: center; text-align: center;
}
.img-ph--hero { aspect-ratio: 16 / 9; }
.img-ph--wide { aspect-ratio: 21 / 9; }
.img-ph--sq { aspect-ratio: 4 / 3; }
.img-ph__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px; max-width: 520px; }
.img-ph__icon { font-size: 34px; }
.img-ph__label { font-weight: 800; letter-spacing: 2px; font-size: 14px; color: var(--green-dark); }
.img-ph__desc { font-size: 16px; color: var(--muted); line-height: 1.5; }

/* Prose */
.prose p { margin: 0 0 22px; }
.dropcap { float: left; font-family: var(--serif); font-weight: 900; font-size: 68px; line-height: .9; margin: 8px 12px 0 0; color: var(--red); }

/* Lists */
.check-list, .x-list { list-style: none; padding: 0; margin: 10px 0 28px; display: grid; gap: 12px; }
.check-list li, .x-list li {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px 14px 52px;
  position: relative; box-shadow: var(--shadow); font-size: 19px;
}
.check-list li::before { content: ""; position: absolute; left: 18px; top: 50%; width: 20px; height: 20px; margin-top: -10px; border-radius: 50%; background: #FDECEC; box-shadow: inset 0 0 0 6px #FDECEC, inset 0 0 0 20px var(--red); }
.x-list li::before { content: "✕"; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--red); font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip { background: var(--white); border: 1px solid var(--border); border-radius: 99px; padding: 8px 18px; font-weight: 700; font-size: 17px; color: var(--text-2); }

/* Stat card */
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 44px 32px; text-align: center; margin-top: 36px; border-top: 4px solid var(--red);
}
.stat-card__num { font-family: var(--serif); font-weight: 900; font-size: clamp(64px, 10vw, 96px); color: var(--red); line-height: 1; }
.stat-card__num span { display: block; font-family: var(--sans); font-size: 18px; letter-spacing: 4px; color: var(--text); margin-top: 10px; }
.stat-card__text { font-size: 21px; color: var(--muted); max-width: 460px; margin: 18px auto 0; }

/* Mind Bloom logo */
.mb-logo { display: inline-flex; align-items: center; gap: 12px; }
.mb-logo__mark svg { width: 44px; height: 44px; display: block; }
.mb-logo__text { font-weight: 800; font-size: 24px; color: var(--text-2); letter-spacing: -.3px; display: inline-flex; align-items: flex-start; gap: 6px; }
.mb-logo__text small { font-size: 11px; letter-spacing: 2px; color: var(--green); background: var(--green-soft); padding: 2px 6px; border-radius: 6px; margin-top: 4px; }
.mb-logo--lg { margin-top: 10px; }
.mb-logo--lg .mb-logo__mark svg { width: 64px; height: 64px; }
.mb-logo--lg .mb-logo__text { font-size: 38px; }

.pill-grid { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill-grid li { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 12px 20px; font-weight: 700; box-shadow: var(--shadow); }
.pill-grid li::before { content: "✓ "; color: var(--green); }

/* ===== Devices ===== */
.devices { display: flex; align-items: flex-end; justify-content: center; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.device { display: flex; flex-direction: column; align-items: center; }
.device__label { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin: 14px 0 0; }
.device__frame { background: #F1F3F5; border: 1px solid #DADDE1; box-shadow: var(--shadow-lg); position: relative; }
.screen { background: #fff; font-size: 13px; line-height: 1.4; color: var(--text-2); overflow: hidden; }

.device--desktop .device__frame { width: 560px; border-radius: 14px; padding: 0 10px 10px; }
.device__bar { height: 28px; display: flex; align-items: center; gap: 6px; padding: 0 4px; }
.device__bar i { width: 10px; height: 10px; border-radius: 50%; background: #D9DCE0; }
.device__stand { width: 140px; height: 16px; background: #E6E8EB; border-radius: 0 0 12px 12px; border: 1px solid #DADDE1; border-top: 0; }
.screen--desktop { display: flex; border-radius: 6px; border: 1px solid var(--border); height: 320px; }
.scr-side { width: 140px; background: var(--off); border-right: 1px solid var(--border); padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.scr-side .scr-logo { margin-bottom: 12px; }
.scr-nav { padding: 7px 10px; border-radius: 8px; color: var(--muted); font-weight: 600; }
.scr-nav.is-active { background: var(--green-soft); color: var(--green-dark); }
.scr-main { flex: 1; padding: 16px 18px; }
.scr-logo { font-weight: 800; font-size: 13px; color: var(--text-2); }
.scr-logo small { font-size: 8px; letter-spacing: 1px; color: var(--green); margin-left: 3px; }
.scr-hello { margin: 0; color: var(--muted); font-size: 12px; }
.scr-title { margin: 2px 0 12px; font-weight: 800; font-size: 16px; }
.scr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scr-card { background: var(--blue-soft); border: 1px solid #DCEBF4; border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.scr-card b { font-size: 13px; }
.done { color: var(--green-dark); font-weight: 700; font-size: 11px; }
.scr-progress { margin-top: 12px; border: 1px solid var(--border); border-radius: 10px; padding: 10px; background: #fff; }
.scr-progress__row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; gap: 6px; }
.scr-progress__row span { color: var(--muted); }
.bar { height: 8px; background: var(--green-soft); border-radius: 99px; overflow: hidden; }
.bar__fill { height: 100%; width: 0; background: var(--green); border-radius: 99px; transition: width 1.4s cubic-bezier(.2,.7,.2,1); }
.is-visible .bar__fill { width: var(--w); }
.scr-streak { margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--green-dark); }

.device--tablet .device__frame { width: 300px; border-radius: 22px; padding: 14px; }
.device--tablet .screen { border-radius: 10px; border: 1px solid var(--border); padding: 14px; height: 380px; }
.scr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.scr-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-weight: 800; display: grid; place-items: center; font-size: 11px; }
.scr-list { display: grid; gap: 7px; }
.scr-item { display: flex; justify-content: space-between; align-items: center; background: var(--blue-soft); border: 1px solid #DCEBF4; border-radius: 10px; padding: 10px 12px; font-weight: 700; }
.scr-item em { font-style: normal; color: #fff; background: var(--green); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }

.device--phone .device__frame { width: 190px; border-radius: 30px; padding: 10px; }
.device__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 60px; height: 14px; background: #E1E4E8; border-radius: 99px; z-index: 2; }
.device--phone .screen { border-radius: 22px; border: 1px solid var(--border); padding: 34px 12px 14px; height: 360px; font-size: 12px; }
.device--phone .scr-title { font-size: 14px; }
.device--phone .scr-item { padding: 8px 10px; font-size: 12px; }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.feature {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 22px; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
.feature h3 { font-size: 17px; letter-spacing: .8px; text-transform: uppercase; font-weight: 800; color: var(--text-2); line-height: 1.3; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }

/* ===== Pro cards ===== */
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.pro-card__label { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; margin: 0 0 10px; }
.pro-card__name { font-weight: 800; margin: 0 0 12px; font-size: 17px; }
.pro-card blockquote { margin: 0 0 12px; font-family: var(--serif); font-size: 18px; color: var(--muted); line-height: 1.6; }
.pro-card__loc { margin: 0; font-size: 15px; color: var(--muted); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 26px; text-align: center; }
.step__num { width: 60px; height: 60px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); border: 2px solid var(--green); font-weight: 800; font-size: 24px; display: inline-grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 19px; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); }

/* ===== Timeline ===== */
.timeline-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); padding: 44px 28px 32px; margin-top: 32px; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--border); }
.timeline li { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 6px; }
.tl-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--green); display: grid; place-items: center; font-size: 22px; position: relative; z-index: 1; }
.tl-time { margin-top: 14px; font-weight: 800; color: var(--red); font-size: 14px; letter-spacing: 1.5px; }
.tl-name { font-weight: 700; font-size: 18px; line-height: 1.35; margin-top: 4px; }
.timeline__total { text-align: center; margin: 32px 0 0; padding-top: 22px; border-top: 1px solid var(--border); font-weight: 800; letter-spacing: 2px; color: var(--green-dark); font-size: 18px; }

/* ===== Gallery / callout ===== */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gallery .figure { margin: 0 0 40px; }
.callout {
  margin: 0; background: var(--blue-bg); border-left: 4px solid var(--red); border-radius: 0 14px 14px 0;
  padding: 30px 32px; font-family: var(--serif); font-size: clamp(20px, 2.4vw, 25px); line-height: 1.55; color: var(--text);
}

/* ===== Pricing ===== */
.price-card {
  max-width: 560px; margin: 36px auto 0; background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 40px 36px; text-align: center; border-top: 5px solid var(--green);
}
.price-card__head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.price-card__tier { margin: 0; font-weight: 800; letter-spacing: 2px; font-size: 14px; color: var(--muted); }
.price { margin: 24px 0; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price__regular { margin: 0; color: var(--muted); font-size: 18px; }
.price__regular s { color: var(--red); font-weight: 700; margin-left: 4px; }
.price__label { margin: 12px 0 0; font-weight: 800; letter-spacing: 2px; font-size: 15px; color: var(--green-dark); }
.price__now { margin: 0; font-weight: 800; font-size: clamp(76px, 12vw, 104px); line-height: 1; color: var(--text); letter-spacing: -2px; }
.price__now sup { font-size: .42em; vertical-align: .9em; margin-right: 2px; color: var(--green); }
.price__terms { margin: 12px 0 0; font-weight: 800; font-size: 15px; letter-spacing: 1.2px; color: var(--text-2); }
.price__terms span { color: var(--green); margin: 0 6px; }
.includes { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.includes li { position: relative; padding-left: 32px; font-size: 18px; line-height: 1.45; }
.includes li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.instant { margin: 14px 0 0; font-weight: 700; color: var(--green-dark); }
.payments { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.payments span { border: 1px solid var(--border); border-radius: 8px; padding: 5px 10px; font-size: 12px; font-weight: 800; letter-spacing: .8px; color: var(--muted); background: var(--white); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 16px 30px;
  border-radius: 12px; font-weight: 800; font-size: 19px; letter-spacing: .6px; text-decoration: none; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; border: 0;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(63,157,125,.28); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(63,157,125,.32); }
.btn--block { width: 100%; min-height: 66px; font-size: 20px; }
.btn--lg { min-height: 64px; padding: 18px 44px; font-size: 20px; }
.btn--pulse { animation: pulse 2.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.btn--pulse:hover { animation: none; }

/* ===== Final CTA ===== */
.final-cta { background: var(--white); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); text-align: center; padding: 48px 28px; }
.final-cta__title { font-family: var(--serif); font-weight: 900; font-size: clamp(24px, 3.2vw, 34px); line-height: 1.25; }
.final-cta__product { margin: 18px 0 0; font-weight: 800; font-size: 21px; }
.final-cta__product span { display: block; font-weight: 600; color: var(--muted); font-size: 17px; letter-spacing: 1px; text-transform: uppercase; }
.final-cta__price { font-size: 64px; font-weight: 800; margin: 6px 0 20px; color: var(--green-dark); line-height: 1.1; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; margin-top: 24px; }
.faq__item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left; font: inherit; font-weight: 700; font-size: 19px; color: var(--text);
  padding: 20px 60px 20px 22px; position: relative; cursor: pointer; min-height: 64px; line-height: 1.4;
}
.faq__q:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; border-radius: 14px; }
.faq__icon { position: absolute; right: 20px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--green-soft); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--green-dark); transform: translate(-50%, -50%); transition: transform .3s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

/* ===== Footer ===== */
.site-footer { background: #F7F7F7; border-top: 1px solid var(--border); color: #3C4043; padding: 56px 0 110px; font-size: 17px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer__brand { font-family: var(--serif); font-weight: 900; font-size: 24px; color: var(--red); margin: 0; }
.footer__tag { margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.footer__h { font-weight: 800; margin: 0 0 10px; color: var(--text-2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.site-footer a { color: #3C4043; text-decoration: none; }
.site-footer a:hover { color: var(--red); text-decoration: underline; }
.footer__legal { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 15px; color: var(--muted); line-height: 1.6; }
.footer__legal p { margin: 0 0 10px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; background: #FFFFFF; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(17,24,39,.06); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  align-items: center; justify-content: space-between; gap: 12px; transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.is-shown { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__info strong { font-size: 17px; }
.sticky-cta__info span { font-size: 22px; font-weight: 800; color: var(--green-dark); }
.sticky-cta .btn { min-height: 52px; padding: 12px 22px; font-size: 17px; }

/* ===== Toast ===== */
.toast { position: fixed; left: 50%; bottom: 96px; transform: translate(-50%, 20px); background: #fff; color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 12px 20px; border-radius: 10px; font-weight: 700; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 300; }
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .device--desktop .device__frame { width: 480px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(17,24,39,.06); flex-direction: column; gap: 0; padding: 8px 16px 16px;
    max-height: 0; overflow: hidden; opacity: 0; padding-top: 0; padding-bottom: 0; transition: max-height .3s ease, opacity .25s, padding .3s;
  }
  .main-nav.is-open { max-height: 480px; opacity: 1; padding-top: 8px; padding-bottom: 16px; }
  .main-nav a { color: var(--text); padding: 14px 8px; border-bottom: 1px solid var(--border); font-size: 17px; border-radius: 0; }
  .main-nav a:hover { background: var(--off); color: var(--red); }
  .pro-grid, .steps { grid-template-columns: 1fr; }
  .devices { gap: 28px; }
  .device--desktop { width: 100%; }
  .device--desktop .device__frame { width: 100%; max-width: 560px; }

  /* Vertical timeline */
  .timeline { grid-template-columns: 1fr; gap: 22px; }
  .timeline::before { top: 28px; bottom: 28px; left: 28px; right: auto; width: 2px; height: auto; }
  .timeline li { flex-direction: row; text-align: left; align-items: center; gap: 16px; padding: 0; flex-wrap: wrap; }
  .tl-time { margin: 0; order: 2; width: calc(100% - 72px); margin-left: 72px; margin-top: -34px; }
  .tl-name { order: 3; margin: 0 0 0 72px; width: calc(100% - 72px); }
  .tl-dot { order: 1; flex-shrink: 0; }
}

@media (max-width: 768px) {
  body { font-size: 18px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .brand__name { font-size: 24px; }
  .brand__tag { font-size: 12px; }
  .site-header__inner { min-height: 72px; }
  .share { margin-left: 0; width: 100%; }
  .img-ph--wide { aspect-ratio: 16 / 10; }
  .gallery { grid-template-columns: 1fr; gap: 0; }
  .includes { grid-template-columns: 1fr; }
  .price-card { padding: 32px 20px; }
  .callout { padding: 24px 22px; }
  .sticky-cta { display: flex; }
  .mb-logo--lg .mb-logo__text { font-size: 30px; }
  .subbar__label { font-size: 12px; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .screen--desktop { height: 280px; }
  .scr-side { display: none; }
  .device--tablet .device__frame { width: 100%; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Photos ===== */
.photo { width: 100%; height: auto; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); background: var(--gray-bg); }
.photo--hero { aspect-ratio: 16 / 9; }
.photo--wide { aspect-ratio: 21 / 9; }
.photo--sq { aspect-ratio: 4 / 3; }
@media (max-width: 768px) { .photo--wide { aspect-ratio: 16 / 10; } }
