@charset "utf-8";
/* =====================================================================
   チョクウケ サービスサイト — styles.css
   BEM 記法 / colors_and_type.css のトークン（CSS変数）を参照
   ===================================================================== */

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin : 0;
  padding: 0;
}

body {
  font-family           : var(--font-body);
  color                 : var(--fg-1);
  background            : #fff;
  line-height           : 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display  : block;
}

a {
  color                      : inherit;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--orange-200);
}

:focus-visible {
  outline       : 2px solid var(--focus-ring);
  outline-offset: 2px;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding   : 0;
}

/* h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "palt";
  letter-spacing        : .05rem;
} */

.l-wrap {
  max-width: 1120px;
  margin   : 0 auto;
  padding  : 0 24px;
}

.l-wrap--narrow {
  max-width: 760px;
}

/* ---------- Icon helper ---------- */
.icon {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  flex           : none;
}

[data-lucide] {
  width : 1em;
  height: 1em;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 80px 0;
}

.section--pad-lg {
  padding: 84px 0;
}

.section__head {
  text-align: center;
}

.section__label {
  font-family   : var(--font-num);
  font-weight   : 700;
  font-size     : .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color         : var(--brand-orange);
  margin-bottom : 12px;
}

.section__label--light {
  color: var(--orange-300);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : clamp(1.7rem, 3.2vw, 2.3rem);
  color      : var(--fg-1);
  line-height: 1.3;
}

.section__lead {
  font-size  : 1.05rem;
  line-height: 1.75;
  color      : var(--fg-2);
  margin-top : 14px;
}

.section__rule {
  width        : 40px;
  height       : 4px;
  background   : var(--brand-orange);
  border-radius: 2px;
  margin       : 18px auto 0;
}

/* ---------- Button ---------- */
.btn {
  font-family    : var(--font-body);
  font-weight    : 700;
  border         : none;
  cursor         : pointer;
  border-radius  : var(--r-md);
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  gap            : 8px;
  white-space    : nowrap;
  text-decoration: none;
  padding        : 13px 24px;
  font-size      : 1rem;
  transition     : background .15s ease-out, transform .1s ease-out;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  padding  : 9px 16px;
  font-size: .9rem;
}

.btn--lg {
  padding  : 17px 34px;
  font-size: 1.15rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--brand-orange);
  color     : #fff;
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
  background: var(--orange-600);
}

.btn--navy {
  background: var(--brand-navy);
  color     : #fff;
}

.btn--navy:hover {
  background: var(--navy-600);
}

.btn--ghost {
  background: #fff;
  color     : var(--brand-navy);
  box-shadow: inset 0 0 0 2px var(--brand-navy);
}

.btn--ghost:hover {
  background: var(--navy-50);
}

.btn--ghost-light {
  background: transparent;
  color     : #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .5);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, .1);
}

.btn__icon {
  width : 18px;
  height: 18px;
}

.btn--lg .btn__icon {
  width : 22px;
  height: 22px;
}

/* ---------- Badge ---------- */
.badge {
  font-weight  : 700;
  font-size    : .78rem;
  padding      : 5px 12px;
  border-radius: var(--r-pill);
  display      : inline-flex;
  align-items  : center;
  gap          : 5px;
}

.badge--orange {
  background: var(--brand-orange);
  color     : #fff;
}

.badge--navy {
  background: var(--brand-navy);
  color     : #fff;
}

.badge--soft {
  background: var(--orange-50);
  color     : var(--orange-700);
}

/* ---------- Header ---------- */
.site-header {
  position  : sticky;
  top       : 0;
  z-index   : 50;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .2s;
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  max-width      : 1120px;
  margin         : 0 auto;
  padding        : 0 24px;
  height         : 72px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.site-header__logo {
  display    : flex;
  align-items: center;
}

.site-header__logo img {
  height: 30px;
}

.nav {
  display      : flex;
  align-items  : center;
  gap          : 26px;
  margin-left  : auto;
  margin-right : 32px;
}

.nav__link {
  font-size      : .95rem;
  font-weight    : 700;
  color          : var(--fg-1);
  text-decoration: none;
  transition     : color .15s;
}

.nav__link:hover {
  color: var(--brand-orange);
}

.site-header__actions {
  display    : flex;
  align-items: center;
  gap        : 12px;
}

.phone-link {
  font-family    : var(--font-num);
  font-weight    : 700;
  font-size      : 1.05rem;
  color          : var(--brand-navy);
  text-decoration: none;
  display        : flex;
  align-items    : center;
  gap            : 6px;
}

.phone-link [data-lucide] {
  color : var(--brand-orange);
  width : 16px;
  height: 16px;
}

.menu-toggle {
  display   : none;
  background: none;
  border    : none;
  cursor    : pointer;
  padding   : 6px;
  color     : var(--brand-navy);
}

.menu-toggle [data-lucide] {
  width : 28px;
  height: 28px;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  padding   : 12px 24px 20px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__link {
  display        : block;
  padding        : 12px 0;
  font-weight    : 700;
  color          : var(--fg-1);
  text-decoration: none;
  border-bottom  : 1px solid var(--gray-100);
}

.mobile-menu__cta {
  margin-top: 16px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg-section) 0%, #fff 100%);
  overflow  : hidden;
}

.hero__inner {
  display              : grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.6fr);
  gap                  : clamp(24px, 3vw, 48px);
  align-items          : center;
  padding              : 80px clamp(24px, 6vw, 96px) 32px;
}

