/* Shared presentation for niche landing pages; public URLs stay under /assets/. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/releases/20260912T101837Z-niches/assets/fonts/manrope/manrope-variable.ttf") format("truetype");
}

:root {
  --ink: #17171f;
  --ink-2: #2c2c37;
  --muted: #6e6e7c;
  --line: rgba(23, 23, 31, .11);
  --paper: #ffffff;
  --soft: #f6f6f9;
  --cyan: #25f4ee;
  --cyan-deep: #00aeb3;
  --cyan-soft: #e9fffe;
  --pink: #fe2c55;
  --pink-soft: #fff0f4;
  --violet: #8a62ee;
  --violet-soft: #f1edff;
  --success: #19a979;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(23, 23, 31, .13);
  --shadow-soft: 0 14px 38px rgba(23, 23, 31, .08);
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.motion-off { scroll-behavior: auto; }
body.motion-off *, body.motion-off *::before, body.motion-off *::after { animation: none !important; transition-duration: .01ms !important; }
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--cyan); color: var(--ink); }
:focus-visible { outline: 3px solid var(--cyan-deep); outline-offset: 3px; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-160%); background: var(--ink); color: white; padding: 12px 18px; border-radius: 12px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 9vw, 130px) 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink); color: white; overflow: hidden; }
.section--dark::before, .section--dark::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(90px); opacity: .22; pointer-events: none; }
.section--dark::before { background: var(--cyan); top: -250px; left: -220px; }
.section--dark::after { background: var(--pink); right: -270px; bottom: -300px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan-deep); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; font-size: .77rem; }
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan-deep), var(--pink)); }
.section--dark .eyebrow { color: var(--cyan); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { margin: 12px 0 14px; font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.05em; }
.section-heading p { margin: 0; max-width: 680px; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.16rem); }
.section--dark .section-heading p { color: rgba(255,255,255,.7); }
.gradient-text { background: linear-gradient(100deg, var(--cyan-deep) 8%, #4c90dd 44%, #ff4f9d 86%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 16px; padding: 13px 21px; font-weight: 800; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--ink); color: white; box-shadow: 7px 7px 0 var(--cyan); }
.btn--primary:hover { box-shadow: 10px 10px 0 var(--cyan); }
.btn--light { background: white; color: var(--ink); box-shadow: 7px 7px 0 var(--cyan); }
.btn--outline { background: rgba(255,255,255,.72); border-color: var(--line); color: var(--ink); backdrop-filter: blur(15px); }
.btn--small { min-height: 44px; padding: 9px 16px; border-radius: 13px; font-size: .92rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .25s, box-shadow .25s, backdrop-filter .25s; }
.site-header.is-scrolled { background: rgba(255,255,255,.88); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line), 0 14px 34px rgba(23,23,31,.05); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { width: 154px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) { font-weight: 700; color: var(--ink-2); font-size: .93rem; transition: color .2s; }
.nav a:not(.btn):hover { color: var(--cyan-deep); }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); background: white; border-radius: 13px; }

.hero { min-height: 100vh; padding: 132px 0 86px; display: grid; place-items: center; position: relative; isolation: isolate; overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; opacity: .34; }
.hero::before { width: 440px; height: 440px; background: var(--cyan); left: -250px; top: 60px; }
.hero::after { width: 460px; height: 460px; background: var(--pink); right: -260px; bottom: -100px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr); align-items: center; gap: clamp(46px, 7vw, 92px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .82rem; font-weight: 700; margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--cyan-deep); }
.hero h1 { margin: 12px 0 18px; letter-spacing: -.055em; line-height: 1.1; overflow-wrap: anywhere; }
.hero h1 .seo-title { display: block; font-size: clamp(1rem, 1.8vw, 1.3rem); line-height: 1.2; letter-spacing: -.02em; color: var(--cyan-deep); margin-bottom: 15px; text-transform: none; }
.hero h1 .display-title { display: block; font-size: clamp(2.25rem, 4.2vw, 3.5rem); line-height: 1.1; text-wrap: balance; }
.hero-copy > p { color: var(--muted); max-width: 650px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 26px; color: var(--ink-2); font-size: .88rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row .icon { width: 18px; height: 18px; color: var(--success); }

.hero-visual { position: relative; min-height: 610px; perspective: 1200px; }
.hero-stage { position: absolute; inset: 25px 8px 25px 30px; border-radius: 42px; background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,246,249,.75)); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); overflow: hidden; transform-style: preserve-3d; transition: transform .18s linear; }
.hero-stage::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,23,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,31,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.hero-illustration { width: 100%; height: 100%; object-fit: cover; }
.mascot-float { position: absolute; z-index: 4; width: 120px; right: -10px; top: 0; filter: drop-shadow(0 18px 24px rgba(23,23,31,.22)); animation: float 5s ease-in-out infinite; transform: translateZ(70px); }
.hero-mini-card { position: absolute; z-index: 5; left: -28px; bottom: 42px; width: 250px; padding: 17px; border-radius: 22px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.9); box-shadow: 6px 6px 0 var(--cyan), var(--shadow-soft); backdrop-filter: blur(18px); transform: translateZ(86px) rotate(-2deg); }
.hero-mini-card small { display: block; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero-mini-card strong { display: block; margin-top: 5px; font-size: 1rem; }
.hero-mini-card .mini-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: .82rem; }
.hero-mini-card .mini-line span:last-child { color: var(--success); font-weight: 800; }
.motion-toggle { display: none; position: absolute; right: 20px; bottom: 18px; z-index: 7; align-items: center; gap: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-radius: 999px; padding: 8px 12px; font-size: .76rem; font-weight: 800; cursor: pointer; }
.motion-toggle.is-enhanced { display: inline-flex; }
.motion-toggle:disabled { cursor: default; }
.motion-toggle .icon { width: 16px; height: 16px; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(.2px); animation: drift 8s ease-in-out infinite; }
.orb--1 { width: 88px; height: 88px; background: radial-gradient(circle at 30% 25%, white, var(--cyan) 36%, var(--cyan-deep)); left: 0; top: 75px; box-shadow: 0 18px 34px rgba(0,174,179,.25); }
.orb--2 { width: 55px; height: 55px; background: radial-gradient(circle at 30% 25%, white, var(--pink) 44%, #a91361); right: 15px; bottom: 80px; animation-delay: -2s; }

.logo-cloud { border-block: 1px solid var(--line); background: rgba(246,246,249,.62); }
.logo-cloud-inner { min-height: 92px; display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; color: var(--muted); font-size: .86rem; font-weight: 700; }
.logo-cloud strong { color: var(--ink); }
.logo-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; background: white; border: 1px solid var(--line); border-radius: 999px; }
.logo-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--pink)); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(23,23,31,.12); border-color: rgba(0,174,179,.28); }
.card-number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 13px; background: var(--ink); color: white; font-weight: 900; box-shadow: 4px 4px 0 var(--cyan); }
.card h3 { margin: 24px 0 10px; font-size: 1.27rem; line-height: 1.2; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); }
.card::after { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 50%; background: var(--pink-soft); right: -55px; bottom: -55px; transition: transform .3s; }
.card:hover::after { transform: scale(1.35); }

.product-showcase { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: clamp(44px, 7vw, 90px); }
.product-copy h2 { margin: 13px 0 16px; font-size: clamp(2.2rem, 4vw, 4.35rem); line-height: 1.03; letter-spacing: -.05em; }
.product-copy p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.product-copy ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.product-copy li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.85); }
.product-copy li .icon { color: var(--cyan); margin-top: 2px; }
.app-window { position: relative; border-radius: 28px; background: #f7f7fa; border: 1px solid rgba(255,255,255,.3); box-shadow: 12px 12px 0 rgba(37,244,238,.78), 0 35px 95px rgba(0,0,0,.32); color: var(--ink); overflow: hidden; transform: rotateY(-5deg) rotateX(2deg); transform-style: preserve-3d; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 0 20px; background: white; border-bottom: 1px solid var(--line); }
.app-topbar img { width: 112px; }
.app-status { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 800; color: var(--success); }
.app-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(25,169,121,.12); }
.app-tabs { display: none; gap: 7px; padding: 13px 16px; background: white; border-bottom: 1px solid var(--line); overflow-x: auto; }
.app-window.is-enhanced .app-tabs { display: flex; }
.app-tab { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); background: white; border-radius: 11px; padding: 8px 12px; font-size: .78rem; font-weight: 800; cursor: pointer; white-space: nowrap; }
.app-tab.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.app-tab .icon { width: 16px; height: 16px; }
.app-panels { min-height: 415px; }
.app-panel { display: block; padding: 22px; }
.app-panel.is-active { display: block; animation: panelIn .35s var(--ease); }
.app-panel-label { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 14px; }
.schedule { display: grid; gap: 11px; }
.schedule-item { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 12px; padding: 13px; background: white; border: 1px solid var(--line); border-radius: 15px; }
.schedule-time { font-weight: 900; }
.schedule-service strong { display: block; font-size: .9rem; }
.schedule-service span { color: var(--muted); font-size: .75rem; }
.status-chip { border-radius: 999px; background: #eaf9f3; color: var(--success); padding: 5px 9px; font-size: .69rem; font-weight: 900; }
.chat-demo { display: grid; gap: 14px; padding: 10px 0; }
.chat-bubble { max-width: 82%; padding: 13px 15px; border-radius: 18px; font-size: .88rem; box-shadow: 0 7px 18px rgba(23,23,31,.06); }
.chat-bubble--in { background: white; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.chat-bubble--out { background: var(--cyan-soft); border: 1px solid rgba(0,174,179,.18); margin-left: auto; border-bottom-right-radius: 5px; }
.finance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.metric-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 17px; }
.metric-card small { color: var(--muted); font-weight: 700; }
.metric-card strong { display: block; margin-top: 6px; font-size: 1.25rem; }
.metric-card .bar { height: 7px; background: var(--soft); border-radius: 999px; overflow: hidden; margin-top: 13px; }
.metric-card .bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan-deep), var(--violet), var(--pink)); }
.illustrative-note { margin-top: 12px; text-align: right; color: rgba(255,255,255,.5); font-size: .72rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .28s var(--ease), border-color .28s; }
.feature:hover { transform: translateY(-5px); border-color: rgba(0,174,179,.34); }
.feature-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; background: var(--cyan-soft); color: var(--cyan-deep); }
.feature:nth-child(3n+2) .feature-icon { background: var(--pink-soft); color: var(--pink); }
.feature:nth-child(3n+3) .feature-icon { background: var(--violet-soft); color: var(--violet); }
.feature h3 { margin: 17px 0 8px; font-size: 1.03rem; }
.feature p { margin: 0; color: var(--muted); font-size: .91rem; }
.feature--future { border-style: dashed; background: linear-gradient(145deg, var(--violet-soft), white); }
.future-badge { display: inline-flex; margin-top: 14px; border-radius: 999px; background: var(--violet); color: white; padding: 5px 9px; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.online-section { overflow: hidden; }
.online-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr); gap: 70px; align-items: center; }
.online-copy h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.02; letter-spacing: -.05em; margin: 12px 0 17px; }
.online-copy p { color: var(--muted); font-size: 1.06rem; }
.online-copy ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.online-copy li { display: flex; gap: 11px; }
.online-copy .icon { color: var(--success); margin-top: 3px; }
.phone-wrap { position: relative; min-height: 610px; display: grid; place-items: center; perspective: 1100px; }
.phone { width: 310px; border: 11px solid var(--ink); border-radius: 47px; background: white; box-shadow: var(--shadow); overflow: hidden; transform: rotateY(9deg) rotateZ(2deg); animation: float 6.5s ease-in-out infinite; }
.phone-notch { width: 112px; height: 24px; margin: 0 auto 8px; background: var(--ink); border-radius: 0 0 18px 18px; }
.phone-body { padding: 17px; }
.phone-brand { display: flex; align-items: center; gap: 9px; font-weight: 900; }
.phone-brand img { width: 31px; }
.phone-sub { color: var(--muted); font-size: .76rem; margin: 4px 0 18px; }
.phone-service { padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); }
.phone-service strong { display: block; font-size: .9rem; }
.phone-service span { color: var(--muted); font-size: .75rem; }
.date-row, .time-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.date, .time { border: 1px solid var(--line); background: white; border-radius: 11px; text-align: center; padding: 9px 5px; font-size: .73rem; font-weight: 800; }
.date.is-active, .time.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.phone .btn { width: 100%; margin-top: 15px; min-height: 47px; }
.phone-orbit { position: absolute; width: 85px; height: 85px; border-radius: 50%; display: grid; place-items: center; background: white; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.phone-orbit img { width: 61px; }
.phone-orbit--1 { left: 8%; top: 15%; animation: drift 7s ease-in-out infinite; }
.phone-orbit--2 { right: 2%; bottom: 15%; color: var(--pink); animation: drift 7s ease-in-out infinite -3s; }
.phone-orbit--2 .icon { width: 37px; height: 37px; }

.price-wrap { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr); gap: 70px; align-items: center; position: relative; z-index: 1; }
.price-copy h2 { font-size: clamp(2.35rem, 4.5vw, 4.8rem); line-height: 1.01; letter-spacing: -.055em; margin: 12px 0 20px; }
.price-copy p { color: rgba(255,255,255,.72); max-width: 650px; font-size: 1.08rem; }
.price-card { background: white; color: var(--ink); border-radius: 30px; padding: 34px; box-shadow: 10px 10px 0 var(--cyan), 0 38px 90px rgba(0,0,0,.28); }
.price-card .plan-label { color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.price { display: flex; align-items: flex-start; gap: 4px; margin: 18px 0 7px; }
.price .currency { font-size: 1.25rem; font-weight: 900; margin-top: 13px; }
.price .amount { font-size: 4.8rem; line-height: .88; font-weight: 900; letter-spacing: -.07em; }
.price .period { align-self: flex-end; color: var(--muted); font-weight: 800; margin-bottom: 5px; }
.price-card > p { color: var(--muted); margin: 0 0 20px; }
.price-list { list-style: none; padding: 0; margin: 21px 0 25px; display: grid; gap: 11px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.price-list .icon { color: var(--success); width: 19px; height: 19px; margin-top: 2px; }
.price-card .btn { width: 100%; }
.price-note { margin-top: 13px; color: var(--muted); font-size: .73rem; text-align: center; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: transparent; border: 0; padding: 24px 2px; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item:not(.is-enhanced) .faq-question { cursor: default; }
.faq-item:not(.is-enhanced) .faq-question .icon { display: none; }
.faq-question .icon { transition: transform .25s var(--ease); }
.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { color: var(--muted); margin: 0; padding: 0 42px 24px 2px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.related { padding: 54px 0; border-top: 1px solid var(--line); }
.related-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.related-title { font-weight: 900; }
.related-links { display: flex; flex-wrap: wrap; gap: 9px; }
.related-links a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--ink-2); font-size: .79rem; font-weight: 800; transition: background .2s, color .2s, border-color .2s; }
.related-links a:hover { background: var(--ink); color: white; border-color: var(--ink); }

.final-cta { text-align: center; overflow: hidden; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { max-width: 930px; margin: 12px auto 18px; font-size: clamp(2.4rem, 5vw, 5.4rem); line-height: .98; letter-spacing: -.06em; }
.final-cta p { max-width: 680px; margin: 0 auto 30px; color: rgba(255,255,255,.72); font-size: 1.08rem; }

.site-footer { background: #0f0f15; color: rgba(255,255,255,.75); padding: 58px 0 95px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; }
.footer-brand img { width: 185px; margin-bottom: 17px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.58); }
.footer-col h3 { color: white; font-size: .86rem; margin: 0 0 15px; }
.footer-col a { display: block; margin: 9px 0; font-size: .88rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 42px; font-size: .78rem; color: rgba(255,255,255,.48); }

.mobile-cta { display: none; position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: 18px; padding: 9px; box-shadow: 0 16px 55px rgba(23,23,31,.2); opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .25s var(--ease), visibility .25s, transform .25s var(--ease); }
.mobile-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-cta .btn { width: 100%; min-height: 49px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(1.2deg); } }
@keyframes drift { 0%, 100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(10px,-18px,0) rotate(8deg); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid, .product-showcase, .online-grid, .price-wrap { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { min-height: 600px; max-width: 720px; width: 100%; margin: 0 auto; }
  .product-copy { max-width: 760px; }
  .app-window { transform: none; max-width: 760px; width: 100%; margin: 0 auto; }
  .online-grid { gap: 28px; }
  .phone-wrap { min-height: 580px; }
  .price-card { max-width: 560px; }
}

@media (max-width: 820px) {
  .hero h1 .display-title { font-size: clamp(2rem, 5.2vw, 2.5rem); }
  body { padding-bottom: 76px; }
  .container { width: min(100% - 28px, var(--container)); }
  /* Visibility changes immediately so keyboard focus works when reopening mid-transition. */
  html.nav-enhanced .nav { position: fixed; left: 14px; right: 14px; top: 72px; display: grid; gap: 0; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 20px; padding: 10px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .25s; }
  html.nav-enhanced .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a:not(.btn) { padding: 12px 11px; border-radius: 10px; }
  .nav a:not(.btn):hover { background: var(--soft); }
  .nav .btn { margin-top: 6px; }
  html.nav-enhanced .menu-toggle { display: inline-flex; }
  html:not(.nav-enhanced) .site-header { position: static; background: white; }
  html:not(.nav-enhanced) .header-inner { height: auto; padding-block: 18px; flex-wrap: wrap; }
  html:not(.nav-enhanced) .nav { flex-wrap: wrap; gap: 8px 18px; }
  html:not(.nav-enhanced) .hero { padding-top: 40px; }
  .header-inner { height: 70px; }
  .brand img { width: 137px; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 490px; }
  .hero-stage { inset: 15px 0 30px 8px; }
  .hero-mini-card { left: 0; bottom: 28px; width: 220px; }
  .mascot-float { width: 90px; right: 0; }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .related-inner { align-items: flex-start; flex-direction: column; }
  .mobile-cta { display: block; }
}

