/* ═══════════ novola sales site (www2) ═══════════ */
:root {
  --bg: #faf9f6;
  --bg-soft: #f2efe8;
  --panel: #ffffff;
  --line: rgba(45, 130, 120, 0.13);
  --text: #1a2330;
  --muted: #5d6e7f;
  --teal: #2dd4bf;
  --teal-deep: #0d9488;
  --warm: #f4a76a;
  --radius: 18px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#bg3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .nav, .footer { position: relative; z-index: 2; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; }

/* ───────── Nav ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 249, 246, 0.90);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 36px;
}
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.45rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.03em;
}
.logo-dot {
  display: inline-block; width: 8px; height: 8px; margin-left: 3px;
  border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: var(--text); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 99px; text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(120deg, var(--teal), var(--teal-deep));
  color: #06281f;
  box-shadow: 0 6px 26px rgba(45, 212, 191, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(45, 212, 191, 0.42); }
.btn-ghost {
  color: var(--text); border: 1px solid rgba(26, 35, 48, 0.20);
  background: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); transform: translateY(-2px); background: rgba(255,255,255,0.9); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ───────── Hero ───────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 150px 0 90px; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 500; color: var(--teal);
  border: 1px solid rgba(45, 212, 191, 0.3); border-radius: 99px;
  padding: 8px 18px; margin-bottom: 34px;
  background: rgba(45, 212, 191, 0.06);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,212,191,.5); }
  70% { box-shadow: 0 0 0 10px rgba(45,212,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}
.hero-title {
  font-size: clamp(2.8rem, 7.2vw, 5.4rem); line-height: 1.06;
  margin-bottom: 28px; font-weight: 800;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--teal) 10%, var(--warm) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  max-width: 680px; margin: 0 auto 40px; color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill {
  font-size: .8rem; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line); border-radius: 99px; padding: 7px 15px;
  background: rgba(255,255,255,0.02);
}
.hero-scrollhint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(26,35,48,.18); border-radius: 14px;
}
.hero-scrollhint span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 3px; background: var(--teal); animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0; } }

/* ───────── Stats ───────── */
.stats { padding: 30px 0 90px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel);
  padding: 30px 26px; text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.stat-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--teal);
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: .88rem; margin-top: 10px; }

/* ───────── Sections ───────── */
section { position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); }

/* ───────── Showcase / Cases ───────── */
.showcase { padding: 60px 0 40px; }
.case {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px;
  align-items: center; margin-bottom: 130px;
}
.case.flip .case-text { order: 2; }
.case.flip .case-visual { order: 1; }
.case-index {
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  color: var(--teal); letter-spacing: .2em;
}
.case-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 14px 0 18px; }
.case-text p { color: var(--muted); margin-bottom: 22px; }
.case-list { list-style: none; }
.case-list li {
  color: var(--text); font-size: .93rem; padding: 9px 0 9px 30px; position: relative;
  border-top: 1px solid var(--line);
}
.case-list li::before {
  content: "✓"; position: absolute; left: 4px; color: var(--teal); font-weight: 700;
}

/* Browser frame */
.browser {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(148,200,220,.16);
  background: #f6f4ef;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(45,212,191,.06);
  transform-style: preserve-3d;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  background: #0f1722; padding: 11px 14px;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.browser-url {
  margin-left: 12px; flex: 1; font-size: .72rem; color: #7e93a5;
  background: rgba(255,255,255,.06); border-radius: 7px; padding: 4px 12px;
}