.hero__title {
  font-family   : var(--font-display);
  font-weight   : 900;
  font-size     : clamp(2.4rem, 4.6vw, 3.6rem);
  line-height   : 1.12;
  letter-spacing: -.01em;
  color         : var(--fg-1);
  margin-top    : 18px;
}

.hero__title-accent {
  color: var(--brand-orange);
}

.hero__lead {
  font-size  : 1.18rem;
  line-height: 1.75;
  color      : var(--fg-2);
  margin-top : 22px;
  max-width  : 500px;
}

.hero__lead strong {
  color: var(--fg-1);
}

.hero__price {
  display    : flex;
  align-items: center;
  gap        : 16px;
  margin-top : 22px;
  flex-wrap  : wrap;
}

.price-inline {
  display    : flex;
  align-items: baseline;
  gap        : 4px;
}

.price-inline__label {
  font-size  : .82rem;
  font-weight: 700;
  color      : var(--fg-3);
}

.price-inline__num {
  font-family: var(--font-num);
  font-weight: 800;
  font-size  : 1.6rem;
  color      : var(--brand-navy);
}

.price-inline__unit {
  font-size  : .82rem;
  font-weight: 700;
  color      : var(--fg-2);
}

.hero__price-sep {
  width     : 1px;
  height    : 26px;
  background: var(--border-strong);
}

.hero__price-tax {
  font-size  : .72rem;
  color      : var(--fg-3);
  font-weight: 700;
  margin-top: .5rem;
}

.hero__actions {
  display   : flex;
  gap       : 14px;
  margin-top: 24px;
  flex-wrap : wrap;
}

.hero__checks {
  display        : flex;
  gap            : 12px 24px;
  flex-wrap      : wrap;
  justify-content: flex-start;
  margin-top     : 20px;
}

.check-item {
  display    : flex;
  align-items: center;
  gap        : 6px;
  font-size  : .9rem;
  font-weight: 700;
  color      : var(--fg-1);
}

.check-item [data-lucide] {
  color : var(--success);
  width : 18px;
  height: 18px;
}

.hero__visual {
  position: relative;
}

.hero__mv {
  width    : 100%;
  max-width: none;
  height   : auto;
  margin   : 0;
}

/* ---------- Trades strip ---------- */
.trades {
  padding  : 10px 24px 76px;
  max-width: 1120px;
  margin   : 0 auto;
}

.trades__card {
  background             : rgba(255, 255, 255, .55);
  border                 : 1px solid rgba(10, 42, 58, .06);
  border-radius          : var(--r-xl);
  box-shadow             : 0 2px 16px rgba(10, 42, 58, .035);
  backdrop-filter        : blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding                : 30px 36px;
}

.trades__head {
  text-align   : center;
  margin-bottom: 22px;
}

.trades__tick {
  width        : 22px;
  height       : 3px;
  background   : var(--brand-orange);
  border-radius: 2px;
  margin       : 0 auto 11px;
  opacity      : .9;
}

.trades__caption {
  font-size     : .8rem;
  font-weight   : 600;
  color         : var(--fg-3);
  letter-spacing: .08em;
}

.trades__list {
  display        : flex;
  flex-wrap      : wrap;
  justify-content: center;
  column-gap     : 40px;
  row-gap        : 16px;
}

.trade {
  display    : flex;
  align-items: center;
  gap        : 8px;
}

.trade [data-lucide] {
  color : var(--navy-200);
  width : 19px;
  height: 19px;
}

.trade__label {
  font-weight: 600;
  font-size  : .9rem;
  color      : var(--fg-3);
  white-space: nowrap;
}

/* ---------- Problem ---------- */
.problem__grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 20px;
  margin-top           : 44px;
}

.problem-card {
  background   : var(--gray-50);
  border-radius: var(--r-lg);
  padding      : 26px 26px 30px;
  border       : 1px solid var(--border);
}

.problem-card__figure {
  background     : #fff;
  border         : 1px solid var(--border);
  border-radius  : var(--r-md);
  padding        : 20px 22px;
  margin-bottom  : 20px;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.problem-card__figure img {
  width     : 100%;
  height    : 116px;
  object-fit: contain;
}

.problem-card__title {
  font-family  : var(--font-display);
  font-weight  : 700;
  font-size    : 1.18rem;
  color        : var(--fg-1);
  margin-bottom: 8px;
  line-height  : 1.4;
}

.problem-card__text {
  font-size  : .92rem;
  line-height: 1.7;
  color      : var(--fg-2);
}

.problem__bridge {
  text-align: center;
  margin-top: 40px;
}

.problem__bridge-inner {
  display       : inline-flex;
  flex-direction: column;
  align-items   : center;
  gap           : 4px;
}

.problem__bridge-inner [data-lucide] {
  color : var(--brand-orange);
  width : 34px;
  height: 34px;
}

.problem__bridge-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : 1.3rem;
  color      : var(--brand-navy);
}

