:root {
  --bg: #09111f;
  --bg-soft: #101c30;
  --surface: rgba(13, 23, 40, 0.78);
  --surface-strong: rgba(17, 29, 50, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #eef4ff;
  --muted: #aab8d6;
  --accent: #ff8a1d;
  --accent-strong: #ffb347;
  --accent-cool: #4dd0e1;
  --success: #6ef3ba;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1260px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 29, 0.24), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(77, 208, 225, 0.18), transparent 24%),
    linear-gradient(180deg, #07101d 0%, #09111f 40%, #07101a 100%);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

select option,
select optgroup {
  color: #111726;
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(170, 184, 214, 0.88);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 179, 71, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 138, 29, 0.14);
}

label {
  color: var(--muted);
}

label input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
}

.site-shell::before {
  top: 9%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: rgba(255, 138, 29, 0.32);
}

.site-shell::after {
  right: -8%;
  top: 40%;
  width: 280px;
  height: 280px;
  background: rgba(77, 208, 225, 0.22);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}

.section {
  padding: 50px 0 60px;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.section-head > * {
  margin: 0;
}

.section-head > div {
  display: grid;
  gap: 18px;
}

.section-head .eyebrow {
  justify-self: start;
}

.section-head--split {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.section-head--split > div {
  display: contents;
}

.section-head--split .eyebrow {
  grid-column: 1 / -1;
}

.section-head--split .section-title {
  grid-column: 1;
  align-self: center;
}

.section-head--split .section-copy {
  grid-column: 2;
  align-self: center;
}

.section-title {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-copy,
.lead,
.meta-summary,
.copy-muted,
.list-copy,
.faq-answer,
.card p,
.contact-copy {
  color: var(--muted);
}

.meta-summary {
  margin: 5px 0 5px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.local-character-promo,
.industry-promo {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.12), rgba(77, 208, 225, 0.1)), rgba(13, 23, 40, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.local-character-promo__image,
.industry-promo__image {
  min-height: 320px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(77, 208, 225, 0.18)),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.local-character-promo__body,
.industry-promo__body {
  display: grid;
  gap: 16px;
  align-content: center;
}

.local-character-promo__body h3,
.local-character-promo__body p,
.industry-promo__body h3,
.industry-promo__body p {
  margin: 0;
}

.local-character-promo__body h3,
.industry-promo__body h3 {
  font-size: 1.55rem;
  line-height: 1.45;
}

.card,
.glass-panel,
.faq-item,
.timeline-item,
.price-box,
.contact-box,
.hero-visual,
.page-hero__panel,
.feature-panel,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 30, 50, 0.86), rgba(10, 18, 30, 0.86));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.faq-item,
.timeline-item,
.price-box,
.contact-box,
.feature-panel,
.case-card {
  padding: 28px;
}

.card::before,
.glass-panel::before,
.faq-item::before,
.timeline-item::before,
.price-box::before,
.contact-box::before,
.hero-visual::before,
.page-hero__panel::before,
.feature-panel::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: auto -20% 72% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 138, 29, 0.2), transparent 68%);
  pointer-events: none;
}

.card:hover,
.faq-item:hover,
.timeline-item:hover,
.price-box:hover,
.contact-box:hover,
.feature-panel:hover,
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.industry-guide-actions--primary {
  margin-bottom: 14px;
}

.industry-guide-actions--primary .btn-primary {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffbf66 100%);
  color: #111726;
  box-shadow: 0 14px 32px rgba(255, 138, 29, 0.28);
  width: 48%;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  width: 48%;
}

.btn-secondary i {
  color: var(--accent-strong);
}

.btn-ghost {
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 12, 22, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(6, 12, 22, 0.9);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-grid;
  gap: 4px;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 286px;
  max-width: 52vw;
}

