:root {
  --blue: #2563eb;
  --blue-dark: #0756d9;
  --navy: #0b1d3a;
  --light-blue: #eaf2ff;
  --white: #fff;
  --header-height: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(28px, 3.25vw, 54px);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #edf1f7;
}

.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand__logo { width: auto; height: 48px; display: block; }

.desktop-nav { display: flex; align-items: center; gap: clamp(38px, 5vw, 76px); font-size: 17px; white-space: nowrap; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }

.header-actions { display: flex; justify-content: flex-end; gap: 20px; margin-left: 12px; }
.header-button { min-width: 146px; min-height: 58px; display: inline-flex; justify-content: center; align-items: center; border: 2px solid var(--blue-dark); border-radius: 12px; font-size: 18px; color: var(--blue-dark); transition: transform .2s ease, box-shadow .2s ease; }
.header-button--primary { color: #fff; background: linear-gradient(135deg, #0750c9, #1368e7); }
.header-button:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(37, 99, 235, .16); }

.menu-button, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  height: auto;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 56.2%;
  overflow: hidden;
  border-radius: 36% 0 0 0 / 21% 0 0 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 18%);
  pointer-events: none;
}

.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; display: block; }

.hero__content {
  position: relative;
  z-index: 5;
  width: 47.5%;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 2vw 88px clamp(42px, 4.2vw, 68px);
  box-sizing: border-box;
}

.speech-bubble {
  position: relative;
  width: min(440px, 88%);
  min-height: 220px;
  margin: 0 0 24px 8px;
  padding: 40px 56px 36px 48px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #08152b;
  background: transparent;
  font-size: clamp(24px, 2.05vw, 33px);
  line-height: 1.28;
  letter-spacing: .025em;
  box-shadow: none;
}

.speech-bubble::before {
  display: none;
}

.speech-bubble::after {
  display: none;
}