.problem__bridge-text em {
  color     : var(--brand-orange);
  font-style: normal;
}

/* ---------- Value proposition ---------- */
.value {
  background: var(--bg-section);
}

.value__rows {
  margin-top    : 56px;
  display       : flex;
  flex-direction: column;
  gap           : 72px;
}

.point-row {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 56px;
  align-items          : center;
}

.point-row__copy {
  order: 1;
}

.point-row__img {
  order: 2;
}

.point-row--flip .point-row__copy {
  order: 2;
}

.point-row--flip .point-row__img {
  order: 1;
}

.point-row__kicker {
  font-family   : var(--font-num);
  font-weight   : 800;
  font-size     : .82rem;
  letter-spacing: .12em;
  color         : var(--brand-orange);
  margin-bottom : 14px;
}

.point-row__title {
  font-family  : var(--font-display);
  font-weight  : 900;
  font-size    : clamp(1.5rem, 2.6vw, 2rem);
  color        : var(--fg-1);
  margin-bottom: 16px;
  line-height  : 1.35;
  white-space  : pre-line;
}

.point-row__body {
  font-size    : 1.02rem;
  line-height  : 1.85;
  color        : var(--fg-2);
  margin-bottom: 22px;
  max-width    : 460px;
}

.point-row__list {
  display       : flex;
  flex-direction: column;
  gap           : 13px;
}

.point-row__item {
  display    : flex;
  gap        : 11px;
  align-items: center;
  font-size  : 1rem;
  font-weight: 700;
  color      : var(--fg-1);
}

.point-row__item [data-lucide] {
  color : var(--brand-orange);
  width : 20px;
  height: 20px;
}

.value__summary {
  text-align : center;
  font-size  : .95rem;
  color      : var(--fg-3);
  font-weight: 700;
  margin-top : 28px;
}

.value__summary em {
  color     : var(--brand-navy);
  font-style: normal;
}

/* ---------- Product showcase ---------- */
.showcase__rows {
  margin-top    : 56px;
  display       : flex;
  flex-direction: column;
  gap           : 64px;
}

.show-row {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 52px;
  align-items          : center;
}

.show-row__copy {
  order: 1;
}

.show-row__visual {
  order: 2;
}

.show-row--flip .show-row__copy {
  order: 2;
}

.show-row--flip .show-row__visual {
  order: 1;
}

.show-row__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : clamp(1.5rem, 2.6vw, 2rem);
  color      : var(--fg-1);
  margin-top : 16px;
  line-height: 1.3;
  white-space: pre-line;
}

.show-row__body {
  font-size  : 1.02rem;
  line-height: 1.85;
  color      : var(--fg-2);
  margin     : 16px 0 22px;
}

.show-row__list {
  display       : flex;
  flex-direction: column;
  gap           : 12px;
}

.show-row__item {
  display    : flex;
  gap        : 11px;
  align-items: center;
  font-size  : .98rem;
  font-weight: 700;
  color      : var(--fg-1);
}

.show-row__check {
  width          : 24px;
  height         : 24px;
  border-radius  : var(--r-pill);
  background     : var(--orange-50);
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex           : none;
}

.show-row__check [data-lucide] {
  color : var(--brand-orange);
  width : 15px;
  height: 15px;
}

/* mock shells */
.mock {
  background   : var(--bg-section);
  border-radius: var(--r-xl);
  padding      : 26px;
  border       : 1px solid var(--border);
}

.mock--phone {
  padding        : 32px 26px;
  display        : flex;
  justify-content: center;
}

.mock-card {
  background   : #fff;
  border-radius: var(--r-lg);
  box-shadow   : var(--shadow-sm);
  border       : 1px solid var(--border);
  overflow     : hidden;
}

.mock-card+.mock-card {
  margin-top: 12px;
}

/* ---------- Features (dark bento) ---------- */
.features {
  background: var(--bg-navy);
  padding   : 88px 0 96px;
}

.features__head {
  text-align   : center;
  margin-bottom: 48px;
}

.features__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : clamp(1.7rem, 3.4vw, 2.5rem);
  color      : var(--fg-on-dark);
}

.bento {
  display              : grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows       : minmax(0, auto);
  gap                  : 18px;
}

.feature-card {
  background    : rgba(255, 255, 255, .035);
  border        : 1px solid rgba(255, 255, 255, .10);
  border-radius : var(--r-xl);
  padding       : 30px;
  display       : flex;
  flex-direction: column;
}

.feature-card--01 {
  grid-column: span 4;
  grid-row   : span 2;
}

.feature-card--02 {
  grid-column: span 8;
}

.feature-card--03 {
  grid-column: span 4;
}

.feature-card--04 {
  grid-column: span 4;
}

.feature-card__num {
  font-family  : var(--font-num);
  font-weight  : 800;
  font-size    : 2.1rem;
  color        : var(--orange-400);
  line-height  : 1;
  margin-bottom: 16px;
}