.brand__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand__sub {
  font-size: 0.75rem;
  line-height: 1.1;
  color: var(--muted);
}

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

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.3s ease, background 0.3s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__divider,
.site-nav__sub {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 24px 0 28px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(7, 16, 29, 0.28), rgba(7, 16, 29, 0.32)),
    linear-gradient(90deg, rgba(7, 16, 29, 0.32) 0%, rgba(7, 16, 29, 0.58) 46%, rgba(7, 16, 29, 0.52) 100%),
    url("../images/aic_bg.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 138, 29, 0.22), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(77, 208, 225, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(7, 16, 29, 0.12), rgba(7, 16, 29, 0.22));
  pointer-events: none;
}

.hero__inner,
.page-hero {
  display: grid;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
}

.hero__content,
.page-hero__content {
  display: grid;
  align-content: center;
  gap: 18px;
}

.hero__title {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 8px;
  padding: 0 10px;
}

.page-hero__title {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: 8px;
  padding: 0 10px;
}

.hero__title--with-icon {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.hero__title-icon {
  display: block;
  width: auto;
  height: 2.2em;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.hero__lead,
.page-hero__lead {
  font-size: 1.14rem;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 12px;
}

.hero__summary,
.page-hero__summary {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 840px;
}

.hero-visual,
.page-hero__panel {
  min-height: 100%;
  padding: 25px;
}

.page-hero__panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-visual {
  align-self: center;
  background: linear-gradient(180deg, rgba(11, 20, 34, 0.74), rgba(10, 18, 30, 0.88));
  backdrop-filter: blur(14px);
}

.page-hero-wrap {
  padding: 40px 0 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero-wrap--features {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg1.webp");
}

.page-hero-wrap--about {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg2.webp");
}

.page-hero-wrap--case {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg3.webp");
}

.page-hero-wrap--price {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg4.webp");
}

.page-hero-wrap--faq {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg5.webp");
}

.page-hero-wrap--contact {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg6.webp");
}

.page-hero-wrap--privacy {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg10.webp");
}

.page-hero-wrap--company {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg11.webp");
}

.page-hero-wrap--sitemap {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/contents_bg12.webp");
}
.page-hero-wrap--case_00 {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/case_bg0.webp");
}
.page-hero-wrap--case_01 {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/case_bg1.webp");
}
.page-hero-wrap--case_02 {
  background-image: linear-gradient(180deg, rgba(7, 14, 25, 0.65), rgba(7, 14, 25, 0.80)), url("../images/case_bg2.webp");
}

.breadcrumb-wrap {
  padding: 18px 0 0;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(170, 184, 214, 0.5);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--text);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-orb--one {
  top: 14%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.8), rgba(255, 138, 29, 0.02) 70%);
}

.hero-orb--two {
  bottom: 12%;
  left: 8%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.75), rgba(77, 208, 225, 0.02) 70%);
}

.hero-visual__grid {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 100%;
}

.hero-scene__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 17, 31, 0.78);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-scene__tag i {
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.hero-visual__tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 961px) {
  .hero-scene__tag {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    margin-bottom: 7px;
  }

  .hero-scene__tag i {
    font-size: 2rem;
  }
}

.hero-visual__foot {
    width: 100%;
}

.hero-visual__summary {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual__summary h2 {
  line-height: 1.5;
  margin: 7px 0 12px;
}

.hero-visual__summary p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.hero-visual__mini {
  margin-bottom: 15px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual__mini strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual__mini p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--muted);
}
.hero-visual__mini:last-child {
  margin-bottom: 0;
}

.hero-panel h2 {
  margin: 10px 0 0;
  font-size: 2.2rem;
  line-height: 1.25;
}

.page-hero__panel h2 {
  margin: 10px 0 0;
  font-size: 1.55rem;
  line-height: 1.25;
}

.hero-panel p,
.page-hero__panel p,
.page-hero__panel li {
  color: var(--muted);
}

.hero-stat,
.hero-chat,
.hero-badge,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.hero-chat {
  display: grid;
  gap: 14px;
}