.speech-bubble__shape {
  position: absolute;
  z-index: 0;
  inset: 8px 4px 4px 4px;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: none;
}
.speech-bubble__shape path { fill: #fff; stroke: var(--blue); stroke-width: 2.2px; vector-effect: non-scaling-stroke; stroke-linejoin: round; }
.speech-bubble__rays { position: absolute; z-index: 2; top: 0; right: 52px; width: 43px; height: 40px; overflow: visible; pointer-events: none; }
.speech-bubble__rays path { fill: none; stroke: #60a5fa; stroke-width: 2px; stroke-linecap: round; }
.speech-bubble span { position: relative; z-index: 1; white-space: nowrap; }
.speech-bubble__wow { color: var(--blue-dark); font-size: 1.55em; line-height: .9; margin-bottom: 8px; }
.speech-bubble em { color: var(--blue-dark); font-style: normal; font-size: 1.24em; }

.hero__title { margin: 0; color: #061329; font-size: clamp(46px, 3.8vw, 58px); line-height: 1.18; letter-spacing: .015em; font-weight: 900; }
.hero__title span { display: block; white-space: nowrap; }
.hero__title em { color: var(--blue-dark); font-size: 1.45em; line-height: .95; font-style: normal; }
.hero__lead { margin: 18px 0 14px 8px; color: var(--blue-dark); font-size: clamp(21px, 2vw, 29px); letter-spacing: .08em; line-height: 1.45; font-weight: 800; }
.hero__lead span { display: block; }
.hero__support { margin: 0 8px 28px; max-width: min(34em, 100%); color: #152238; font-size: clamp(15px, 1.15vw, 17px); font-weight: 600; line-height: 1.75; letter-spacing: .03em; }

.hero__actions { width: min(650px, calc(100% - 48px)); display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.hero__cta-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0; color: #07152d; font-size: 25px; font-weight: 800; letter-spacing: .05em; }
.hero__cta-note strong { font-size: 1.55em; line-height: 1; }
.hero__cta-note i { color: #0756d9; font-size: 25px; }
.cta { min-height: 88px; display: grid; grid-template-columns: 36px 1fr 18px; align-items: center; gap: 12px; padding: 0 20px; border: 2px solid var(--blue-dark); border-radius: 12px; font-size: clamp(19px, 1.75vw, 25px); letter-spacing: .04em; transition: transform .2s ease, box-shadow .2s ease; }
.cta svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2; }
.cta b { font-size: 40px; line-height: 1; font-weight: 400; transform: translateY(-2px); }
.cta--single { min-height: 92px; grid-template-columns: 42px 1fr 28px; padding: 0 34px; border-radius: 999px; font-size: clamp(20px, 1.85vw, 27px); box-shadow: 0 12px 28px rgba(7,86,217,.24); }
.cta--single i:first-child { font-size: 38px; }
.cta--single i:last-child { font-size: 30px; }
.cta--primary { color: #fff; background: linear-gradient(135deg, #0751cf, #126be5); box-shadow: 0 12px 25px rgba(10, 88, 218, .18); }
.cta--secondary { min-height: 64px; grid-template-columns: 28px 1fr 16px; gap: 10px; padding: 0 22px; border-radius: 999px; color: var(--blue-dark); background: #fff; font-size: clamp(16px, 1.35vw, 19px); box-shadow: 0 6px 16px rgba(10, 88, 218, .08); }
.cta--secondary i:first-child { font-size: 24px; }
.cta--secondary i:last-child { font-size: 20px; }
.cta:hover { transform: translateY(-3px); box-shadow: 0 15px 28px rgba(10, 88, 218, .22); }

.voice-wave { position: absolute; z-index: 3; left: 39%; top: 39%; width: 86px; height: 140px; transform: rotate(2deg); }
.voice-wave i { position: absolute; top: 50%; left: 0; border: 9px solid #2791f1; border-top-color: transparent; border-bottom-color: transparent; border-right-color: transparent; border-radius: 50%; transform: translateY(-50%); }
.voice-wave i:nth-child(1) { width: 38px; height: 66px; left: 44px; }
.voice-wave i:nth-child(2) { width: 60px; height: 98px; left: 23px; }
.voice-wave i:nth-child(3) { width: 84px; height: 132px; left: 0; }

.voice-badge { position: absolute; z-index: 4; right: 4.2%; bottom: clamp(62px, 8%, 84px); width: clamp(168px, 15vw, 220px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: #fff; text-align: center; background: linear-gradient(145deg, #0a66eb, #0755d4); border: 3px solid #68b4ff; box-shadow: inset 0 0 0 2px #0f5cdb, 0 16px 32px rgba(1, 49, 132, .22); }
.voice-badge strong { font-size: clamp(24px, 2.25vw, 34px); line-height: 1.45; letter-spacing: .04em; }
.voice-badge__spark { position: absolute; color: #ffd31e; line-height: 1; }
.voice-badge__spark--one { right: 12%; top: -8%; font-size: 26px; transform: rotate(15deg); }
.voice-badge__spark--two { right: -2%; top: 8%; font-size: 16px; }

.hero__wave { position: absolute; z-index: 2; left: 0; bottom: -1px; width: 100%; height: 20%; pointer-events: none; }

.benefits { position: relative; overflow: hidden; min-height: 1060px; padding: 92px 28px 170px; background: #fff; isolation: isolate; }
.benefits__inner { position: relative; z-index: 2; width: min(1180px, 100%); margin: 0 auto; }
.section-kicker { display: flex; align-items: center; gap: 16px; color: var(--blue-dark); font-size: 18px; letter-spacing: .06em; }
.section-kicker span { width: 48px; aspect-ratio: 1; display: grid; place-items: center; color: #fff; background: var(--blue-dark); border-radius: 50%; font-size: 18px; }
.benefits__title { margin: 34px 0 16px; color: #061329; font-size: clamp(42px, 4.1vw, 62px); line-height: 1.25; letter-spacing: .02em; }
.benefits__title em { color: var(--blue-dark); font-style: normal; }
.benefits__intro { margin: 0 0 46px; color: #152238; font-size: 18px; font-weight: 600; line-height: 1.8; letter-spacing: .04em; }

.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { position: relative; min-height: 218px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 30px 24px 24px; background: #fff; border: 1px solid #dce2ea; border-radius: 18px; box-shadow: 0 8px 20px rgba(11,29,58,.08); }
.benefit-card__check { position: absolute; top: 20px; left: 22px; width: 38px; aspect-ratio: 1; display: grid; place-items: center; color: #fff; background: var(--blue-dark); border-radius: 50%; font-size: 24px; font-family: Arial, sans-serif; }
.benefit-card__icon { color: var(--blue-dark); font-size: 72px; line-height: 1; font-weight: 400; }
.benefit-card__icon-stack { position: relative; width: 80px; height: 72px; display: grid; place-items: end center; color: var(--blue-dark); }
.benefit-card__icon-stack .benefit-card__icon { font-size: 64px; }
.benefit-card__icon-star { position: absolute; top: -4px; right: 2px; color: var(--blue-dark); font-size: 28px; line-height: 1; }
.benefit-card h3 { margin: 0; color: #07152d; font-size: 22px; line-height: 1.5; text-align: center; letter-spacing: .02em; }

.future-card { position: relative; grid-column: span 2; min-height: 218px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 28px; padding: 30px 44px; overflow: hidden; background: linear-gradient(135deg, #eaf4ff, #dcecff); border-radius: 18px; }
.future-card::before, .future-card::after { content: ""; position: absolute; z-index: 0; left: -10%; right: -10%; height: 70px; bottom: -38px; border-radius: 50%; background: rgba(255,255,255,.6); transform: rotate(-3deg); }
.future-card::after { bottom: -55px; background: rgba(117,180,255,.2); transform: rotate(4deg); }
.future-card__copy { position: relative; z-index: 2; color: #07152d; font-size: clamp(24px, 2.3vw, 32px); line-height: 1.5; letter-spacing: .02em; }
.future-card__copy span { color: var(--blue-dark); font-size: 1.28em; }
.mini-screen { position: relative; z-index: 2; width: 100%; overflow: hidden; color: #12223d; background: #fff; border: 9px solid #111; border-radius: 12px; box-shadow: 0 8px 13px rgba(0,0,0,.22); font-size: 10px; font-weight: 600; }
.mini-screen__top { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px 4px; color: var(--blue-dark); font-size: 12px; }
.mini-screen table { width: 100%; border-collapse: collapse; }
.mini-screen th, .mini-screen td { padding: 5px 6px; border-bottom: 1px solid #dfe8f5; text-align: right; white-space: nowrap; }
.mini-screen th:nth-child(1), .mini-screen td:nth-child(1), .mini-screen th:nth-child(2), .mini-screen td:nth-child(2) { text-align: left; }
.mini-screen thead { background: #eaf3ff; }
.mini-screen tfoot { background: #f5f8fc; }
.future-card__spark { position: absolute; z-index: 3; color: #facc15; line-height: 1; }
.future-card__spark--one { right: 18px; top: 25px; font-size: 27px; }
.future-card__spark--two { right: 52px; top: 7px; color: #fff; font-size: 21px; }
.benefits__wave { position: absolute; z-index: 0; left: 0; width: 100%; pointer-events: none; }
.benefits__wave--top { top: 0; height: 150px; }
.benefits__wave--bottom { bottom: 0; height: 160px; }

.market-understanding { position: relative; overflow: hidden; min-height: 720px; padding: 72px 0 36px; background: linear-gradient(120deg, #fff 0%, #fff 58%, #f3f8ff 100%); }
.market-understanding__inner { position: relative; width: 100%; min-height: 612px; margin: 0 auto; }
.market-copy { position: relative; z-index: 4; width: 46%; padding: 0 20px 0 clamp(48px, 4.2vw, 84px); }
.market-copy__kicker { margin-bottom: 38px; }
.market-copy h2 { margin: 0 0 26px; color: #07152d; font-size: clamp(42px, 3.1vw, 54px); line-height: 1.55; letter-spacing: .02em; white-space: nowrap; }
.market-copy h2 em { color: #0756d9; font-style: normal; }
.market-copy__body { margin: 0; color: #17253d; font-size: 17px; font-weight: 600; line-height: 2; letter-spacing: .05em; }

.market-photo { position: absolute; z-index: 1; top: -42px; left: 42%; width: 44%; height: 654px; overflow: hidden; clip-path: polygon(8% 0, 100% 0, 90% 100%, 0 100%); }
.market-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%; }
.market-message { position: absolute; z-index: 2; top: -42px; right: 0; width: 30%; height: 654px; overflow: hidden; color: #fff; background: linear-gradient(145deg, #0756d9, #003f9f 78%); clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
.market-message__inner { position: relative; z-index: 2; padding: 300px 38px 0 20%; }
.market-message h3 { margin: 0; font-size: clamp(24px, 1.8vw, 32px); line-height: 1.6; letter-spacing: .04em; white-space: nowrap; }
.market-message__line { width: 100%; height: 1px; margin: 28px 0; background: rgba(255,255,255,.7); }
.market-message p { margin: 0; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.8; letter-spacing: .06em; white-space: nowrap; }
.market-message__fish { position: absolute; right: -3%; bottom: 8px; color: rgba(255,255,255,.16); font-size: 190px; line-height: 1; transform: rotate(-12deg); }
.market-message__fish--small { right: 24%; bottom: -10px; font-size: 105px; transform: rotate(-18deg); }

.process-grid { position: absolute; z-index: 5; left: 18px; bottom: 0; width: 73%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { position: relative; min-height: 304px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 38px 26px 26px; background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; box-shadow: 0 10px 24px rgba(11,29,58,.09); }
.process-card__number { position: absolute; top: 25px; left: 24px; width: 43px; aspect-ratio: 1; display: grid; place-items: center; color: #fff; background: #0756d9; border-radius: 50%; font-size: 18px; }
.process-card__icon { margin-top: 12px; color: #0756d9; font-size: 78px; font-weight: 400; line-height: 1; }
.process-card__icon-stack { position: relative; width: 90px; height: 84px; display: grid; place-items: center; margin-top: 12px; color: #0756d9; }
.process-card__icon-stack .process-card__icon { margin: 0; font-size: 82px; }
.process-card__icon-check { position: absolute; top: 15px; left: 26px; font-size: 35px; background: #fff; border-radius: 50%; }
.process-card p { margin: 24px 0 18px; color: #07152d; font-size: 17px; line-height: 1.7; text-align: center; letter-spacing: .03em; }
.process-card::after { content: ""; position: absolute; left: 36px; right: 36px; bottom: 24px; height: 1px; background: #87b5f7; }
.process-card__arrow { position: absolute; z-index: 3; right: -29px; top: 46%; color: #0756d9; font-size: 36px; }
.process-card:last-child .process-card__arrow { display: none; }

.complexity { padding: 86px 28px 72px; background: #fff; }
.complexity__inner { position: relative; width: min(1180px, 100%); margin: 0 auto; overflow: visible; }
.complexity__heading { position: relative; z-index: 2; width: 100%; min-height: 0; padding: 34px 42px 52px; background: #fff; }
.complexity__heading::after { display: none; }
.complexity__kicker { margin-bottom: 20px; }
.complexity__heading h2 { margin: 0; color: #07152d; font-size: clamp(34px, 3vw, 48px); line-height: 1.45; letter-spacing: .03em; }
.complexity__heading h2 em { color: #0756d9; font-style: normal; }

.complexity-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding: 0 0 24px; }
.complexity-card { position: relative; min-height: 322px; padding: 24px 24px 20px; background: #fff; border: 1px solid #dfe6ef; border-radius: 15px; box-shadow: 0 7px 18px rgba(11,29,58,.08); }
.complexity-card:nth-child(-n+3) { grid-column: span 2; }
.complexity-card:nth-child(n+4) { grid-column: span 3; min-height: 226px; }
.complexity-card h3 { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 12px; margin: 0 0 20px; padding: 0 0 14px; color: #0752bf; border-bottom: 1px solid #d7e4f5; font-size: 19px; line-height: 1.45; letter-spacing: .02em; }
.complexity-card h3 span { width: 44px; height: 30px; display: grid; place-items: center; color: #0756d9; background: #eaf2ff; border: 1px solid #b9d0f4; border-radius: 7px; font-size: 14px; line-height: 1; }
.complexity-card i { color: #0756d9; font-weight: 400; }
.name-flow__source { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: 12px; }
.name-flow__source i { font-size: 88px; }
.name-flow__source p { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.7; }
.name-flow__tables { display: grid; grid-template-columns: 1fr 30px 1fr; align-items: center; gap: 8px; margin-top: 16px; }
.name-flow__tables > i { font-size: 26px; }
.name-table { display: grid; overflow: hidden; border: 1px solid #b9cbea; border-radius: 6px; color: #102345; font-size: 12px; font-weight: 600; }
.name-table b { padding: 6px; background: #e5effc; text-align: center; }
.name-table span { padding: 4px 10px; }
.price-visual { position: relative; min-height: 232px; }
.price-visual > i { position: absolute; left: 4px; top: 30px; font-size: 105px; }
.price-visual > p { margin: 20px 0 0 46%; font-size: 14px; line-height: 1.75; }
.market-note { position: absolute; right: 5px; bottom: -4px; width: 54%; display: grid; padding: 14px 16px; color: #11294f; background: #fff; border: 1px solid #8ba7cf; border-radius: 5px; box-shadow: 4px 5px 0 #e7edf6; font-size: 12px; line-height: 1.45; transform: rotate(2deg); }
.market-note b { margin-bottom: 4px; text-align: center; }
.unit-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.unit-list div { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: #eff5fd; border-radius: 50%; }
.unit-list b { font-size: 13px; }
.unit-list i { font-size: 43px; }
.complexity-card__note { margin: 22px 0 0; color: #13233d; font-size: 14px; line-height: 1.7; }
.complexity-card--processing .complexity-card__note { text-align: center; }
.processing-flow { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr; align-items: center; justify-items: center; margin: 8px 0; }
.processing-flow i { font-size: 76px; }
.processing-flow .ti-arrow-right { font-size: 30px; }
.culture-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.culture-list div { display: flex; flex-direction: column; align-items: center; gap: 8px; border-right: 1px solid #d5e0ee; }
.culture-list div:last-child { border-right: 0; }
.culture-list b { font-size: 14px; }
.culture-list i { font-size: 72px; }
.complexity-card--culture .complexity-card__note { text-align: center; }
.complexity-conclusion { position: relative; min-height: 170px; display: flex; align-items: center; gap: 38px; padding: 24px 8% 24px 12%; overflow: hidden; color: #07152d; background: linear-gradient(135deg, #f0f7ff, #fff); border: 1px solid #dfe9f6; border-radius: 18px; }
.complexity-conclusion::before { content: ""; position: absolute; inset: auto -5% -54px; height: 96px; border-radius: 50%; border-top: 2px solid #d5e7ff; box-shadow: 0 -12px 0 #edf5ff, 0 -24px 0 #dcecff; }
.complexity-conclusion > i { position: relative; z-index: 2; color: #0756d9; font-size: 86px; }
.complexity-conclusion p { position: relative; z-index: 2; margin: 0; font-size: clamp(27px, 2.8vw, 42px); line-height: 1.35; }
.complexity-conclusion strong { color: #0756d9; font-size: 1.35em; }
.complexity-conclusion .complexity-conclusion__fish { position: absolute; right: 7%; bottom: -5px; color: rgba(7,86,217,.72); font-size: 180px; transform: rotate(3deg); }

.origin {
  position: relative;
  overflow: hidden;
  padding: 96px 28px 180px;
  background: #fff;
}
.origin__inner { position: relative; z-index: 2; width: min(1180px, 100%); margin: 0 auto; }
.origin__wave { position: absolute; z-index: 0; left: 0; bottom: 0; width: 100%; height: 160px; pointer-events: none; }
.origin-hero { position: relative; min-height: 0; overflow: visible; background: transparent; }
.origin-hero__content { position: relative; z-index: 2; width: min(820px, 100%); min-height: 0; margin: 0 auto; padding: 30px 20px 76px; background: transparent; text-align: center; }
.origin__kicker { justify-content: center; margin-bottom: 26px; }
.origin-hero h2 { margin: 0; color: #07152d; font-size: clamp(36px, 3.4vw, 52px); line-height: 1.35; letter-spacing: .04em; }
.origin-hero h2 em { color: #0756d9; font-style: normal; }
.origin-hero__lead { margin: 32px 0 30px; color: #14233d; font-size: 19px; line-height: 1.8; }
.origin-hero__story { width: min(700px, 100%); display: grid; grid-template-columns: 1fr; gap: 20px; margin: 0 auto; padding-top: 30px; border-top: 1px dashed #75a5ef; }
.origin-hero__story p { margin: 0; color: #10213d; font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; line-height: 1.8; letter-spacing: .02em; }
.origin-hero__story p:last-child { grid-column: auto; margin-top: 4px; color: #0756d9; }

.origin-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; background: #fff; border: 1px solid #dfe6ef; border-radius: 17px; box-shadow: 0 8px 22px rgba(11,29,58,.07); }
.origin-step { position: relative; min-height: 304px; display: flex; flex-direction: column; align-items: center; padding: 28px 34px 24px; border-right: 1px solid #d9e2ee; }
.origin-step:last-child { border-right: 0; }
.origin-step__heading { width: 100%; display: flex; align-items: center; gap: 14px; color: #0752bf; }
.origin-step__heading span { width: 43px; aspect-ratio: 1; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: #0756d9; border-radius: 50%; font-size: 16px; }
.origin-step h3 { margin: 0; font-size: 21px; letter-spacing: .04em; }
.origin-step__icon { margin: 22px 0 16px; color: #0756d9; font-size: 90px; font-weight: 400; line-height: 1; }
.origin-step__icon-stack { position: relative; width: 112px; height: 102px; display: grid; place-items: center; margin: 17px 0 9px; color: #0756d9; }
.origin-step__icon-stack .ti-device-laptop { font-size: 94px; }
.origin-step__icon-stack .ti-settings { position: absolute; right: 0; bottom: 2px; padding: 2px; background: #fff; border-radius: 50%; font-size: 45px; }
.origin-step > p { margin: auto 0 0; color: #14233d; font-size: 14px; font-weight: 600; line-height: 1.75; text-align: center; }
.origin-step__arrow { position: absolute; z-index: 2; top: 48%; right: -22px; color: #0756d9; background: #fff; font-size: 42px; line-height: 1; }
.origin-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.origin-gallery div { height: 170px; overflow: hidden; border-radius: 12px; }
.origin-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; }
.origin-gallery div:nth-child(1) img { object-position: 50% 72%; }
.origin-gallery div:nth-child(2) img { object-position: 42% 58%; }
.origin-gallery div:nth-child(3) img { object-position: 50% 48%; }
.origin-conclusion { min-height: 145px; display: flex; align-items: center; justify-content: center; gap: 38px; margin-top: 18px; padding: 24px 40px; color: #0752bf; background: linear-gradient(135deg, #fff, #edf6ff); border: 2px solid #0756d9; border-radius: 14px; }
.origin-conclusion i { color: #0756d9; font-size: 78px; font-weight: 400; }
.origin-conclusion p { margin: 0; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.45; letter-spacing: .04em; }
.origin-conclusion strong { color: #0756d9; }

.functions {
  position: relative;
  overflow: hidden;
  padding: 88px 28px 86px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 64%, #f3f8ff 100%);
}
.functions__inner { position: relative; z-index: 1; width: min(1180px, 100%); margin: 0 auto; }
.functions__kicker { justify-content: center; }
.functions h2 { margin: 28px 0 0; color: #07152d; font-size: clamp(38px, 4.3vw, 60px); line-height: 1.28; letter-spacing: .04em; text-align: center; }
.functions h2 em { color: #0756d9; font-style: normal; }
.functions h2::after { content: ""; width: 64px; height: 5px; display: block; margin: 25px auto 0; background: #0756d9; border-radius: 999px; }

.functions-orbit { position: relative; width: min(930px, 100%); height: 650px; margin: 30px auto 20px; }
.functions-orbit::before { content: ""; position: absolute; inset: 82px 72px 55px; border: 3px dotted #4d91f3; border-radius: 50%; }
.function-node { position: absolute; z-index: 2; width: 158px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #063887; background: rgba(255,255,255,.96); border: 1px solid #c8daf3; border-radius: 50%; box-shadow: 0 8px 22px rgba(11,59,134,.12), inset 0 0 0 7px #f5f9ff; }
.function-node::after { content: ""; width: 28px; height: 3px; background: #0756d9; border-radius: 999px; }
.function-node i { color: #0756d9; font-size: 57px; line-height: 1; }
.function-node strong { font-size: 19px; letter-spacing: .03em; }
.function-node--voice { top: 2px; left: 50%; transform: translateX(-50%); }
.function-node--purchase { top: 98px; left: 9%; }
.function-node--inventory { top: 98px; right: 9%; }
.function-node--analysis { top: 310px; left: 0; }
.function-node--sales { top: 310px; right: 0; }
.function-node--customer { left: 15%; bottom: 0; }
.function-node--profit { right: 15%; bottom: 0; }

.functions-center { position: absolute; z-index: 3; top: 50%; left: 50%; width: 330px; min-height: 205px; display: grid; place-items: center; align-content: center; gap: 10px; padding: 26px 30px; color: #07152d; background: rgba(255,255,255,.98); border: 2px solid #9fc4f8; border-radius: 24px; box-shadow: 0 12px 30px rgba(11,59,134,.15), inset 0 0 0 7px #f7faff; transform: translate(-50%, -45%); text-align: center; }
.functions-center > i { color: #0756d9; font-size: 46px; }
.functions-center p { margin: 0; font-size: 25px; font-weight: 700; line-height: 1.5; letter-spacing: .04em; }
.functions-center strong { color: #0756d9; }

.functions-cta { width: min(760px, 100%); min-height: 98px; display: grid; grid-template-columns: 62px 1fr 40px; align-items: center; gap: 20px; margin: 28px auto 4px; padding: 15px 30px; color: #fff; background: linear-gradient(135deg, #0b58db 0%, #174ccc 58%, #123da7 100%); border: 3px solid #fff; outline: 3px solid #8fb9f6; border-radius: 16px; box-shadow: 0 14px 34px rgba(7,63,166,.28), 0 0 0 8px rgba(219,234,254,.58); font-size: 24px; font-weight: 700; letter-spacing: .045em; transition: transform .2s ease, box-shadow .2s ease; }
.functions-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(7,63,166,.34), 0 0 0 8px rgba(219,234,254,.75); }
.functions-cta:focus-visible { outline: 4px solid #6fa7f5; outline-offset: 5px; }
.functions-cta i:first-child { font-size: 56px; }
.functions-cta .functions-cta__accent { color: #ddecff; font-size: 33px; }

.contact-section { position: relative; overflow: hidden; padding: 90px 28px 96px; background: #f4f8fd; }
.contact-section__inner { position: relative; width: min(1180px, 100%); min-height: 0; margin: 0 auto; }
.contact-intro { position: relative; z-index: 1; width: min(1000px, 100%); margin: 0 auto 54px; padding: 2px 0 0; }
.contact-intro__kicker { justify-content: center; margin-bottom: 30px; }
.contact-intro h2 { width: min(760px, 100%); margin: 0 auto; color: #07152d; font-size: clamp(34px, 3.3vw, 48px); line-height: 1.42; letter-spacing: .035em; text-align: center; }
.contact-intro h2 em { color: #0756d9; font-style: normal; }
.contact-intro__lead { margin: 30px 0 24px; color: #14233d; font-size: 18px; font-weight: 700; line-height: 1.8; text-align: center; }
.contact-intro__lead strong { color: #0756d9; }
.contact-points { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d8e3ef; border-bottom: 1px solid #d8e3ef; }
.contact-point { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: center; min-height: 138px; padding: 18px 22px; border-right: 1px solid #d8e3ef; }
.contact-point:last-child { border-right: 0; }
.contact-point > span { width: 62px; aspect-ratio: 1; display: grid; place-items: center; color: #0756d9; background: #fff; border: 1px solid #dce6f2; border-radius: 50%; box-shadow: 0 5px 16px rgba(11,59,134,.09); }
.contact-point i { font-size: 34px; }
.contact-point p { margin: 0; color: #14233d; font-size: 13px; font-weight: 600; line-height: 1.65; }
.contact-point strong { color: #0756d9; }
.contact-form-panel { position: relative; z-index: 2; width: min(980px, 100%); margin: 0 auto; padding: 42px 38px 32px; background: rgba(255,255,255,.97); border: 1px solid #dce5f0; border-radius: 16px; box-shadow: 0 12px 32px rgba(11,29,58,.09); }
.contact-form-panel h3 { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 34px; color: #0752bf; font-size: 22px; letter-spacing: .05em; }
.contact-form-panel h3 i { font-size: 30px; }
.contact-form { margin: 0; }
.contact-form__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-form label { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 22px; align-items: center; color: #07152d; font-size: 15px; font-weight: 700; }
.contact-form label > span { display: flex; align-items: center; gap: 8px; }
.contact-form label b { padding: 3px 8px; color: #fff; background: #c93b35; border-radius: 4px; font-size: 11px; line-height: 1.2; }
.contact-form label b.is-optional { background: #7d8795; }
.contact-form__honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.contact-form input,
.contact-form textarea { width: 100%; color: #07152d; background: #fff; border: 1px solid #cfd8e3; border-radius: 7px; font: inherit; font-weight: 400; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input { height: 58px; padding: 0 18px; }
.contact-form textarea { min-height: 150px; padding: 14px 16px; line-height: 1.7; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa4b2; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #3277df; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.contact-form__message { align-items: start !important; }
.contact-form__message > span { padding-top: 14px; }
.contact-form__actions { display: flex; justify-content: center; margin-top: 34px; }
.contact-form__error { margin: 22px 0 -12px; color: #c93b35; font-size: 13px; font-weight: 700; text-align: center; }
.contact-submit { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 12px; color: #fff; border: 0; border-radius: 8px; box-shadow: 0 8px 18px rgba(6,54,137,.18); cursor: pointer; font: inherit; font-size: 17px; font-weight: 700; letter-spacing: .03em; transition: transform .2s ease, box-shadow .2s ease; }
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(6,54,137,.25); }
.contact-submit:focus-visible { outline: 4px solid #82b4ff; outline-offset: 3px; }
.contact-submit i { flex: 0 0 auto; font-size: 31px; }
.contact-submit--single { width: min(440px, 100%); min-height: 76px; background: #0756d9; border: 2px solid #fff; outline: 2px solid #8fb9f6; border-radius: 10px; font-size: 20px; }
.contact-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-form-success { padding: 52px 20px 36px; color: #14233d; text-align: center; }
.contact-form-success > i { color: #0756d9; font-size: 68px; }
.contact-form-success h3 { margin: 15px 0 10px; color: #0756d9; font-size: 25px; }
.contact-form-success p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.8; }
.contact-privacy { margin-top: 34px; padding: 24px 26px; color: #26344b; background: #f5f7fa; border: 1px solid #e1e6ed; border-radius: 8px; font-size: 13px; font-weight: 500; line-height: 1.75; }
.contact-privacy h4 { margin: 0 0 8px; color: #07152d; font-size: 15px; font-weight: 700; }
.contact-privacy p { margin: 0; }
.contact-privacy p + p { margin-top: 7px; }

.floating-contact-cta { position: fixed; z-index: 40; right: 26px; bottom: 26px; width: 300px; overflow: hidden; color: #fff; background: #0756d9; border: 2px solid #fff; outline: 2px solid #8fb9f6; border-radius: 16px; box-shadow: 0 14px 32px rgba(5,44,116,.3); text-align: center; opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .45s ease, visibility .45s ease, transform .45s ease, box-shadow .2s ease; }
.floating-contact-cta:hover { box-shadow: 0 18px 38px rgba(5,44,116,.38); transform: translateY(-3px); }
.floating-contact-cta:focus-visible { outline: 4px solid #75aaff; outline-offset: 4px; }
.floating-contact-cta > span { display: block; padding: 8px 14px; color: #dceaff; background: #0647b5; font-size: 13px; font-weight: 700; }
.floating-contact-cta strong { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 18px; font-size: 23px; letter-spacing: .04em; }
.floating-contact-cta strong i { font-size: 30px; }
.floating-contact-cta small { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 9px 14px; color: #0756d9; background: #fff; font-size: 14px; font-weight: 700; }
.floating-contact-cta.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(18px); }

.site-footer { padding: 52px 28px 34px; background: #fff; border-top: 1px solid #e1e7ef; }
.site-footer__inner { width: min(1180px, 100%); margin: 0 auto; }
.site-footer__label { margin: 0 0 16px; color: #0756d9; font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.site-footer__logo { width: fit-content; display: block; margin-bottom: 20px; }
.site-footer__logo img { width: 190px; height: auto; display: block; }
.site-footer address { margin: 0; color: #14233d; font-size: 15px; font-style: normal; line-height: 1.75; }
.site-footer__mobile-break { display: none; }
.site-footer__corporate-link { width: fit-content; display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: #0756d9; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }
.site-footer__corporate-link i { font-size: 17px; }
.site-footer small { display: block; margin-top: 34px; color: #7c8798; font-size: 11px; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .header-button { min-width: 128px; }
  .speech-bubble { margin-left: 0; }
  .complexity-card { padding-inline: 18px; }
  .complexity-card h3 { font-size: 16px; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }

  .site-header { position: sticky; top: 0; grid-template-columns: 1fr auto; padding: 0 22px; border-bottom-color: #e7ecf3; }
  .brand__logo { height: 34px; }
  .header-actions { display: none; }
  .menu-button { width: 39px; height: 34px; padding: 3px; display: flex; flex-direction: column; justify-content: space-between; border: 0; background: transparent; }
  .menu-button span { display: block; width: 100%; height: 3px; border-radius: 2px; background: #061329; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(12.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-12.5px) rotate(-45deg); }

  .mobile-menu { position: fixed; z-index: 29; top: var(--header-height); left: 0; right: 0; padding: 18px 24px 24px; display: grid; gap: 2px; background: #fff; border-bottom: 1px solid #dce5f0; box-shadow: 0 16px 30px rgba(11,29,58,.1); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 13px 4px; border-bottom: 1px solid #edf1f5; }

  .hero { min-height: calc(100svh - var(--header-height)); height: auto; padding-bottom: 0; overflow: hidden; display: flex; flex-direction: column; }
  .hero__content { order: 1; width: 100%; height: auto; align-items: center; padding: 26px 18px 26px; text-align: center; }

  .speech-bubble { width: min(350px, calc(100% - 8px)); min-height: 78px; margin: 0 auto 24px; padding: 12px 22px; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; justify-items: start; align-items: center; border: 2px solid var(--blue); border-radius: 27px; font-size: clamp(17px, 4.7vw, 21px); line-height: 1.18; }
  .speech-bubble__shape { display: none; }
  .speech-bubble__rays { top: -14px; right: 4px; width: 35px; height: 32px; }
  .speech-bubble::before { content: ""; display: block; position: absolute; right: 30px; bottom: -9px; width: 17px; height: 17px; background: #fff; transform: rotate(45deg); border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }
  .speech-bubble::after { top: 0; right: -17px; width: 29px; height: 25px; }
  .speech-bubble span { white-space: nowrap; }
  .speech-bubble__wow { grid-row: 1 / 3; margin: 0; font-size: 1.6em; align-self: center; }
  .speech-bubble em { font-size: 1.35em; }

  .hero__title { width: 100%; font-size: clamp(25px, 7.4vw, 30px); line-height: 1.18; letter-spacing: -.015em; }
  .hero__title span { white-space: nowrap; }
  .hero__title em { font-size: 1.42em; }
  .hero__lead { margin: 14px 0 10px; font-size: clamp(16px, 4.6vw, 20px); letter-spacing: .06em; line-height: 1.4; }
  .hero__support { margin: 0 0 18px; max-width: 34em; font-size: 13.5px; line-height: 1.7; text-align: left; }

  .hero__actions { width: min(100%, 440px); gap: 8px; }
  .cta--secondary { min-height: 50px; grid-template-columns: 22px 1fr 14px; gap: 6px; padding: 0 14px; font-size: 14.5px; }
  .cta--secondary i:first-child { font-size: 20px; }
  .cta--secondary i:last-child { font-size: 18px; }
  .hero__cta-note { gap: 5px; font-size: 18px; }
  .hero__cta-note i { font-size: 18px; }
  .cta { min-height: 58px; grid-template-columns: 27px 1fr 12px; gap: 7px; padding: 0 12px; border-radius: 12px; font-size: clamp(16px, 4.5vw, 20px); }
  .cta svg { width: 28px; height: 28px; }
  .cta b { font-size: 30px; }
  .cta--single { min-height: 66px; grid-template-columns: 30px 1fr 20px; padding: 0 20px; border-radius: 999px; font-size: 18px; }
  .cta--single i:first-child { font-size: 28px; }
  .cta--single i:last-child { font-size: 22px; }

  .hero__media { position: relative; order: 2; width: calc(100% - 20px); height: min(66svh, 560px); min-height: 405px; margin: 10px auto 0; border-radius: 80px 80px 0 0 / 48px 48px 0 0; }
  .hero__media img { object-position: 48% 50%; }
  .voice-wave { left: 39%; top: 33%; width: 55px; height: 90px; transform: scale(.78); transform-origin: left top; }
  .voice-badge { right: 5%; bottom: 7%; width: clamp(126px, 35vw, 166px); }
  .voice-badge strong { font-size: clamp(20px, 5.7vw, 27px); }
  .hero__wave { display: none; }

  .benefits { min-height: 0; padding: 58px 20px 90px; }
  .section-kicker { gap: 10px; font-size: 15px; }
  .section-kicker span { width: 36px; font-size: 14px; }
  .benefits__title { margin: 25px 0 12px; font-size: clamp(32px, 9vw, 40px); line-height: 1.18; }
  .benefits__title em { display: inline; }
  .benefits__intro { margin-bottom: 28px; font-size: 14px; line-height: 1.8; }
  .benefits__intro br { display: none; }
  .benefits__grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card { min-height: 68px; display: grid; grid-template-columns: 30px 58px 1fr; gap: 10px; justify-items: center; padding: 8px 16px 8px 12px; border-radius: 12px; box-shadow: 0 3px 10px rgba(11,29,58,.06); }
  .benefit-card__check { position: static; width: 27px; font-size: 17px; }
  .benefit-card__icon { font-size: 47px; }
  .benefit-card__icon-stack { width: 58px; height: 50px; }
  .benefit-card__icon-stack .benefit-card__icon { font-size: 44px; }
  .benefit-card__icon-star { top: -2px; right: 0; font-size: 20px; }
  .benefit-card h3 { width: 100%; font-size: 14px; line-height: 1.5; text-align: left; }
  .benefit-card h3 br { display: none; }
  .future-card { grid-column: auto; min-height: 270px; display: flex; flex-direction: column; align-items: stretch; gap: 18px; padding: 24px 20px 18px; border-radius: 14px; }
  .future-card__copy { font-size: 22px; line-height: 1.45; }
  .mini-screen { width: 94%; margin: 0 auto; border-width: 7px; font-size: 7px; }
  .mini-screen__top { padding: 6px 7px 3px; font-size: 9px; }
  .mini-screen th, .mini-screen td { padding: 3px 4px; }
  .benefits__wave--top { height: 80px; opacity: .65; }
  .benefits__wave--bottom { height: 80px; }

  .market-understanding { min-height: 0; padding: 56px 20px 48px; background: #fff; }
  .market-understanding__inner { min-height: 0; }
  .market-copy { width: 100%; padding: 0; }
  .market-copy__kicker { margin-bottom: 25px; }
  .market-copy h2 { margin: 0 0 20px; font-size: clamp(30px, 8.2vw, 38px); line-height: 1.45; }
  .market-copy__body { font-size: 15px; line-height: 1.75; letter-spacing: .03em; }
  .market-photo { position: relative; top: auto; left: auto; width: 100%; height: 285px; margin-top: 24px; clip-path: none; border-radius: 20px 20px 0 0; }
  .market-photo img { object-position: 50% 48%; }
  .market-message { position: relative; top: auto; right: auto; width: 100%; height: 285px; margin: 0; clip-path: none; border-radius: 0 0 20px 20px; }
  .market-message::before { content: ""; position: absolute; z-index: 1; left: -10%; right: -10%; top: -38px; height: 70px; border-radius: 50%; background: #0756d9; }
  .market-message__inner { padding: 28px 24px 0; }
  .market-message h3 { font-size: 25px; line-height: 1.55; }
  .market-message__line { width: 58%; margin: 18px 0; }
  .market-message p { font-size: 17px; line-height: 1.7; }
  .market-message__fish { right: -7%; bottom: 6px; font-size: 150px; }
  .market-message__fish--small { display: none; }
  .process-grid { position: relative; left: auto; bottom: auto; width: 100%; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .process-card { min-height: 124px; display: grid; grid-template-columns: 62px 105px 1fr 22px; align-items: center; justify-items: center; padding: 14px 18px 14px 12px; border-radius: 15px; }
  .process-card__number { position: static; width: 48px; font-size: 17px; }
  .process-card__icon { margin: 0; font-size: 68px; }
  .process-card__icon-stack { width: 88px; height: 78px; margin: 0; }
  .process-card__icon-stack .process-card__icon { font-size: 74px; }
  .process-card p { width: 100%; margin: 0; padding-left: 24px; border-left: 1px solid #87b5f7; font-size: 15px; line-height: 1.6; text-align: left; }
  .process-card p br { display: none; }
  .process-card::after { display: none; }
  .process-card__arrow, .process-card:last-child .process-card__arrow { position: static; display: block; color: #0756d9; font-size: 29px; }

  .complexity { padding: 54px 12px 42px; }
  .complexity__inner { border-radius: 0; }
  .complexity__heading { width: 100%; min-height: 0; padding: 24px 16px 20px; }
  .complexity__heading::after { display: none; }
  .complexity__kicker { margin-bottom: 16px; }
  .complexity__heading h2 { font-size: 27px; line-height: 1.45; }
  .complexity-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 0 12px; }
  .complexity-card, .complexity-card:nth-child(-n+3), .complexity-card:nth-child(n+4) { grid-column: auto; min-height: 0; padding: 14px 14px 12px; border-radius: 10px; }
  .complexity-card h3 { grid-template-columns: 38px 1fr; gap: 9px; margin-bottom: 10px; padding-bottom: 9px; font-size: 14px; line-height: 1.4; }
  .complexity-card h3 br { display: none; }
  .complexity-card h3 span { width: 38px; height: 25px; border-radius: 6px; font-size: 12px; }
  .name-flow__source { grid-template-columns: 56px 1fr; gap: 8px; }
  .name-flow__source i { font-size: 50px; }
  .name-flow__source p { font-size: 10px; line-height: 1.55; }
  .name-flow__tables { margin-top: 8px; }
  .name-table { font-size: 9px; }
  .name-table b { padding: 4px; }
  .name-table span { padding: 3px 6px; }
  .price-visual { min-height: 122px; }
  .price-visual > i { top: 8px; font-size: 72px; }
  .price-visual > p { margin: 8px 0 0 4px; padding-top: 77px; font-size: 10px; }
  .market-note { right: 4px; bottom: 7px; width: 48%; padding: 8px 9px; font-size: 8px; }
  .unit-list { gap: 5px; }
  .unit-list b { font-size: 10px; }
  .unit-list i { font-size: 30px; }
  .complexity-card__note { margin-top: 10px; font-size: 10px; line-height: 1.55; }
  .complexity-card__note br { display: none; }
  .processing-flow { grid-template-columns: 1fr 20px 1fr 20px 1fr; }
  .processing-flow i { font-size: 48px; }
  .processing-flow .ti-arrow-right { font-size: 20px; }
  .culture-list b { font-size: 10px; }
  .culture-list i { font-size: 45px; }
  .complexity-conclusion { min-height: 74px; gap: 12px; padding: 10px 14px; color: #fff; background: linear-gradient(135deg, #0756d9, #003f9f); border: 0; border-radius: 12px; }
  .complexity-conclusion::before { display: none; }
  .complexity-conclusion > i { color: #facc15; font-size: 34px; }
  .complexity-conclusion p { font-size: 15px; line-height: 1.35; }
  .complexity-conclusion strong { color: #facc15; }
  .complexity-conclusion .complexity-conclusion__fish { display: none; }

  .origin { padding: 64px 12px 104px; }
  .origin__wave { height: 78px; }
  .origin-hero { min-height: 0; overflow: visible; border-radius: 0; }
  .origin-hero__content { width: 100%; min-height: 0; padding: 10px 8px 42px; border-radius: 0; text-align: center; }
  .origin__kicker { justify-content: center; margin-bottom: 20px; }
  .origin-hero h2 { font-size: 31px; line-height: 1.4; }
  .origin-hero__lead { margin: 18px 0 14px; font-size: 15px; line-height: 1.7; }
  .origin-hero__story { grid-template-columns: 1fr; gap: 18px; padding-top: 22px; }
  .origin-hero__story p, .origin-hero__story p:last-child { grid-column: auto; font-size: 15px; line-height: 1.8; }
  .origin-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 12px; background: transparent; border: 0; box-shadow: none; }
  .origin-step { min-height: 126px; display: grid; grid-template-columns: 1fr 82px 1.45fr; align-items: center; gap: 10px; padding: 14px; background: #fff; border: 1px solid #dfe6ef; border-radius: 12px; box-shadow: 0 4px 12px rgba(11,29,58,.06); }
  .origin-step:last-child { border-right: 1px solid #dfe6ef; }
  .origin-step__heading { align-self: start; gap: 8px; }
  .origin-step__heading span { width: 34px; font-size: 13px; }
  .origin-step h3 { font-size: 14px; line-height: 1.4; }
  .origin-step__icon { margin: 0; font-size: 62px; }
  .origin-step__icon-stack { width: 74px; height: 70px; margin: 0; }
  .origin-step__icon-stack .ti-device-laptop { font-size: 65px; }
  .origin-step__icon-stack .ti-settings { right: 0; bottom: 3px; font-size: 30px; }
  .origin-step > p { margin: 0; font-size: 10px; line-height: 1.6; text-align: left; }
  .origin-step > p br { display: none; }
  .origin-step__arrow { top: auto; right: auto; left: 50%; bottom: -24px; padding: 0; font-size: 28px; transform: translateX(-50%) rotate(90deg); }
  .origin-gallery { gap: 4px; margin-top: 14px; }
  .origin-gallery div { height: 76px; border-radius: 5px; }
  .origin-conclusion { min-height: 104px; gap: 14px; margin-top: 10px; padding: 16px; border-width: 1px; border-radius: 10px; }
  .origin-conclusion i { font-size: 44px; }
  .origin-conclusion p { font-size: 15px; line-height: 1.45; }

  .functions { padding: 56px 12px 44px; background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
  .functions__kicker { margin-bottom: 0; }
  .functions h2 { margin-top: 20px; font-size: clamp(29px, 8.1vw, 36px); line-height: 1.4; }
  .functions h2::after { width: 46px; height: 4px; margin-top: 17px; }
  .functions-orbit { width: min(430px, 100%); height: 500px; margin: 24px auto 18px; }
  .functions-orbit::before { inset: 59px 30px 48px; border-width: 2px; }
  .function-node { width: 102px; gap: 4px; box-shadow: 0 5px 15px rgba(11,59,134,.1), inset 0 0 0 5px #f5f9ff; }
  .function-node::after { width: 19px; height: 2px; }
  .function-node i { font-size: 38px; }
  .function-node strong { font-size: 12px; }
  .function-node--voice { top: 0; }
  .function-node--purchase { top: 76px; left: 0; }
  .function-node--inventory { top: 76px; right: 0; }
  .function-node--analysis { top: 251px; left: -5px; }
  .function-node--sales { top: 251px; right: -5px; }
  .function-node--customer { left: 10%; bottom: 0; }
  .function-node--profit { right: 10%; bottom: 0; }
  .functions-center { width: 190px; min-height: 160px; gap: 7px; padding: 18px 14px; border-radius: 19px; box-shadow: 0 8px 20px rgba(11,59,134,.13), inset 0 0 0 5px #f7faff; transform: translate(-50%, -46%); }
  .functions-center > i { font-size: 32px; }
  .functions-center p { font-size: 17px; line-height: 1.5; }
  .functions-cta { min-height: 78px; grid-template-columns: 42px 1fr 25px; gap: 10px; margin-top: 16px; padding: 10px 16px; border-width: 2px; outline-width: 2px; border-radius: 12px; box-shadow: 0 10px 24px rgba(7,63,166,.24), 0 0 0 5px rgba(219,234,254,.62); font-size: 15px; line-height: 1.45; }
  .functions-cta i:first-child { font-size: 36px; }
  .functions-cta .functions-cta__accent { font-size: 23px; }

  .contact-section { padding: 58px 12px 48px; }
  .contact-section__inner { min-height: 0; display: block; }
  .contact-intro { margin-bottom: 24px; padding: 0; }
  .contact-intro__kicker { margin-bottom: 22px; }
  .contact-intro h2 { font-size: 30px; line-height: 1.43; }
  .contact-intro__lead { margin: 20px 0 14px; font-size: 15px; line-height: 1.7; }
  .contact-points { display: block; margin-bottom: 24px; border-bottom: 0; }
  .contact-point { grid-template-columns: 52px 1fr; gap: 14px; min-height: 82px; padding: 11px 0; border-right: 0; border-bottom: 1px solid #d8e3ef; }
  .contact-point > span { width: 52px; }
  .contact-point i { font-size: 28px; }
  .contact-point p { font-size: 12px; line-height: 1.55; }
  .contact-form-panel { padding: 22px 12px 18px; border-radius: 12px; }
  .contact-form-panel h3 { gap: 8px; margin-bottom: 20px; font-size: 16px; }
  .contact-form-panel h3 i { font-size: 23px; }
  .contact-form__grid { grid-template-columns: 1fr; gap: 13px; }
  .contact-form label { grid-template-columns: 1fr; gap: 6px; font-size: 12px; }
  .contact-form label b { padding: 2px 6px; font-size: 9px; }
  .contact-form input { height: 42px; padding: 0 12px; }
  .contact-form textarea { min-height: 112px; padding: 10px 12px; }
  .contact-form__message { align-items: stretch !important; }
  .contact-form__message > span { padding-top: 0; }
  .contact-form__actions { margin-top: 16px; }
  .contact-form__error { margin: 14px 0 -4px; font-size: 11px; }
  .contact-submit { min-height: 52px; gap: 8px; padding: 8px 12px; font-size: 15px; }
  .contact-submit i { font-size: 24px; }
  .contact-submit--single { min-height: 58px; }
  .contact-form-success { padding: 36px 10px 26px; }
  .contact-form-success > i { font-size: 54px; }
  .contact-form-success h3 { font-size: 20px; }
  .contact-form-success p { font-size: 12px; }
  .contact-privacy { margin-top: 22px; padding: 16px 14px; font-size: 10px; line-height: 1.7; }
  .contact-privacy h4 { margin-bottom: 6px; font-size: 11px; }
  .contact-privacy p + p { margin-top: 6px; }

  .floating-contact-cta { right: 12px; bottom: 12px; width: min(300px, calc(100% - 24px)); border-radius: 12px; }
  .floating-contact-cta > span { padding: 5px 10px; font-size: 10px; }
  .floating-contact-cta strong { min-height: 48px; gap: 7px; padding: 7px 12px; font-size: 18px; }
  .floating-contact-cta strong i { font-size: 24px; }
  .floating-contact-cta small { padding: 6px 10px; font-size: 11px; }

  .site-footer { padding: 38px 20px 26px; }
  .site-footer__label { margin-bottom: 13px; font-size: 11px; }
  .site-footer__logo { margin-bottom: 16px; }
  .site-footer__logo img { width: 160px; }
  .site-footer address { font-size: 13px; line-height: 1.7; }
  .site-footer__mobile-break { display: block; }
  .site-footer__corporate-link { margin-top: 12px; font-size: 13px; }
  .site-footer small { margin-top: 28px; font-size: 10px; }
}

@media (max-width: 390px) {
  .site-header { padding-inline: 16px; }
  .brand__logo { height: 32px; }
  .hero__content { padding-inline: 12px; }
  .speech-bubble { margin-bottom: 18px; font-size: 16px; }
  .hero__title { font-size: clamp(25px, 7.4vw, 29px); }
  .hero__lead { font-size: 16px; }
  .hero__support { font-size: 13px; }
  .cta { min-height: 56px; font-size: 16px; padding-inline: 9px; }
  .cta--single { min-height: 62px; padding-inline: 16px; }
  .hero__media { min-height: 390px; border-radius: 60px 60px 0 0 / 36px 36px 0 0; }
}

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