.feature-card__iconbox {
  width          : 46px;
  height         : 46px;
  border-radius  : var(--r-md);
  flex           : none;
  border         : 1.5px solid rgba(247, 149, 29, .55);
  background     : rgba(247, 149, 29, .10);
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.feature-card__iconbox [data-lucide] {
  color : var(--orange-300);
  width : 23px;
  height: 23px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size  : 1.3rem;
  color      : var(--fg-on-dark);
  line-height: 1.42;
  margin     : 0;
}

.feature-card__title--mt {
  margin-top: 16px;
}

.feature-card__desc {
  font-size  : .92rem;
  line-height: 1.8;
  color      : var(--fg-on-dark-2);
  margin-top : 13px;
}

.feature-card__row {
  display    : flex;
  align-items: center;
  gap        : 13px;
}

.feature-card__row--tight {
  margin-top: -8px;
}

.ai-split {
  display              : grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap                  : 30px;
  align-items          : center;
  height               : 100%;
}

.feat-panel {
  background   : rgba(255, 255, 255, .05);
  border       : 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
}

/* Hub viz */
.hub {
  position  : relative;
  width     : 100%;
  height    : 258px;
  margin-top: 26px;
}

.hub__inner {
  position        : absolute;
  top             : 0;
  left            : 50%;
  width           : 280px;
  height          : 258px;
  transform-origin: top center;
  transform       : translateX(-50%);
}

.hub__node {
  position      : absolute;
  transform     : translate(-50%, -50%);
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 8px;
  z-index       : 2;
}

.hub__node-circle {
  width          : 54px;
  height         : 54px;
  border-radius  : 50%;
  background     : rgba(255, 255, 255, .06);
  border         : 1px solid rgba(255, 255, 255, .16);
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.hub__node-circle [data-lucide] {
  width : 22px;
  height: 22px;
  color : var(--fg-on-dark);
}

.hub__node-circle--line [data-lucide] {
  color: var(--success);
}

.hub__node-label {
  font-size  : .78rem;
  font-weight: 700;
  color      : var(--fg-on-dark-2);
}

.hub__center {
  position       : absolute;
  left           : 140px;
  top            : 88px;
  transform      : translate(-50%, -50%);
  width          : 100px;
  height         : 100px;
  border-radius  : 50%;
  z-index        : 2;
  background     : radial-gradient(circle at 50% 32%, rgba(247, 149, 29, .22), rgba(255, 255, 255, .04) 70%);
  border         : 1.5px solid rgba(247, 149, 29, .5);
  box-shadow     : 0 0 26px rgba(247, 149, 29, .20);
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  gap            : 4px;
}

.hub__center [data-lucide] {
  width : 20px;
  height: 20px;
  color : var(--orange-300);
}

.hub__center-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size  : .84rem;
  color      : #fff;
}

/* AI flow viz */
.aiflow {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.aiflow__col {
  padding  : 14px 13px;
  flex     : 1 1 0;
  min-width: 0;
}

.aiflow__col-title {
  font-size    : .74rem;
  font-weight  : 700;
  color        : var(--fg-on-dark-2);
  margin-bottom: 13px;
}

.aiflow__inputs {
  display       : flex;
  flex-direction: column;
  gap           : 11px;
}

.aiflow__in {
  display    : flex;
  align-items: center;
  gap        : 9px;
}

.aiflow__in-ico {
  width          : 24px;
  height         : 24px;
  border-radius  : var(--r-sm);
  background     : rgba(255, 255, 255, .07);
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex           : none;
}

.aiflow__in-ico [data-lucide] {
  width : 13px;
  height: 13px;
  color : var(--fg-on-dark-2);
}

.aiflow__in-label {
  font-size  : .76rem;
  font-weight: 600;
  color      : var(--fg-on-dark);
  white-space: nowrap;
}

.aiflow__arrow {
  flex: none;
}

.aiflow__arrow [data-lucide] {
  width : 20px;
  height: 20px;
  color : var(--orange-400);
}

.aiflow__out {
  border    : 1px solid rgba(247, 149, 29, .45);
  background: rgba(247, 149, 29, .06);
  padding   : 14px;
  flex      : 1.05 1 0;
  min-width : 0;
  position  : relative;
  overflow  : hidden;
}

.aiflow__out-head {
  display      : flex;
  align-items  : center;
  gap          : 6px;
  margin-bottom: 13px;
}

.aiflow__out-head span {
  font-size  : .76rem;
  font-weight: 800;
  color      : var(--orange-300);
  white-space: nowrap;
}

.aiflow__out-head [data-lucide] {
  width : 13px;
  height: 13px;
  color : var(--orange-300);
}

.aiflow__bars {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}

.aiflow__bar {
  height       : 7px;
  border-radius: 4px;
  background   : rgba(255, 255, 255, .16);
}

.aiflow__badge {
  position       : absolute;
  right          : -6px;
  bottom         : -6px;
  width          : 48px;
  height         : 48px;
  border-radius  : 50%;
  background     : var(--brand-orange);
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-num);
  font-weight    : 800;
  font-size      : .88rem;
  color          : #fff;
  box-shadow     : 0 4px 14px rgba(247, 149, 29, .4);
}

/* Map viz */
.mapviz {
  margin-top: 18px;
}

.mapviz__canvas {
  position        : relative;
  height          : 150px;
  border-radius   : var(--r-md);
  overflow        : hidden;
  border          : 1px solid rgba(255, 255, 255, .10);
  background      : #0d2230;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size : 30px 30px;
}

.mapviz__road {
  position  : absolute;
  background: rgba(255, 255, 255, .05);
}

.mapviz__road--h {
  left  : 0;
  right : 0;
  top   : 92px;
  height: 8px;
}

.mapviz__road--v {
  top   : 0;
  bottom: 0;
  left  : 64px;
  width : 8px;
}

.mapviz__bldg {
  position: absolute;
}

.mapviz__bldg--1 {
  left: 22px;
  top : 30px;
}

.mapviz__bldg--1 [data-lucide] {
  color : rgba(255, 255, 255, .22);
  width : 20px;
  height: 20px;
}

.mapviz__bldg--2 {
  right: 30px;
  top  : 24px;
}

.mapviz__bldg--2 [data-lucide] {
  color : rgba(94, 159, 107, .55);
  width : 20px;
  height: 20px;
}

.mapviz__bldg--3 {
  right : 22px;
  bottom: 18px;
}

.mapviz__bldg--3 [data-lucide] {
  color : rgba(255, 255, 255, .18);
  width : 18px;
  height: 18px;
}

.mapviz__pin {
  position : absolute;
  left     : 50%;
  top      : 54%;
  transform: translate(-50%, -50%);
  width    : 12px;
  height   : 12px;
}

.mapviz__ripple {
  position     : absolute;
  left         : 50%;
  top          : 50%;
  transform    : translate(-50%, -50%);
  border-radius: 50%;
}

.mapviz__ripple--lg {
  width : 78px;
  height: 78px;
  border: 1px solid rgba(247, 149, 29, .25);
}

.mapviz__ripple--sm {
  width     : 48px;
  height    : 48px;
  border    : 1px solid rgba(247, 149, 29, .4);
  background: rgba(247, 149, 29, .07);
}

.mapviz__pin-ico {
  position : absolute;
  left     : 50%;
  top      : 50%;
  transform: translate(-50%, -72%);
}

.mapviz__pin-ico [data-lucide] {
  width : 30px;
  height: 30px;
  color : var(--brand-orange);
}

.mapviz__search {
  margin-top     : 12px;
  padding        : 11px 14px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 10px;
}

.mapviz__search span {
  font-size  : .86rem;
  font-weight: 600;
  color      : var(--fg-on-dark);
}

.mapviz__search [data-lucide] {
  width : 17px;
  height: 17px;
  color : var(--orange-300);
}

/* Report viz */
.reportviz {
  margin-top: 18px;
}

.reportviz__stats {
  padding: 14px 16px;
  display: flex;
  gap    : 10px;
}

.reportviz__stat {
  flex     : 1 1 0;
  min-width: 0;
}

.reportviz__stat-label {
  font-size  : .68rem;
  font-weight: 700;
  color      : var(--fg-on-dark-2);
  white-space: nowrap;
}

.reportviz__stat-val {
  display    : flex;
  align-items: baseline;
  gap        : 5px;
  margin-top : 3px;
}

.reportviz__stat-num {
  font-family: var(--font-num);
  font-weight: 800;
  font-size  : 1.12rem;
  color      : #fff;
}

.reportviz__stat-delta {
  font-size  : .66rem;
  font-weight: 800;
  color      : var(--success);
}

.reportviz__sep {
  width     : 1px;
  background: rgba(255, 255, 255, .1);
}

.reportviz__chart {
  margin-top: 12px;
  padding   : 12px 12px 6px;
}

.reportviz__months {
  display        : flex;
  justify-content: space-between;
  padding        : 2px 4px 0;
}

.reportviz__months span {
  font-size: .6rem;
  color    : var(--fg-on-dark-2);
}

/* ---------- Steps ---------- */
.steps__grid {
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  gap                  : 16px;
  margin-top           : 48px;
}

.step {
  position  : relative;
  text-align: center;
}

.step__badge {
  width          : 84px;
  height         : 84px;
  border-radius  : var(--r-pill);
  background     : var(--brand-navy);
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin         : 0 auto 18px;
  position       : relative;
}

.step__badge [data-lucide] {
  width : 36px;
  height: 36px;
  color : #fff;
}

.step__num {
  position       : absolute;
  top            : -6px;
  right          : -6px;
  width          : 30px;
  height         : 30px;
  border-radius  : var(--r-pill);
  background     : var(--brand-orange);
  color          : #fff;
  font-family    : var(--font-num);
  font-weight    : 800;
  font-size      : 1rem;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.step__title {
  font-family  : var(--font-display);
  font-weight  : 700;
  font-size    : 1.12rem;
  color        : var(--fg-1);
  margin-bottom: 8px;
}

.step__text {
  font-size  : .88rem;
  line-height: 1.7;
  color      : var(--fg-2);
}

.step__arrow {
  position: absolute;
  top     : 32px;
  right   : -16px;
  color   : var(--navy-200);
}

.step__arrow [data-lucide] {
  width : 28px;
  height: 28px;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-section);
}

.pricing__grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 20px;
  margin-top           : 40px;
  align-items          : stretch;
}