.hero-chat__bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
}

.hero-chat__bubble--agent {
  background: rgba(255, 138, 29, 0.15);
  border: 1px solid rgba(255, 138, 29, 0.24);
}

.hero-chat__bubble--user {
  margin-left: auto;
  background: rgba(77, 208, 225, 0.12);
  border: 1px solid rgba(77, 208, 225, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.18), rgba(77, 208, 225, 0.18));
  color: var(--accent-strong);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.card-head .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.card-head .icon-badge i {
  font-size: 1.875rem;
}

.card-head h2,
.card-head h3 {
  margin: 0;
}
.card-head h2 {
  line-height: 1.4;
}

.list,
.check-list,
.flow-list,
.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.flow-list li,
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list i,
.flow-list i,
.contact-list i {
  margin-top: 7px;
  color: var(--accent-strong);
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-list__item::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-strong);
  font-size: 1rem;
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-item__step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.9), rgba(255, 191, 102, 0.88));
  color: #08101d;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 8px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-question {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.faq-list--qa .faq-question,
.faq-list--qa .faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-list--qa .faq-answer {
  margin: 0;
}

.faq-list--qa .faq-question::before,
.faq-list--qa .faq-answer::before {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.faq-list--qa .faq-question::before {
  content: "Q";
  color: #1a1206;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.98), rgba(255, 138, 29, 0.95));
}

.faq-list--qa .faq-answer::before {
  content: "A";
  color: #05131a;
  background: linear-gradient(135deg, rgba(110, 243, 186, 0.96), rgba(77, 208, 225, 0.92));
}

.price-grid,
.contact-grid,
.feature-grid,
.case-grid {
  display: grid;
  gap: 24px;
}

.contact-list--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-grid textarea,
.contact-form-grid label,
.contact-form-grid button {
  grid-column: 1 / -1;
}

.contact-form-grid .btn-primary {
  width: 100%;
}

.price-grid,
.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
}

.price-highlight strong {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-strong);
}

.feature-grid,
.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.case-card p strong {
  display: inline-flex;
  align-items: center;
  flex: 0 0 5.8em;
  justify-content: center;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.16);
  border: 1px solid rgba(255, 179, 71, 0.24);
  color: var(--accent-strong);
  line-height: 1.3;
}

.case-example__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.case-example__head h2,
.case-example__head h3 {
  margin: 0;
}

.case-example__head h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.92), rgba(255, 191, 102, 0.88));
  color: #08101d;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-example__head h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.case-example-card p {
  display: block;
  margin: 0;
}

.page-hero {
  padding: 0;
}

.meta-strip {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__panel .meta-strip {
  margin-top: auto;
}

.meta-strip strong {
  font-size: 1.1rem;
}

.page-hero__list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-hero__list li {
  position: relative;
  padding: 0 0 10px 18px;
  font-size: 0.96rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.page-hero__list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--success);
  font-size: 1.45rem;
  font-weight: 700;
}

.hero__kicker i {
  color: var(--accent-strong);
}

.hero__sales-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
}

.hero__sales-points span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.hero__sales-points span i {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 1.8rem;
  color: var(--success);
}

.hero__note {
  font-size: 0.92rem;
  color: var(--muted);
}

.table-like {
  display: grid;
  gap: 14px;
}