@media (max-width: 580px) {
  .section { padding: 70px 0; }
  .hero h1 .display-title { font-size: clamp(2rem, 8.8vw, 2.5rem); line-height: 1.12; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .hero-visual { min-height: 400px; }
  .hero-stage { border-radius: 29px; }
  .hero-mini-card { width: 185px; padding: 13px; bottom: 17px; }
  .hero-mini-card .mini-line { font-size: .71rem; }
  .mascot-float { width: 72px; }
  .motion-toggle { right: 10px; bottom: 8px; font-size: 0; padding: 9px; }
  .card-grid, .feature-grid { grid-template-columns: 1fr; }
  .card, .feature { padding: 23px; }
  .product-showcase { gap: 34px; }
  .app-panels { min-height: 440px; }
  .schedule-item { grid-template-columns: 53px 1fr; }
  .schedule-item .status-chip { grid-column: 2; justify-self: start; }
  .finance-grid { grid-template-columns: 1fr; }
  .phone-wrap { min-height: 520px; }
  .phone { width: 274px; }
  .phone-orbit { width: 68px; height: 68px; }
  .phone-orbit img { width: 48px; }
  .price-card { padding: 26px 22px; }
  .price .amount { font-size: 4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* Preserve grid sizing with long labels and narrow devices. */
.hero-grid > *, .product-showcase > *, .online-grid > *, .price-wrap > *,
.card-grid > *, .feature-grid > *, .finance-grid > *, .schedule-service { min-width: 0; }
.hero-copy, .card, .feature, .metric-card { overflow-wrap: anywhere; }
body.motion-off .hero-stage { transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .hero-stage { transform: none !important; }
}