.plan {
  background   : #fff;
  border-radius: var(--r-xl);
  padding      : 32px 28px;
  border       : 1px solid var(--border);
  box-shadow   : var(--shadow-sm);
  position     : relative;
}

.plan--popular {
  border    : 2px solid var(--brand-orange);
  box-shadow: var(--shadow-lg);
  transform : translateY(-8px);
}

.plan__ribbon {
  position : absolute;
  top      : -14px;
  left     : 50%;
  transform: translateX(-50%);
}

.plan__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : 1.5rem;
  color      : var(--fg-1);
  line-height: 1.25;
}

.plan__sub {
  font-size  : .88rem;
  color      : var(--fg-3);
  margin     : 4px 0 16px;
  font-weight: 700;
}

.plan__price {
  display    : flex;
  align-items: baseline;
  gap        : 3px;
}

.plan__price-num {
  font-family: var(--font-num);
  font-weight: 800;
  font-size  : 2.6rem;
  color      : var(--brand-navy);
  line-height: 1;
}

.plan__price-unit {
  font-size  : 1rem;
  font-weight: 700;
  color      : var(--fg-2);
}

.plan__init {
  font-size  : .82rem;
  color      : var(--fg-2);
  margin     : 8px 0 4px;
  font-weight: 700;
}

.plan__init span {
  font-family: var(--font-num);
}