.table-like__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-like__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.table-like__label {
  color: var(--accent-strong);
  font-weight: 700;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.compare-table tbody th {
  width: 220px;
  color: var(--accent-strong);
  font-weight: 700;
}

.compare-table tbody td {
  color: var(--muted);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-cta {
  padding: 38px;
}

.contact-box__title {
  margin: 10px 0;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.footer {
  margin-top: 40px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0) 0%, rgba(4, 9, 18, 0.25) 12%, rgba(4, 9, 18, 0.88) 12%, #040914 100%),
    linear-gradient(135deg, #06111f 0%, #0d1627 46%, #121725 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__band {
  padding: 70px 0 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 138, 29, 0.16), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(77, 208, 225, 0.14), transparent 20%);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
  padding: 0;
  color: var(--muted);
}

.footer__brand {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.footer__logo {
  display: inline-block;
  width: 345px;
  max-width: 100%;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__lead {
  margin: 0;
  color: var(--muted);
  width: 345px;
  max-width: 100%;
}

.footer__menus {
  min-width: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.footer__nav a,
.footer__subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  transition: color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
}

.footer__nav a:hover {
  padding-left: 8px;
  border-color: rgba(255, 179, 71, 0.38);
  color: var(--accent-strong);
}

.footer__subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  font-size: 0.82rem;
}

.footer__subnav a {
  min-height: auto;
  padding: 0;
  border-bottom: 0;
  color: rgba(170, 184, 214, 0.82);
}

.footer__subnav a + a::before {
  content: "|";
  margin-right: 14px;
  color: rgba(170, 184, 214, 0.48);
}

.footer__subnav a:hover {
  color: var(--accent-strong);
}

.footer__bottom {
  width: 100%;
  margin-top: 18px;
  background: rgba(6, 12, 22, 0.74);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(170, 184, 214, 0.76);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 1100px) {
  .brand__logo {
    width: 220px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 20px;
    left: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 12, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero__inner,
  .page-hero,
  .section-head--split,
  .price-grid,
  .contact-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .local-character-promo,
  .industry-promo,
  .feature-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .local-character-promo__image,
  .industry-promo__image {
    min-height: 240px;
  }

  .hero__kicker {
    font-size: 1.1rem;
  }

  .hero__content,
  .page-hero__content {
    padding: 0;
  }

  .hero__sales-points {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-hero__panel {
    min-height: auto;
  }

  .hero-visual__foot {
    grid-template-columns: 1fr;
  }

  .hero-visual__tags {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .table-like__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-list--wide,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .eyebrow {
    gap: 8px;
    padding: 7px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head > div {
    gap: 14px;
  }

  .section-head--split {
    align-items: start;
    gap: 14px;
  }

  .section-head--split .eyebrow,
  .section-head--split .section-title,
  .section-head--split .section-copy {
    grid-column: 1;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .contact-box__title {
    font-size: 2.15rem;
  }

  .section-copy {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero {
    padding-top: 54px;
  }

  .page-hero-wrap {
    padding: 30px 0 24px;  }

  .hero__title,
  .page-hero__title {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 0;
    padding: 0;
    max-width: none;
  }

  .hero__title--with-icon {
    gap: 8px;
  }

  .hero__title-icon {
    height: 3.5em;
  }

  .hero__lead,
  .page-hero__lead {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.5;
    padding: 0 0;
  }

  .hero__title--with-icon {
    gap: 10px;
  }

  .card,
  .faq-item,
  .timeline-item,
  .price-box,
  .contact-box,
  .feature-panel,
  .case-card,
  .page-cta,
  .hero-visual,
  .page-hero__panel {
    padding: 22px;
  }

  .hero-scene__tag {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    background-position: 62% center;
  }

  .btn {
    width: 100%;
  }

  .btn-group {
    display: grid;
    max-width: 840px;
  }

  .footer__band {
    padding: 42px 0 0;
  }

  .site-nav__divider {
    display: block;
    width: 100%;
    margin: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav__sub {
    display: inline-flex;
    font-size: 0.85rem;
    color: rgba(170, 184, 214, 0.88);
  }

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

  .footer__brand {
    justify-items: center;
    text-align: center;
  }

  .footer__lead {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .footer__menus,
  .footer__subnav {
    display: none;
  }

  .footer__nav,
  .footer__subnav {
    width: 100%;
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }

  .footer__subnav {
    justify-content: flex-start;
  }

  .footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .btn-primary {
    margin-bottom: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.text_yellow {
  color: var(--accent-strong);
}