/* Mock shared */
.mock { padding: 16px; color: #2c3540; font-size: .72rem; }
.mock b { color: #1d242c; }
.mock small { display: block; color: #8a96a3; font-size: .64rem; }
.tag {
  display: inline-block; font-style: normal; font-size: .6rem; font-weight: 700;
  color: #fff; border-radius: 99px; padding: 2px 9px; margin-right: 4px;
}
.tag.blue { background: #2196d3; } .tag.teal { background: #1cb5a3; }
.tag.gray { background: #6b7682; } .tag.green { background: #3cab63; }
.tag.yellow { background: #e8b020; } .tag.bar { background: #e8a23d; }
.tag.rksv { background: #e6f4ea; color: #2c7a45; }
.mbtn {
  display: inline-block; font-style: normal; font-size: .6rem; font-weight: 600;
  color: #fff; border-radius: 7px; padding: 4px 9px; margin-left: 4px; white-space: nowrap;
}
.mbtn.teal { background: #1cb5a3; } .mbtn.blue { background: #2f80ed; }
.mbtn.red { background: #e05252; } .mbtn.yellow { background: #f0b429; color: #5a4300; }
.mbtn.green { background: #3cab63; } .mbtn.purple { background: #8e5cd9; }
.mbtn.orange { background: #ef7d3b; } .mbtn.dark { background: #3a4450; }
.mbtn.sel { background: #fff; color: #2c3540; border: 1px solid #d6d2c8; }
.ta-r { text-align: right; }

/* Mock: calendar */
.mock-cal-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.mock-cal-nav { display: flex; align-items: center; gap: 6px; font-size: .74rem; }
.mc-btn {
  background: #fff; border: 1px solid #ddd8cd; border-radius: 8px; padding: 3px 9px; font-size: .66rem;
}
.mc-btn.wide { padding: 3px 13px; }
.mock-cal-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.chip {
  font-size: .58rem; background: #fff; border: 1px solid #ddd8cd; border-radius: 99px;
  padding: 3px 9px; display: inline-flex; align-items: center; gap: 4px;
}
.chip.on { background: #1d242c; color: #fff; border-color: #1d242c; }
.cdot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.cdot.green { background: #3cab63; } .cdot.teal { background: #1cb5a3; }
.cdot.purple { background: #8e5cd9; } .cdot.orange { background: #ef9b3b; } .cdot.gray { background: #8a96a3; }
.mock-cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; height: 250px; }
.mc-col {
  position: relative; background: #fdfcf9; border: 1px solid #eee9de; border-radius: 10px;
  overflow: hidden;
}
.mc-day {
  text-align: center; font-size: .6rem; color: #8a96a3; padding: 6px 0;
  border-bottom: 1px solid #eee9de; background: #f8f5ee;
}
.mc-day b { display: block; font-size: .8rem; color: #2c3540; }
.mc-ev {
  position: absolute; left: 5%; width: 90%;
  background: #fdf8ee; border-left: 3px solid #1cb5a3; border-radius: 6px;
  padding: 4px 6px; font-size: .58rem; font-weight: 600; color: #2c3540;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mc-ev span { color: #8a96a3; font-weight: 500; margin-right: 3px; }
.mc-ev.p { border-left-color: #8e5cd9; }
.mc-ev.alt { background: #fbf3e2; }
.mc-free {
  position: absolute; left: 5%; width: 90%;
  border: 1.5px dashed #3cab63; color: #3cab63; border-radius: 6px;
  font-size: .58rem; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.mc-holiday { background: #fdeeee; }
.mc-holiday-tag {
  margin: 8px 6px; background: #fff; border: 1px solid #f3c8c8; color: #c25555;
  border-radius: 7px; text-align: center; font-size: .58rem; padding: 3px;
}

/* Mock: tables */
.mock-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 12px; }
.mtab {
  font-size: .62rem; font-weight: 600; color: #5d6873; background: #fff;
  border: 1px solid #e6e1d5; border-radius: 9px; padding: 5px 11px;
  display: inline-flex; align-items: center; gap: 5px;
}
.mtab.on { color: #2196d3; border-color: #bfe0f2; background: #eef7fc; }
.bubble {
  font-style: normal; background: #2196d3; color: #fff; font-size: .55rem; font-weight: 700;
  border-radius: 99px; padding: 1px 6px;
}
.bubble.red { background: #e05252; }
.mock-table { background: #fff; border: 1px solid #eae5da; border-radius: 12px; overflow: hidden; }
.mt-head, .mt-row {
  display: grid; grid-template-columns: 1.4fr 1.2fr .6fr 1.8fr; gap: 8px;
  padding: 9px 14px; align-items: center;
}
.mock-wait .mt-head, .mock-wait .mt-row { grid-template-columns: 1.1fr 1fr .8fr 1.2fr; }
.mt-head {
  background: #f3efe6; font-size: .58rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #8a8470;
}
.mt-row { border-top: 1px solid #f0ece2; }
.mt-row .num { color: #2196d3; font-weight: 700; text-align: center; }
.age {
  display: inline-block; font-style: normal; font-size: .56rem; font-weight: 600;
  background: #e3f3e9; color: #2c7a45; border-radius: 6px; padding: 1px 7px; margin-top: 2px;
}
.age.old { background: #fdeccf; color: #a26a14; }

/* Mock: waitlist cards */
.mw-cards { display: flex; gap: 10px; margin-bottom: 12px; }
.mw-card {
  flex: 1; background: #fff; border: 1px solid #eae5da; border-radius: 12px;
  text-align: center; padding: 12px 6px;
}
.mw-card b { font-size: 1.3rem; color: #2196d3; display: block; }
.mw-card span { font-size: .58rem; color: #8a96a3; }

/* Mock: billing */
.mb-section { font-weight: 700; font-size: .78rem; margin-bottom: 10px; color: #1d242c; }
.mb-group {
  background: #f3efe6; border-radius: 9px; padding: 6px 12px; font-size: .62rem;
  font-weight: 600; color: #5d6873; margin: 8px 0;
}
.mb-group .open { font-style: normal; color: #c0392b; }
.mb-row {
  display: grid; grid-template-columns: 1.3fr .7fr .7fr 1.9fr; gap: 8px;
  background: #fff; border: 1px solid #eee9de; border-radius: 10px;
  padding: 8px 12px; align-items: center; margin-bottom: 6px;
}
.mb-row .amount { font-weight: 700; color: #1d242c; }
.mb-sub {
  font-size: .6rem; color: #8a7426; background: #fdf8e7; border: 1px dashed #e8d99a;
  border-radius: 9px; padding: 6px 12px; margin: -2px 0 8px 18px;
}

/* Mock: settings */
.ms-banner {
  background: #e8f7ef; border: 1px solid #bfe5cd; border-radius: 11px;
  padding: 10px 14px; font-size: .66rem; color: #2c6e46; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.ms-banner .mbtn { margin-left: auto; }
.ms-row {
  display: grid; grid-template-columns: 1fr 1.6fr auto; gap: 12px; align-items: center;
  background: #fff; border: 1px solid #eee9de; border-radius: 11px;
  padding: 11px 14px; margin-bottom: 7px; font-weight: 600; font-size: .7rem;
}
.ms-row small { font-weight: 400; }
.switch {
  width: 34px; height: 19px; border-radius: 99px; background: #cfd6dd; position: relative;
  display: inline-block; flex-shrink: 0; transition: background .3s;
}
.switch::after {
  content: ""; position: absolute; top: 2.5px; left: 3px; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; transition: left .3s;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.switch.on { background: #1cb5a3; }
.switch.on::after { left: 17px; }

.mcard .switch { background: rgba(45,130,120,.15); }
.mcard .switch.on { background: var(--teal); }

/* ───────── Features ───────── */
.features { padding: 130px 0 60px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel);
  padding: 32px 28px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.fcard:hover {
  transform: translateY(-6px); border-color: rgba(45,212,191,.4);
  box-shadow: 0 14px 40px rgba(45,212,191,.13);
}
.ficon { font-size: 1.7rem; margin-bottom: 16px; }
.fcard h3 { font-size: 1.12rem; margin-bottom: 10px; }
.fcard p { color: var(--muted); font-size: .9rem; }

/* ───────── Modules ───────── */
.modules { padding: 130px 0 60px; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mcard:hover { transform: translateY(-6px); border-color: rgba(244,167,106,.4); box-shadow: 0 14px 40px rgba(244,167,106,.13); }
.mcard header { display: flex; align-items: center; gap: 12px; }
.mcard .micon { font-size: 1.4rem; }
.mcard h3 { font-size: 1.05rem; flex: 1; }
.mcard p { color: var(--muted); font-size: .88rem; flex: 1; }
.mcard footer {
  font-size: .76rem; color: var(--warm); font-weight: 500;
  border-top: 1px solid var(--line); padding-top: 14px;
}

/* ───────── Security ───────── */
.security { padding: 130px 0 60px; }
.sec-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.sec-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 14px 0 18px; }
.sec-text p { color: var(--muted); margin-bottom: 28px; }
.sec-list { list-style: none; display: grid; gap: 12px; }
.sec-list li {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  background: var(--panel); color: var(--muted); font-size: .9rem;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.sec-list li b {
  display: block; color: var(--text); font-family: var(--font-head);
  font-size: .98rem; margin-bottom: 4px;
}

/* ───────── Pricing ───────── */
.pricing { padding: 130px 0 60px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pcard {
  border: 1px solid var(--line); border-radius: 22px; padding: 38px 32px;
  background: var(--panel); display: flex; flex-direction: column;
  position: relative; transition: transform .35s, border-color .35s, box-shadow .35s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
.pcard.featured {
  border-color: rgba(45,212,191,.4);
  background: linear-gradient(170deg, rgba(45,212,191,.07), var(--panel) 55%);
  box-shadow: 0 8px 40px rgba(45,212,191,.15);
}
.ptag {
  position: absolute; top: -13px; left: 32px;
  background: linear-gradient(120deg, var(--teal), var(--warm));
  color: #06281f; font-size: .72rem; font-weight: 700; font-family: var(--font-head);
  border-radius: 99px; padding: 4px 14px;
}
.pcard h3 { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.price { margin: 14px 0 4px; }
.price b { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; }
.price span { color: var(--muted); font-size: .95rem; margin-left: 4px; }
.psub { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.pcard ul { list-style: none; margin-bottom: 30px; flex: 1; }
.pcard li {
  font-size: .9rem; color: var(--text); padding: 8px 0 8px 26px; position: relative;
  border-top: 1px solid var(--line);
}
.pcard li::before { content: "✓"; position: absolute; left: 2px; color: var(--teal); font-weight: 700; }
.pcard .btn { justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 34px; }

/* ───────── CTA ───────── */
.cta { padding: 150px 0; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); max-width: 760px; margin: 0 auto 18px; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta p.cta-hint { font-size: .82rem; opacity: .7; margin: 22px auto 0; }

/* ───────── Footer ───────── */
.footer { border-top: 1px solid var(--line); padding: 50px 0; background: var(--bg-soft); }
.footer-inner { text-align: center; }
.footer p { color: var(--muted); font-size: .85rem; margin-top: 12px; }
.footer .fine { font-size: .75rem; opacity: .65; }

/* ───────── Reveal defaults (JS overrides) ───────── */
.reveal, .reveal-visual, [data-hero] { will-change: transform, opacity; }
.no-js .reveal, .no-js .reveal-visual { opacity: 1 !important; transform: none !important; }

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .case, .case.flip { grid-template-columns: 1fr; gap: 34px; margin-bottom: 90px; }
  .case.flip .case-text { order: 1; }
  .case.flip .case-visual { order: 2; }
  .feature-grid, .module-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .feature-grid, .module-grid, .price-grid { grid-template-columns: 1fr; }
  .mt-head, .mt-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .mt-head span:last-child, .mt-row span:last-child { display: none; }
  .mb-row { grid-template-columns: 1.3fr .7fr .7fr; }
  .mb-row .ta-r { display: none; }
  .hero { padding-top: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