.plan__tag {
  font-size    : .76rem;
  color        : var(--fg-3);
  margin-bottom: 20px;
}

.plan__cta {
  margin-bottom: 24px;
}

.plan__feats {
  display       : flex;
  flex-direction: column;
  gap           : 11px;
}

.plan__feat {
  display    : flex;
  gap        : 9px;
  align-items: flex-start;
  font-size  : .92rem;
  color      : var(--fg-1);
  line-height: 1.5;
}

.plan__feat [data-lucide] {
  color     : var(--success);
  width     : 18px;
  height    : 18px;
  flex      : none;
  margin-top: 1px;
}

.pricing__order {
  margin-top: 20px;
}

.order-bar {
  background     : var(--brand-navy);
  border-radius  : var(--r-lg);
  padding        : 20px 26px;
  display        : flex;
  align-items    : center;
  gap            : 16px;
  flex-wrap      : wrap;
  justify-content: space-between;
}

.order-bar__main {
  display    : flex;
  align-items: center;
  gap        : 14px;
}

.order-bar__main>[data-lucide] {
  width : 26px;
  height: 26px;
  color : var(--orange-300);
}

.order-bar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size  : 1.1rem;
  color      : #fff;
}

.order-bar__text {
  font-size : .85rem;
  color     : var(--fg-on-dark-2);
  margin-top: 2px;
}

.pricing__note {
  text-align: center;
  font-size : .8rem;
  color     : var(--fg-3);
  margin-top: 18px;
}

/* ---------- Voice ---------- */
.voice__grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 20px;
  margin-top           : 44px;
}

.voice-card {
  background    : var(--gray-50);
  border-radius : var(--r-lg);
  padding       : 28px 26px;
  border        : 1px solid var(--border);
  display       : flex;
  flex-direction: column;
  gap           : 16px;
}

.voice-card__stars {
  display: flex;
  gap    : 3px;
  color  : var(--brand-orange);
}

.voice-card__stars [data-lucide] {
  width : 18px;
  height: 18px;
  fill  : var(--brand-orange);
  stroke: var(--brand-orange);
}

.voice-card__quote {
  font-size  : .98rem;
  line-height: 1.8;
  color      : var(--fg-1);
  flex       : 1;
  font-weight: 500;
}

.voice-card__person {
  display    : flex;
  align-items: center;
  gap        : 12px;
  border-top : 1px solid var(--border);
  padding-top: 16px;
}

.voice-card__avatar {
  width          : 44px;
  height         : 44px;
  border-radius  : var(--r-pill);
  background     : var(--navy-100);
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex           : none;
}

.voice-card__avatar [data-lucide] {
  width : 24px;
  height: 24px;
  color : var(--navy-500);
}

.voice-card__name {
  font-weight: 700;
  font-size  : .9rem;
  color      : var(--fg-1);
}

.voice-card__area {
  font-size  : .78rem;
  color      : var(--fg-3);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-section);
}

.faq__list {
  display       : flex;
  flex-direction: column;
  gap           : 12px;
}

.faq-item {
  background   : #fff;
  border-radius: var(--r-lg);
  border       : 1px solid var(--border);
  overflow     : hidden;
}

.faq-item__q {
  width          : 100%;
  text-align     : left;
  background     : none;
  border         : none;
  cursor         : pointer;
  padding        : 20px 22px;
  display        : flex;
  align-items    : center;
  gap            : 14px;
  justify-content: space-between;
}

.faq-item__q-text {
  display    : flex;
  align-items: center;
  gap        : 12px;
}

.faq-item__q-mark {
  font-family: var(--font-num);
  font-weight: 800;
  font-size  : 1.1rem;
  color      : var(--brand-orange);
  flex       : none;
}

.faq-item__q-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size  : 1.05rem;
  color      : var(--fg-1);
}

.faq-item__toggle {
  flex : none;
  color: var(--fg-3);
}

.faq-item__toggle [data-lucide] {
  width : 22px;
  height: 22px;
}

.faq-item__toggle [data-lucide="minus"] {
  display: none;
}

.faq-item__a {
  padding    : 0 22px 22px 48px;
  font-size  : .96rem;
  line-height: 1.8;
  color      : var(--fg-2);
}

.faq-item__a[hidden] {
  display: none;
}

.faq-item.is-open .faq-item__toggle [data-lucide="plus"] {
  display: none;
}

.faq-item.is-open .faq-item__toggle [data-lucide="minus"] {
  display: inline-flex;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--brand-navy);
  padding   : 72px 24px;
  position  : relative;
  overflow  : hidden;
}

.final-cta__deco {
  position  : absolute;
  top       : 0;
  right     : 0;
  width     : 280px;
  height    : 100%;
  background: repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(247, 149, 29, .10) 22px, rgba(247, 149, 29, .10) 44px);
}

.final-cta__inner {
  max-width : 720px;
  margin    : 0 auto;
  text-align: center;
  position  : relative;
}

.final-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : clamp(1.9rem, 3.6vw, 2.7rem);
  color      : #fff;
  line-height: 1.3;
}

.final-cta__title em {
  color     : var(--brand-orange);
  font-style: normal;
}

.final-cta__text {
  font-size  : 1.1rem;
  color      : var(--fg-on-dark-2);
  margin     : 20px 0 34px;
  line-height: 1.7;
}

.final-cta__actions {
  display        : flex;
  gap            : 14px;
  justify-content: center;
  flex-wrap      : wrap;
}

.final-cta__hours {
  font-size : .85rem;
  color     : var(--fg-on-dark-2);
  margin-top: 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-navy);
  color     : #fff;
  padding   : 56px 24px 28px;
}

.site-footer__grid {
  max-width            : 1120px;
  margin               : 0 auto;
  display              : grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap                  : 40px;
  align-items          : start;
}

.site-footer__logo {
  height       : 30px;
  margin-bottom: 16px;
}

.site-footer__about {
  font-size  : .9rem;
  line-height: 1.8;
  color      : var(--fg-on-dark-2);
  max-width  : 320px;
}

.site-footer__corp {
  font-size : .82rem;
  color     : var(--fg-on-dark-2);
  margin-top: 16px;
}

.site-footer__col-title {
  font-weight  : 700;
  font-size    : .95rem;
  margin-bottom: 14px;
}

.site-footer__link {
  display        : block;
  padding        : 7px 0;
  font-size      : .88rem;
  color          : var(--fg-on-dark-2);
  text-decoration: none;
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__copy {
  max-width  : 1120px;
  margin     : 36px auto 0;
  padding-top: 20px;
  border-top : 1px solid rgba(255, 255, 255, .12);
  font-size  : .8rem;
  color      : var(--fg-on-dark-2);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display   : none;
  position  : fixed;
  bottom    : 0;
  left      : 0;
  right     : 0;
  z-index   : 40;
  background: #fff;
  border-top: 1px solid var(--border);
  padding   : 10px 16px;
  box-shadow: 0 -4px 16px rgba(10, 42, 58, .1);
  gap       : 10px;
}

.sticky-cta__phone {
  flex           : 0 0 auto;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  padding        : 0 14px;
  text-decoration: none;
}

.sticky-cta__phone [data-lucide] {
  width : 20px;
  height: 20px;
  color : var(--brand-navy);
}

.sticky-cta__phone span {
  font-size  : .65rem;
  font-weight: 700;
  color      : var(--brand-navy);
}

.sticky-cta__btn {
  flex: 1;
}

/* ---------- Document pages (company / privacy / terms) ---------- */
.page-doc {
  max-width: 720px;
  margin   : 60px auto 80px;
  padding  : 0 24px;
}

.page-doc__card {
  background   : #fff;
  border-radius: var(--r-xl);
  box-shadow   : var(--shadow-lg);
  overflow     : hidden;
  border       : 1px solid var(--border);
}

.page-doc__head {
  background: var(--brand-navy);
  padding   : 32px 40px;
}

.page-doc__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : 1.5rem;
  color      : #fff;
}

.page-doc__updated {
  font-size : .8rem;
  color     : rgba(255,255,255,.55);
  margin-top: 6px;
}

.page-doc__body {
  padding: 40px 40px 48px;
}

.doc-table {
  width          : 100%;
  border-collapse: collapse;
  margin-top     : 8px;
}

.doc-table th,
.doc-table td {
  padding      : 13px 16px;
  border-bottom: 1px solid var(--border);
  text-align   : left;
  font-size    : .95rem;
  line-height  : 1.75;
  vertical-align: top;
}

.doc-table th {
  width      : 130px;
  font-weight: 700;
  color      : var(--fg-2);
  white-space: nowrap;
}

.doc-section {
  margin-top: 32px;
}

.doc-section + .doc-section {
  margin-top: 28px;
}

.doc-section__title {
  font-size     : 1rem;
  font-weight   : 700;
  color         : var(--fg-1);
  padding-bottom: 8px;
  border-bottom : 2px solid var(--orange-100);
  margin-bottom : 12px;
}

.doc-section__text {
  font-size  : .95rem;
  line-height: 1.85;
  color      : var(--fg-2);
}

.doc-section__text + .doc-section__text {
  margin-top: 10px;
}

.doc-list {
  font-size  : .95rem;
  line-height: 1.85;
  color      : var(--fg-2);
  padding-left: 1.4em;
  list-style  : disc;
  margin-top  : 8px;
}

.doc-list li + li {
  margin-top: 4px;
}

/* ---------- Contact modal ---------- */
.modal {
  position       : fixed;
  inset          : 0;
  z-index        : 100;
  background     : rgba(6, 32, 45, .55);
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 20px;
  backdrop-filter: blur(2px);
}

.modal[hidden] {
  display: none;
}

.modal__dialog {
  background   : #fff;
  border-radius: var(--r-xl);
  width        : 100%;
  max-width    : 480px;
  box-shadow   : var(--shadow-lg);
  overflow     : hidden;
  max-height   : 90vh;
  overflow-y   : auto;
}

.modal__dialog--doc {
  max-width: 680px;
}

.modal__header {
  background     : var(--brand-navy);
  padding        : 20px 26px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.modal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size  : 1.25rem;
  color      : #fff;
}

.modal__step {
  font-size : .8rem;
  color     : var(--fg-on-dark-2);
  margin-top: 2px;
}

.modal__close {
  background     : rgba(255, 255, 255, .12);
  border         : none;
  cursor         : pointer;
  width          : 36px;
  height         : 36px;
  border-radius  : var(--r-pill);
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.modal__close [data-lucide] {
  width : 20px;
  height: 20px;
  color : #fff;
}

.modal__body {
  padding: 26px 30px 30px;
}

.modal__panel {
  display       : flex;
  flex-direction: column;
  gap           : 18px;
}

.modal__panel[hidden] {
  display: none;
}

.field__label {
  display      : block;
  font-size    : .85rem;
  font-weight  : 700;
  color        : var(--fg-1);
  margin-bottom: 7px;
}

.field__req {
  color: var(--danger);
}

.field__input,
.field__textarea {
  width        : 100%;
  box-sizing   : border-box;
  padding      : 13px 14px;
  font-size    : 1rem;
  font-family  : var(--font-body);
  border       : 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  color        : var(--fg-1);
  background   : #fff;
  outline      : none;
}

.field__input:focus,
.field__textarea:focus {
  border-color: var(--focus-ring);
}

.field__textarea {
  resize    : vertical;
  min-height: 90px;
}

.modal__hint {
  font-size : .78rem;
  color     : var(--fg-3);
  text-align: center;
  margin    : 0;
}

.modal__hint [data-lucide] {
  width         : 13px;
  height        : 13px;
  vertical-align: -2px;
  margin-right  : 4px;
}

.chips {
  display  : flex;
  flex-wrap: wrap;
  gap      : 8px;
}

.chip {
  cursor       : pointer;
  padding      : 8px 14px;
  border-radius: var(--r-pill);
  font-size    : .85rem;
  font-weight  : 700;
  border       : 1.5px solid var(--border-strong);
  background   : #fff;
  color        : var(--fg-2);
}

.chip.is-active {
  border-color: var(--brand-orange);
  background  : var(--orange-50);
  color       : var(--orange-700);
}

.modal__row {
  display: flex;
  gap    : 12px;
}

.modal__done {
  padding   : 44px 30px;
  text-align: center;
}

.modal__done[hidden] {
  display: none;
}

.modal__done-icon {
  width          : 72px;
  height         : 72px;
  border-radius  : var(--r-pill);
  background     : var(--success-bg);
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin         : 0 auto 20px;
}

.modal__done-icon [data-lucide] {
  width : 40px;
  height: 40px;
  color : var(--success);
}

.modal__done-title {
  font-family  : var(--font-display);
  font-weight  : 900;
  font-size    : 1.4rem;
  color        : var(--fg-1);
  margin-bottom: 10px;
}

.modal__done-text {
  font-size    : .96rem;
  line-height  : 1.8;
  color        : var(--fg-2);
  margin-bottom: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ai-split {
    grid-template-columns: 1fr;
    gap                  : 22px;
  }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap                  : 24px;
    padding              : 40px 24px 24px;
  }

  .hero__title br {
    display: none;
  }

  .hero__lead {
    max-width: none;
  }

  .hero__visual {
    order       : -1;
    margin-left : -24px;
    margin-right: -24px;
  }

  .hero__mv {
    width    : 100%;
    max-width: none;
    margin   : 0;
  }

  .hero__checks {
    margin-top: 16px;
  }

  .problem__grid,
  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento {
    display       : flex;
    flex-direction: column;
  }

  .pricing__grid,
  .voice__grid {
    grid-template-columns: 1fr;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap                  : 28px;
  }

  .show-row__copy {
    order: 1;
  }

  .show-row__visual {
    order: 2;
  }

  .point-row {
    grid-template-columns: 1fr;
    gap                  : 28px;
  }

  .point-row__copy {
    order: 1;
  }

  .point-row__img {
    order: 2;
  }

  .value__br {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav,
  .site-header__actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .step__arrow {
    display: none;
  }

  .plan--popular {
    transform: none;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 560px) {

  .problem__grid,
  .steps__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .trades {
    margin-top: clamp(-120px, -6vw, -30px);
    position  : relative;
    z-index   : 1;
  }
}