:root {
  --ink: #111923;
  --muted: #667382;
  --line: #d7dee7;
  --soft: #f5f7f9;
  --tint-green: #f2f7f5;
  --tint-blue: #f3f6fa;
  --tint-warm: #f8f6f2;
  --white: #ffffff;
  --green: #118c67;
  --green-dark: #08785a;
  --coral: #ff7966;
  --blue: #3977e5;
  --yellow: #f7c948;
  --panel: #f9fbfd;
  --shadow: 0 18px 48px rgba(18, 28, 40, 0.11);
  --shadow-tight: 0 10px 28px rgba(18, 28, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfcfd;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

::selection {
  color: var(--white);
  background: var(--green-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(209, 220, 231, 0.76);
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--green-dark);
  box-shadow: 0 8px 20px rgba(18, 28, 40, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.12;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 24px);
  color: #3d4957;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: #121b26;
  box-shadow: 0 10px 24px rgba(18, 27, 38, 0.16);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mobile-nav {
  display: none;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 25, 35, 0.42);
}

.promo-popup.is-hidden {
  display: none;
}

.promo-card {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid #cfd8e2;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(18, 28, 40, 0.22);
}

.promo-poster {
  aspect-ratio: 9 / 12.4;
  background: #f7f9fc;
}

.promo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
}

.promo-copy {
  position: absolute;
  inset: 32px auto auto 34px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(430px, calc(100% - 76px));
  min-height: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(207, 216, 226, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.promo-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border: 1px solid #bed5ee;
  border-radius: 8px;
  color: #0c4f8f;
  font-size: 15px;
  font-weight: 800;
  background: var(--white);
}

.promo-copy h2 {
  margin-bottom: 12px;
  color: #0a2f62;
  font-size: clamp(43px, 4.9vw, 58px);
  line-height: 1.02;
  font-weight: 800;
}

.promo-subtitle {
  margin-bottom: 10px;
  color: #0e5ba4;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
}

.promo-lead {
  max-width: 390px;
  margin-bottom: 14px;
  color: #334457;
  font-size: 16px;
  line-height: 1.65;
}

.promo-time {
  position: absolute;
  top: 5px;
  right: -86px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid #0a2f62;
  border-radius: 50%;
  color: #0a2f62;
  background: rgba(255, 255, 255, 0.86);
}

.promo-time strong {
  margin-top: 5px;
  font-size: 25px;
  line-height: 0.8;
}

.promo-time span {
  margin-top: -14px;
  font-size: 12px;
  font-weight: 800;
}

.promo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 390px;
  margin-bottom: 14px;
}

.promo-badges span {
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: #0e5ba4;
}

.promo-badges span:nth-child(2) {
  background: #118c67;
}

.promo-badges span:nth-child(3) {
  background: #5d6b7a;
}

.promo-badges span:nth-child(4) {
  background: #c7771b;
}

.promo-quote {
  width: fit-content;
  margin: 0 0 13px;
  padding-left: 14px;
  border-left: 4px solid #0e5ba4;
  color: #536170;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.promo-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
}

.promo-mini-list span {
  padding: 6px 9px;
  border: 1px solid #cbd7e5;
  border-radius: 999px;
  color: #0a2f62;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.86);
}

.promo-poster .promo-feature-strip {
  position: absolute;
  right: 34px;
  bottom: 62px;
  left: 34px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.promo-feature-strip div {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 86px;
  padding: 10px 8px;
  border: 1px solid rgba(209, 220, 231, 0.96);
  border-radius: 8px;
  color: #0a2f62;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(18, 28, 40, 0.08);
}

.promo-feature-strip svg {
  width: 24px;
  height: 24px;
  margin: 0 auto 5px;
  color: #0e5ba4;
}

.promo-feature-strip strong {
  font-size: 13px;
  line-height: 1.2;
}

.promo-feature-strip span {
  color: #536170;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.promo-poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-round-cta {
  position: absolute;
  right: 64px;
  bottom: 208px;
  z-index: 3;
  display: grid;
  width: 188px;
  height: 188px;
  place-items: center;
  padding: 24px 20px;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: #08785a;
  box-shadow: 0 16px 32px rgba(18, 28, 40, 0.24);
  text-decoration: none;
}

.promo-round-cta small {
  align-self: end;
  color: #dbeaff;
  font-size: 15px;
  font-weight: 800;
}

.promo-round-cta strong {
  color: #ffdf4d;
  font-size: 32px;
  line-height: 1;
  white-space: nowrap;
}

.promo-round-cta span {
  align-self: start;
  font-size: 13px;
  font-weight: 800;
}

.promo-bottom-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  color: var(--white);
  background: #0d2a3a;
}

.promo-bottom-bar strong {
  margin-right: auto;
  font-size: 13px;
}

.promo-bottom-bar span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.promo-actions {
  position: absolute;
  right: 52px;
  bottom: 132px;
  z-index: 4;
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-later {
  min-width: 130px;
  border: 1px solid #cfd8e2;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(56px, 7vw, 86px) clamp(18px, 5vw, 64px) 48px;
  overflow: hidden;
  background: var(--tint-blue);
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: 0 0 15px;
  padding: 0 11px;
  border: 1px solid rgba(15, 139, 95, 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(240, 250, 246, 0.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
a,
button,
span,
small,
li {
  word-break: keep-all;
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.title-accent,
.title-serif,
.title-script {
  display: inline-block;
}

.title-accent {
  position: relative;
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: inset 0 -0.24em rgba(247, 201, 72, 0.36);
}

.title-serif {
  color: #1b2530;
  font-family: "Gowun Batang", "Noto Sans KR", serif;
  font-weight: 700;
}

.title-script {
  color: #9f5d3e;
  font-family: "Nanum Pen Script", "Noto Sans KR", cursive;
  font-size: 1.18em;
  font-weight: 400;
  line-height: 0.9;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.inline-script {
  display: inline-block;
  color: #9f5d3e;
  font-family: "Nanum Pen Script", "Noto Sans KR", cursive;
  font-size: 1.35em;
  line-height: 0.8;
  transform: rotate(-1deg);
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  color: #121b26;
}

.hero-text {
  max-width: 630px;
  margin-bottom: 30px;
  color: #4e5b69;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.primary-button {
  padding: 0 22px;
  color: var(--white);
  border: 1px solid var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 12px 26px rgba(18, 28, 40, 0.12);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(188, 202, 216, 0.86);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(18, 28, 40, 0.05);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  border: 1px solid rgba(198, 211, 224, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 5px;
  font-size: 27px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
}

.visual-shell {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(205, 217, 229, 0.88);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.visual-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(18, 28, 40, 0.16);
}

.visual-shell img {
  width: min(960px, 58vw);
  max-width: none;
  border-radius: 8px;
}

.signal-card {
  position: absolute;
  display: grid;
  gap: 3px;
  max-width: 260px;
  padding: 13px 15px;
  border: 1px solid rgba(210, 221, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(18, 28, 40, 0.12);
  backdrop-filter: blur(12px);
}

.signal-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  color: #1f2b38;
  font-size: 14px;
  line-height: 1.45;
}

.signal-card-top {
  top: 24px;
  left: 24px;
}

.signal-card-bottom {
  right: 24px;
  bottom: 24px;
}

.logos-band {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 64px);
  background: var(--line);
}

.logos-band span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  color: #465463;
  font-weight: 800;
  background: var(--white);
}

.storyboard-section {
  padding: clamp(44px, 5vw, 68px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #fcfbf9;
}

.storyboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.storyboard-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #121b26;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.2;
}

.storyboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #111923;
  box-shadow: 0 16px 36px rgba(30, 27, 24, 0.08);
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 260ms ease;
}

.story-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(8, 16, 28, 0.08);
  pointer-events: none;
}

.story-card:hover img {
  transform: scale(1.025);
}

.story-top {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-top span {
  display: inline-grid;
  min-width: 50px;
  height: 34px;
  place-items: center;
  border-radius: 999px 6px 999px 6px;
  color: var(--white);
  font-family: "Gowun Batang", "Noto Sans KR", serif;
  font-size: 16px;
  font-weight: 700;
  background: #102b57;
  box-shadow: 0 10px 22px rgba(18, 28, 40, 0.16);
}

.story-top strong {
  color: var(--white);
  font-family: "Nanum Pen Script", "Noto Sans KR", cursive;
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.story-card p {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  background: rgba(16, 35, 54, 0.72);
  backdrop-filter: blur(10px);
}

.overview-section {
  scroll-margin-top: 96px;
  padding: clamp(58px, 6vw, 86px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #f8f6f2;
}

.overview-copy {
  max-width: 960px;
  margin-bottom: 28px;
}

.overview-copy h2 {
  max-width: 900px;
  margin: 0 0 16px;
  color: #121b26;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.2;
}

.overview-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.overview-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.overview-map article {
  position: relative;
  min-height: 238px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.overview-map article:last-child {
  border-right: 0;
}

.overview-map span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  color: #354354;
  font-size: 13px;
  font-weight: 900;
  background: #fbfcfd;
}

.overview-map svg {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.overview-map strong {
  display: block;
  margin-bottom: 12px;
  color: #121b26;
  font-size: 22px;
  line-height: 1.25;
}

.overview-map p {
  margin: 0;
  color: #596675;
  font-weight: 650;
  line-height: 1.66;
}

.advanced-tech-section {
  scroll-margin-top: 96px;
  padding: clamp(66px, 7vw, 104px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #101820;
}

.advanced-tech-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.advanced-tech-copy .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  color: #d7efe7;
  background: rgba(255, 255, 255, 0.08);
}

.advanced-tech-copy h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.22;
}

.advanced-tech-copy p:not(.eyebrow) {
  margin: 0;
  color: #b8c4cf;
  font-size: 16px;
  line-height: 1.78;
}

.advanced-tech-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.tech-stack-panel,
.tech-benefit-grid article {
  border: 1px solid rgba(219, 229, 238, 0.18);
  border-radius: 8px;
  background: #17212b;
}

.tech-stack-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.tech-stack-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(219, 229, 238, 0.16);
}

.tech-stack-head span,
.tech-signal-board span {
  display: block;
  margin-bottom: 7px;
  color: #89dac2;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-stack-head strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.32;
}

.tech-stack-flow {
  display: grid;
  gap: 10px;
}

.tech-stack-flow div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(219, 229, 238, 0.15);
  border-radius: 8px;
  background: #101820;
}

.tech-stack-flow svg,
.tech-benefit-grid svg {
  width: 30px;
  height: 30px;
  color: #89dac2;
}

.tech-stack-flow strong,
.tech-stack-flow span {
  grid-column: 2;
  display: block;
}

.tech-stack-flow strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 17px;
}

.tech-stack-flow span {
  color: #b8c4cf;
  font-size: 14px;
  line-height: 1.58;
}

.tech-signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tech-signal-board div {
  min-height: 110px;
  padding: 15px;
  border: 1px solid rgba(219, 229, 238, 0.14);
  border-radius: 8px;
  background: #101820;
}

.tech-signal-board strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
}

.tech-signal-board small {
  display: block;
  color: #b8c4cf;
  font-size: 13px;
  line-height: 1.55;
}

.tech-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tech-benefit-grid article {
  min-height: 230px;
  padding: 24px;
}

.tech-benefit-grid h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
}

.tech-benefit-grid p {
  margin: 0;
  color: #b8c4cf;
  line-height: 1.72;
}

.advanced-tech-section {
  background: #f8f6f2;
}

.advanced-tech-copy .eyebrow {
  border-color: rgba(15, 139, 95, 0.18);
  color: var(--green-dark);
  background: rgba(240, 250, 246, 0.82);
}

.advanced-tech-copy h2 {
  color: #121b26;
}

.advanced-tech-copy p:not(.eyebrow) {
  color: var(--muted);
}

.advanced-tech-visual {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.08);
}

.advanced-tech-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.advanced-tech-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(216, 212, 207, 0.92);
  border-radius: 8px;
  color: #243342;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 28, 40, 0.12);
  backdrop-filter: blur(8px);
}

.advanced-tech-visual figcaption svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.core-tech-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  overflow: hidden;
  background: #d8d4cf;
}

.core-tech-strip article {
  min-height: 128px;
  padding: 18px;
  background: var(--white);
}

.core-tech-strip strong,
.core-tech-strip span {
  display: block;
}

.core-tech-strip strong {
  margin-bottom: 10px;
  color: #08785a;
  font-size: 14px;
  line-height: 1.35;
}

.core-tech-strip span {
  color: #4d5a67;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.58;
}

.tech-stack-panel,
.tech-benefit-grid article {
  border-color: #d8d4cf;
  background: var(--white);
}

.tech-stack-head {
  border-bottom-color: var(--line);
}

.tech-stack-head span,
.tech-signal-board span {
  color: var(--green-dark);
}

.tech-stack-head strong,
.tech-stack-flow strong,
.tech-signal-board strong,
.tech-benefit-grid h3 {
  color: #121b26;
}

.tech-stack-flow div,
.tech-signal-board div {
  border-color: #d8d4cf;
  background: #fbfcfd;
}

.tech-stack-flow span,
.tech-signal-board small,
.tech-benefit-grid p {
  color: #596675;
}

.tech-stack-flow svg,
.tech-benefit-grid svg {
  color: var(--green-dark);
}

.advanced-tech-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(600px, 1.22fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.advanced-tech-hero .advanced-tech-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.07);
}

.advanced-tech-hero .advanced-tech-copy h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(31px, 3.3vw, 44px);
  line-height: 1.2;
}

.advanced-tech-hero .advanced-tech-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 17px;
}

.tech-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.tech-proof-row div {
  min-height: 96px;
  padding: 15px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #fbfcfd;
}

.tech-proof-row strong,
.tech-proof-row span {
  display: block;
}

.tech-proof-row strong {
  margin-bottom: 8px;
  color: #08785a;
  font-size: 18px;
  line-height: 1.3;
}

.tech-proof-row span {
  color: #596675;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.advanced-tech-hero .advanced-tech-visual {
  min-height: 560px;
  margin: 0;
  background: #f7f5f1;
}

.advanced-tech-hero .advanced-tech-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.92) contrast(0.98);
}

.advanced-tech-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.tech-visual-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  height: 100%;
  padding: clamp(22px, 3.5vw, 40px);
}

.advanced-tech-visual figcaption {
  position: static;
  display: grid;
  width: fit-content;
  max-width: 560px;
  gap: 4px;
  min-height: auto;
  padding: 13px 15px;
  text-align: left;
}

.advanced-tech-visual figcaption strong,
.advanced-tech-visual figcaption span {
  display: block;
}

.advanced-tech-visual figcaption strong {
  color: #121b26;
  font-size: 16px;
}

.advanced-tech-visual figcaption span {
  color: #596675;
  font-size: 14px;
}

.tech-conversion-map {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.08fr) minmax(0, 0.9fr);
  gap: 10px;
}

.tech-step-card {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(216, 212, 207, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(18, 28, 40, 0.11);
  backdrop-filter: blur(8px);
}

.tech-step-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.tech-step-card span,
.tech-step-card strong,
.tech-step-card small {
  display: block;
}

.tech-step-card span {
  margin-bottom: 8px;
  color: #08785a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-step-card strong {
  margin-bottom: 10px;
  color: #121b26;
  font-size: 20px;
  line-height: 1.35;
}

.tech-step-card small {
  color: #4d5a67;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.58;
}

.tech-step-card.is-core {
  border-color: rgba(8, 120, 90, 0.34);
  background: rgba(245, 251, 248, 0.96);
}

.tech-outcome-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tech-outcome-panel div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.tech-outcome-panel span,
.tech-outcome-panel strong {
  display: block;
}

.tech-outcome-panel span {
  margin-bottom: 6px;
  color: #596675;
  font-size: 13px;
  font-weight: 800;
}

.tech-outcome-panel strong {
  color: #08785a;
  font-size: 22px;
  line-height: 1.25;
}

.advanced-tech-board {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr) minmax(0, 0.88fr);
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.07);
}

.tech-board-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tech-board-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(8, 120, 90, 0.18);
  border-radius: 8px;
  color: #08785a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: #f5fbf8;
}

.tech-board-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #fbfcfd;
}

.tech-board-item svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.tech-board-item strong,
.tech-board-item small {
  display: block;
}

.tech-board-item strong {
  margin-bottom: 5px;
  color: #121b26;
  font-size: 17px;
  line-height: 1.35;
}

.tech-board-item small {
  color: #596675;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58;
}

.tech-board-core {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(8, 120, 90, 0.24);
  border-radius: 8px;
  background: #f5fbf8;
}

.tech-board-core span,
.tech-board-core strong,
.tech-board-core p {
  display: block;
}

.tech-board-core > span {
  margin-bottom: 12px;
  color: #08785a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-board-core strong {
  margin-bottom: 14px;
  color: #121b26;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
}

.tech-board-core p {
  margin: 0 0 20px;
  color: #4d5a67;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.tech-core-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-core-tags span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(8, 120, 90, 0.18);
  border-radius: 8px;
  color: #08785a;
  font-size: 12px;
  font-weight: 900;
  background: var(--white);
}

.tech-board-effects {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #d8d4cf;
}

.tech-board-effects div {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #fcfbf9;
}

.tech-board-effects span,
.tech-board-effects strong {
  display: block;
}

.tech-board-effects span {
  margin-bottom: 6px;
  color: #596675;
  font-size: 13px;
  font-weight: 800;
}

.tech-board-effects strong {
  color: #08785a;
  font-size: 23px;
  line-height: 1.22;
}

.core-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.core-tech-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(30, 27, 24, 0.045);
}

.core-tech-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.core-tech-grid span {
  display: block;
  margin-bottom: 10px;
  color: #08785a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.core-tech-grid h3 {
  margin-bottom: 10px;
  color: #121b26;
  font-size: 22px;
  line-height: 1.3;
}

.core-tech-grid p {
  margin: 0;
  color: #596675;
  line-height: 1.72;
}

.guide-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 0;
  width: min(1280px, calc(100% - clamp(36px, 7vw, 104px)));
  margin: clamp(34px, 4.6vw, 58px) auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(30, 27, 24, 0.1);
}

.guide-promo-workflow {
  grid-template-columns: minmax(430px, 1fr) minmax(0, 1fr);
}

.guide-copy {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 620px;
  padding: clamp(30px, 4.2vw, 56px);
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.guide-promo-workflow .guide-copy {
  justify-self: end;
  max-width: 650px;
  border-left: 1px solid var(--line);
  background: #fcfbf9;
}

.guide-promo-recovery .guide-copy {
  border-right: 1px solid var(--line);
}

.guide-copy h2 {
  margin-bottom: 14px;
  color: #121b26;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.guide-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.guide-explain-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.guide-explain-list div {
  min-height: 118px;
  padding: 15px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: rgba(251, 252, 253, 0.92);
}

.guide-explain-list strong,
.guide-explain-list span {
  display: block;
}

.guide-explain-list strong {
  margin-bottom: 10px;
  color: #121b26;
  font-size: 15px;
  line-height: 1.35;
}

.guide-explain-list span {
  color: #596675;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.62;
}

.guide-explain-list-tight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.guide-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  color: #344251;
  font-size: 14px;
  font-weight: 800;
  background: #fbfcfd;
}

.guide-points svg {
  color: var(--green-dark);
}

.guide-visual {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f6f4f0;
  box-shadow: none;
  align-self: stretch;
  min-height: 540px;
}

.guide-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.guide-promo-recovery .guide-visual {
  aspect-ratio: auto;
}

.guide-promo-recovery .guide-visual img {
  object-position: center right;
}

.guide-promo-workflow .guide-visual {
  aspect-ratio: auto;
}

.guide-promo-workflow .guide-visual img {
  object-position: center left;
}

.guide-mini-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.guide-mini-board div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
}

.guide-mini-board strong,
.guide-mini-board span {
  display: block;
}

.guide-mini-board strong {
  margin-bottom: 12px;
  color: #8a642d;
  font-size: 13px;
}

.guide-mini-board span {
  color: #344251;
  font-weight: 800;
  line-height: 1.35;
}

.live-flow-section {
  background: #f8f6f2;
  border-bottom: 1px solid var(--line);
}

.flow-console {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.flow-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #f3f0eb;
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.08);
}

.flow-visual img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.flow-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.flow-beam {
  display: none;
}

.flow-beam-one {
  top: 32%;
  left: 14%;
  --beam-angle: 14deg;
  transform: rotate(var(--beam-angle));
}

.flow-beam-two {
  right: 16%;
  bottom: 31%;
  background: rgba(171, 127, 67, 0.72);
  --beam-angle: -17deg;
  transform: rotate(var(--beam-angle));
  animation-delay: 0.8s;
}

.flow-floating-card {
  display: none;
}

.flow-floating-card svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.flow-card-phone {
  top: 24px;
  left: 24px;
}

.flow-card-chat {
  top: 36%;
  right: 22px;
}

.flow-card-crm {
  bottom: 24px;
  left: 28px;
}

.flow-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.08);
}

.flow-message-strip {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(159, 93, 62, 0.22);
  border-radius: 8px;
  background: #fbf5ef;
}

.flow-message-strip span {
  color: #9f5d3e;
  font-family: "Gowun Batang", "Noto Sans KR", serif;
  font-size: 15px;
  font-weight: 700;
}

.flow-message-strip strong {
  color: #111923;
  font-family: "Nanum Pen Script", "Noto Sans KR", cursive;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.98;
}

.flow-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.flow-panel-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-panel-head strong {
  color: var(--green-dark);
  font-size: 18px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344251;
  cursor: pointer;
  background: #fbfcfd;
  font-weight: 800;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.flow-step:hover,
.flow-step.is-active {
  border-color: rgba(171, 127, 67, 0.48);
  color: #8a642d;
  background: #f7f2ea;
  transform: translateY(-1px);
}

.flow-step svg {
  width: 20px;
  height: 20px;
}

.flow-result {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.flow-result small,
.flow-result strong {
  display: block;
}

.flow-result small {
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 800;
}

.flow-result strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.flow-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.flow-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding-left: 18px;
  color: #344251;
  font-weight: 700;
  line-height: 1.55;
}

.flow-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green-dark);
}

.flow-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.flow-scoreboard div {
  min-height: 94px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-scoreboard span,
.flow-scoreboard strong {
  display: block;
}

.flow-scoreboard span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.flow-scoreboard strong {
  color: #121b26;
  font-size: 20px;
  line-height: 1.25;
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(72px, 8vw, 110px) clamp(18px, 5vw, 64px);
  background: var(--white);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading h2,
.case-copy h2,
.contact-section h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.22;
  color: #121b26;
}

.section-heading p,
.case-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.feature-grid,
.industry-grid,
.trust-grid,
.architecture-grid,
.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.industry-grid article,
.trust-grid article,
.architecture-grid article,
.operations-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feature-card::before,
.industry-grid article::before,
.trust-grid article::before,
.architecture-grid article::before,
.operations-grid article::before {
  display: none;
}

.feature-card:hover,
.industry-grid article:hover,
.trust-grid article:hover,
.architecture-grid article:hover,
.operations-grid article:hover {
  border-color: #aeb9c5;
  box-shadow: 0 10px 24px rgba(18, 28, 40, 0.055);
  transform: translateY(-2px);
}

.feature-card svg,
.industry-grid svg,
.trust-grid svg,
.architecture-grid svg,
.operations-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.feature-card:nth-child(2) svg,
.industry-grid article:nth-child(3n + 2) svg,
.architecture-grid article:nth-child(2) svg,
.operations-grid article:nth-child(3n + 2) svg {
  color: var(--yellow);
}

.feature-card:nth-child(3) svg,
.industry-grid article:nth-child(3n) svg,
.architecture-grid article:nth-child(3) svg,
.operations-grid article:nth-child(3n) svg {
  color: var(--blue);
}

.feature-card:nth-child(4) svg,
.industry-grid article:nth-child(4n) svg,
.architecture-grid article:nth-child(4) svg,
.operations-grid article:nth-child(4n) svg {
  color: var(--coral);
}

.feature-card h3,
.industry-grid h3,
.trust-grid h3,
.architecture-grid h3,
.operations-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.feature-card p,
.industry-grid p,
.trust-grid p,
.architecture-grid p,
.operations-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.industry-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.industry-points li {
  position: relative;
  padding-left: 16px;
  color: #344251;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.industry-points li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--green-dark);
}

.technology-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.architecture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.architecture-grid article {
  min-height: 280px;
  background: #fbfcfd;
}

.architecture-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid #d8e5df;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  background: #eef4f1;
}

.operations-section {
  background: var(--tint-warm);
}

.operations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operations-grid article {
  min-height: 230px;
  background: rgba(255, 255, 255, 0.92);
}

.suite-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.suite-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.suite-nav {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.suite-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #344251;
  cursor: pointer;
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.suite-tab svg {
  color: var(--green-dark);
}

.suite-tab.is-active {
  border-color: #cdd9e5;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 28, 40, 0.05);
}

.suite-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  min-height: 430px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.suite-panel.is-hidden {
  display: none;
}

.suite-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.suite-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.dashboard-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-demo div,
.pipeline-chip,
.schedule-demo div,
.quote-demo,
.automation-demo div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.dashboard-demo div {
  display: grid;
  gap: 6px;
  min-height: 136px;
  padding: 20px;
}

.dashboard-demo small,
.schedule-demo span,
.automation-demo span {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-demo strong {
  font-size: 34px;
}

.dashboard-demo span {
  color: var(--green-dark);
  font-weight: 800;
}

.pipeline-demo,
.schedule-demo,
.automation-demo {
  display: grid;
  gap: 10px;
}

.pipeline-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 16px;
  color: #344251;
  cursor: pointer;
  font-weight: 800;
}

.pipeline-chip.is-active {
  border-color: rgba(8, 120, 90, 0.38);
  color: var(--green-dark);
  background: #f2f7f5;
}

.schedule-demo div {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 16px;
}

.quote-demo {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.quote-demo label {
  display: grid;
  gap: 7px;
  color: #344251;
  font-size: 13px;
  font-weight: 800;
}

.quote-demo input,
.scenario-tool select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.quote-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.quote-total strong {
  color: var(--green-dark);
}

.chart-demo {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.chart-demo span {
  flex: 1;
  min-height: 24px;
  border-radius: 8px 8px 0 0;
  background: var(--green-dark);
}

.chart-demo span:nth-child(2n) {
  background: var(--blue);
}

.chart-demo span:nth-child(3n) {
  background: var(--yellow);
}

.automation-demo div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px;
}

.automation-demo svg {
  color: var(--green-dark);
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.72) rotate(var(--beam-angle, 0deg));
  }

  50% {
    opacity: 0.92;
    transform: scaleX(1) rotate(var(--beam-angle, 0deg));
  }
}

.tool-section {
  background: var(--tint-blue);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
}

.scenario-tool,
.journey-tool {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.scenario-tool label {
  display: block;
  margin-bottom: 8px;
  color: #344251;
  font-weight: 800;
}

.scenario-output {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.scenario-output strong {
  color: var(--ink);
}

.scenario-output p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.journey-tool {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.journey-step {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.journey-step.is-active {
  border-color: rgba(171, 127, 67, 0.5);
  background: #f7f2ea;
  transform: translateY(-2px);
}

.journey-step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d8e5df;
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
  background: #eef4f1;
}

.journey-step small {
  color: var(--muted);
  line-height: 1.45;
}

.detail-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  min-height: 380px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.detail-card > span {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid #d8e5df;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  background: #eef4f1;
}

.detail-card svg {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.detail-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.72;
}

.detail-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 16px;
  color: #344251;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.detail-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--green-dark);
}

.preview-section {
  background: #f7f7f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344251;
  cursor: pointer;
  background: var(--white);
  font-weight: 800;
}

.preview-tab.is-active {
  border-color: rgba(171, 127, 67, 0.36);
  color: #8a642d;
  background: #f7f2ea;
}

.preview-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.25fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d8d4cf;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 27, 24, 0.08);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 560px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.preview-brand {
  margin: -2px -2px 12px;
  padding: 8px 8px 16px;
  border-bottom: 1px solid var(--line);
}

.preview-brand strong,
.preview-brand small,
.preview-brand b {
  display: block;
}

.preview-brand strong {
  margin-bottom: 10px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

.preview-brand small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-brand b {
  color: #ab7f43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.preview-sidebar em {
  margin: 9px 0 2px;
  padding: 0 8px;
  color: #969da7;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-sidebar span {
  min-height: 38px;
  padding: 9px 10px;
  border-left: 3px solid transparent;
  border-radius: 2px;
  color: #555f6b;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.preview-sidebar span.is-active {
  border-left-color: #ab7f43;
  color: #171717;
  background: #f6f3ee;
}

.preview-screen {
  display: grid;
  gap: 18px;
  min-height: 560px;
  padding: 24px;
  background: #fafafa;
}

.preview-screen.is-hidden {
  display: none;
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid #ddd8d1;
  border-radius: 2px;
  background: var(--white);
}

.preview-topbar strong,
.preview-topbar span {
  display: block;
}

.preview-topbar strong {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.preview-topbar span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.preview-topbar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8cbb9;
  border-radius: 2px;
  color: #8a642d;
  background: #f7f2ea;
  font-weight: 800;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-kpis div,
.preview-list,
.preview-chart,
.preview-table,
.preview-calendar,
.preview-quote,
.preview-report > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-kpis div {
  display: grid;
  gap: 6px;
  min-height: 128px;
  padding: 18px;
  border-left: 4px solid #4a7fb5;
}

.preview-kpis div:nth-child(2) {
  border-left-color: #2d8c3c;
}

.preview-kpis div:nth-child(3) {
  border-left-color: #ab7f43;
}

.preview-kpis div:nth-child(4) {
  border-left-color: #4a7fb5;
}

.preview-kpis small,
.preview-kpis span {
  color: var(--muted);
  font-weight: 700;
}

.preview-kpis strong {
  font-size: 34px;
}

.preview-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 12px;
}

.preview-list {
  padding: 18px;
}

.preview-list strong {
  display: block;
  margin-bottom: 12px;
}

.preview-list p {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #344251;
  font-weight: 700;
}

.preview-list b {
  display: inline-block;
  min-width: 42px;
  color: #8a642d;
}

.preview-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 240px;
  padding: 20px;
}

.preview-chart span {
  flex: 1;
  min-height: 32px;
  border-radius: 2px 2px 0 0;
  background: #ab7f43;
}

.preview-chart span:nth-child(2n) {
  background: #4a7fb5;
}

.preview-channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 4px;
}

.preview-channel-tabs span {
  min-height: 32px;
  padding: 7px 12px;
  border-bottom: 2px solid transparent;
  color: #68717c;
  font-size: 14px;
  font-weight: 700;
}

.preview-channel-tabs span.is-active {
  border-bottom-color: #ab7f43;
  color: #8a642d;
}

.preview-inbox {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 12px;
}

.preview-thread-list,
.preview-chat-pane,
.preview-pipeline-board > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-thread-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.preview-search {
  min-height: 48px;
  padding: 14px 16px;
  color: #9199a3;
  font-size: 14px;
  font-weight: 700;
  background: #f5f5f5;
}

.preview-thread-list button {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 15px;
  border: 0;
  color: #344251;
  cursor: pointer;
  text-align: left;
  background: var(--white);
}

.preview-thread-list button.is-active {
  border-left: 4px solid #ab7f43;
  background: #f9f7f3;
}

.preview-thread-list strong,
.preview-thread-list span,
.preview-thread-list small {
  display: block;
}

.preview-thread-list span,
.preview-thread-list small {
  color: var(--muted);
  line-height: 1.45;
}

.preview-thread-list small {
  font-weight: 800;
}

.preview-chat-pane {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0;
}

.preview-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-chat-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.preview-summary {
  display: grid;
  gap: 5px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #f5f6f8;
}

.preview-summary strong {
  font-size: 14px;
}

.preview-summary span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bubble {
  width: fit-content;
  max-width: 72%;
  margin: 0 18px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #344251;
  line-height: 1.6;
  background: #f5f5f5;
}

.bubble.user {
  justify-self: start;
  border-color: #eeeeee;
  color: #2f3640;
  background: #f5f5f5;
}

.bubble.ai {
  justify-self: end;
  border-color: #e6edf6;
  color: #253144;
  background: #eef4fb;
}

.preview-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 18px 18px;
}

.preview-action-row span {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid #d8cbb9;
  border-radius: 999px;
  color: #8a642d;
  font-size: 13px;
  font-weight: 800;
  background: #f7f2ea;
}

.preview-pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-pipeline-board > div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 300px;
  padding: 16px;
}

.preview-pipeline-board strong {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: #344251;
}

.preview-pipeline-board p {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  background: #fbfcfd;
}

.preview-table {
  display: grid;
  overflow: hidden;
}

.preview-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1.4fr;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.preview-table div:last-child {
  border-bottom: 0;
}

.preview-table strong,
.preview-table span {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.preview-table strong:last-child,
.preview-table span:last-child {
  border-right: 0;
}

.preview-table strong {
  color: #344251;
  background: #eef4f1;
}

.preview-table span {
  color: var(--muted);
  font-weight: 700;
}

.preview-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.preview-calendar div {
  display: grid;
  gap: 8px;
  min-height: 260px;
  padding: 16px;
  background: var(--white);
}

.preview-calendar strong {
  color: #344251;
}

.preview-calendar span {
  min-height: 36px;
  padding: 8px;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  background: #eef4f1;
}

.preview-calendar span:empty {
  background: transparent;
}

.preview-quote {
  display: grid;
  align-content: start;
  max-width: 620px;
  padding: 12px 18px;
}

.preview-quote div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.preview-quote div:last-child {
  border-bottom: 0;
  color: var(--green-dark);
  font-size: 22px;
}

.preview-quote span {
  color: var(--muted);
  font-weight: 800;
}

.preview-report {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-report > div {
  min-height: 190px;
  padding: 22px;
}

.preview-report strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.preview-report p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--tint-green);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344251;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(214, 224, 234, 0.72);
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--green-dark);
}

.workflow-panel {
  display: grid;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(209, 220, 231, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-tight);
}

.workflow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(214, 224, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(24, 36, 52, 0.045);
}

.workflow-step span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
  background: #e6f8ef;
}

.workflow-step.active {
  border-color: rgba(17, 147, 90, 0.34);
  box-shadow: 0 18px 44px rgba(17, 147, 90, 0.12);
}

.workflow-step strong {
  font-size: 20px;
}

.workflow-step small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.industry-section {
  background: var(--tint-blue);
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid article {
  min-height: 220px;
}

.trust-section {
  background: var(--tint-warm);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 230px;
  background: var(--white);
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-section::before {
  display: none;
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-section .eyebrow {
  color: var(--green-dark);
}

.process-section .section-heading p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.process-list div {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-list div:last-child {
  border-right: 0;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
  background: #eef4f1;
  border: 1px solid #d8e5df;
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 21px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid rgba(214, 224, 234, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(18, 28, 40, 0.04);
}

.faq-list summary {
  min-height: 62px;
  padding: 19px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 8vw, 110px) clamp(18px, 5vw, 64px);
  background: var(--tint-green);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(205, 217, 229, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344251;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(205, 217, 229, 0.95);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfe;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 139, 95, 0.62);
  outline: 3px solid rgba(15, 139, 95, 0.12);
  background: var(--white);
}

.contact-form textarea {
  min-height: 108px;
  padding: 13px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: var(--green-dark);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(205, 217, 229, 0.95);
  border-radius: 8px;
  color: #344251;
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
}

.contact-points svg {
  color: var(--green-dark);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: #d7dee7;
  background: #101923;
}

:focus-visible {
  outline: 3px solid rgba(57, 119, 229, 0.3);
  outline-offset: 3px;
}

.site-footer p {
  margin: 5px 0 0;
  color: #9eabb9;
}

.site-footer a {
  font-weight: 800;
}

svg {
  width: 19px;
  height: 19px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-popup .promo-card {
  display: block;
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid #cfd8e2;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(18, 28, 40, 0.22);
}

.promo-poster-link {
  display: block;
}

.promo-popup .promo-poster-image {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.promo-popup .promo-close {
  z-index: 3;
}

/* Layout balance pass: keep the one-page flow dense, even, and easier to scan. */
.section,
.overview-section,
.advanced-tech-section,
.contact-section {
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(54px, 6vw, 84px);
}

.section-heading {
  max-width: 1060px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 920px;
}

.section-heading h2,
.case-copy h2,
.contact-section h2 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.24;
}

.section-heading p,
.case-copy p,
.contact-section p {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.72;
}

.feature-grid,
.architecture-grid,
.operations-grid,
.core-tech-grid,
.detail-grid,
.industry-grid,
.trust-grid {
  gap: 12px;
}

.feature-card,
.architecture-grid article,
.operations-grid article,
.core-tech-grid article,
.detail-card,
.industry-grid article,
.trust-grid article {
  display: grid;
  align-content: start;
  min-height: auto;
  padding: 21px;
}

.feature-card svg,
.architecture-grid svg,
.operations-grid svg,
.core-tech-grid svg,
.industry-grid svg,
.trust-grid svg {
  margin-bottom: 16px;
}

.feature-card h3,
.architecture-grid h3,
.operations-grid h3,
.core-tech-grid h3,
.detail-card h3,
.industry-grid h3,
.trust-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.32;
}

.feature-card p,
.architecture-grid p,
.operations-grid p,
.core-tech-grid p,
.detail-card p,
.industry-grid p,
.trust-grid p {
  font-size: 15px;
  line-height: 1.64;
}

.overview-copy {
  margin-bottom: 24px;
}

.overview-map article {
  min-height: 206px;
  padding: 22px;
}

.overview-map span {
  margin-bottom: 18px;
}

.overview-map strong {
  margin-bottom: 9px;
  font-size: 20px;
}

.overview-map p {
  font-size: 15px;
  line-height: 1.6;
}

.advanced-tech-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(620px, 1.28fr);
}

.advanced-tech-hero .advanced-tech-copy {
  padding: clamp(26px, 3.2vw, 38px);
}

.advanced-tech-hero .advanced-tech-copy h2 {
  font-size: clamp(29px, 2.8vw, 38px);
}

.tech-proof-row div {
  min-height: auto;
  padding: 13px;
}

.advanced-tech-board {
  padding: 18px;
}

.tech-board-item {
  min-height: 96px;
  padding: 14px;
}

.tech-board-core {
  padding: clamp(20px, 2.4vw, 28px);
}

.tech-board-effects div {
  min-height: 72px;
}

.guide-promo {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  width: 100%;
  margin: 0;
  padding: clamp(54px, 6vw, 84px) clamp(18px, 5vw, 64px);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #f7f7f6;
  box-shadow: none;
}

.guide-promo-workflow {
  grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
  background: #fcfbf9;
}

.guide-copy {
  max-width: 600px;
  align-self: center;
  padding: clamp(28px, 3.6vw, 46px);
  border: 1px solid #d8d4cf;
  border-radius: 8px;
}

.guide-copy h2 {
  font-size: clamp(25px, 2.7vw, 34px);
}

.guide-copy .title-script {
  font-size: 1.28em;
}

.guide-promo-recovery .guide-copy {
  max-width: none;
  border-right: 1px solid #d8d4cf;
}

.guide-promo-workflow .guide-copy {
  justify-self: stretch;
  max-width: none;
  border-left: 1px solid #d8d4cf;
  background: var(--white);
}

.guide-visual {
  min-height: 470px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  background: #f1f0ed;
  box-shadow: 0 16px 38px rgba(30, 27, 24, 0.08);
}

.guide-explain-list div {
  min-height: auto;
}

.flow-console {
  grid-template-columns: minmax(380px, 0.96fr) minmax(360px, 1.04fr);
}

.flow-visual,
.flow-visual img {
  min-height: 0;
}

.flow-panel {
  gap: 13px;
  padding: 22px;
}

.flow-result {
  min-height: 220px;
  padding: 18px;
}

.flow-scoreboard div {
  min-height: 78px;
  padding: 13px;
}

.suite-panel {
  min-height: 360px;
  padding: 28px;
}

.suite-panel h3 {
  font-size: clamp(26px, 2.5vw, 36px);
}

.dashboard-demo div {
  min-height: 112px;
  padding: 16px;
}

.chart-demo {
  height: 220px;
}

.journey-step {
  min-height: 126px;
  padding: 14px;
}

.detail-card ul {
  margin-top: 15px;
  padding-top: 15px;
}

.preview-sidebar,
.preview-screen {
  min-height: 500px;
}

.preview-kpis div {
  min-height: 104px;
  padding: 15px;
}

.preview-kpis strong {
  font-size: 30px;
}

.preview-chart {
  min-height: 210px;
}

.preview-pipeline-board > div {
  min-height: 250px;
}

.preview-calendar div {
  min-height: 210px;
}

.preview-report > div {
  min-height: 150px;
  padding: 18px;
}

.split-section {
  gap: clamp(24px, 4vw, 54px);
}

.workflow-step {
  padding: 18px;
}

.industry-grid article,
.trust-grid article {
  min-height: 168px;
}

.process-list div {
  min-height: 200px;
  padding: 22px;
}

.process-list span {
  margin-bottom: 20px;
}

/* Guide sections need to support the message, not dominate the page with oversized art. */
.guide-promo {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 18px;
  align-items: center;
  padding-top: clamp(48px, 5.4vw, 72px);
  padding-bottom: clamp(48px, 5.4vw, 72px);
}

.guide-promo-workflow {
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
}

.guide-copy {
  max-width: none;
  min-height: 390px;
  display: grid;
  align-content: center;
  box-shadow: 0 12px 28px rgba(30, 27, 24, 0.055);
}

.guide-copy p {
  max-width: 680px;
}

.guide-explain-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.guide-explain-list-tight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-explain-list div {
  padding: 14px;
  background: #fbfcfd;
}

.guide-visual {
  align-self: center;
  height: clamp(340px, 25vw, 410px);
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.guide-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.guide-promo-recovery .guide-visual img {
  object-position: center;
}

.guide-promo-workflow .guide-visual img {
  object-position: center;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-nav.is-open {
    position: fixed;
    inset: 74px 0 auto;
    z-index: 19;
    display: grid;
    gap: 1px;
    padding: 0 18px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 40px rgba(24, 36, 52, 0.12);
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .promo-card {
    width: min(620px, 100%);
  }

  .promo-copy {
    inset: 26px auto auto 28px;
    width: min(390px, calc(100% - 56px));
  }

  .hero,
  .split-section,
  .contact-section,
  .overview-copy,
  .advanced-tech-copy,
  .advanced-tech-layout,
  .advanced-tech-hero,
  .suite-layout,
  .suite-panel,
  .flow-console,
  .guide-promo,
  .guide-promo-workflow,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
  }

  .visual-shell {
    width: 100%;
  }

  .flow-visual,
  .flow-visual img {
    min-height: 0;
  }

  .guide-promo-workflow .guide-visual {
    order: 2;
  }

  .guide-promo,
  .guide-promo-workflow {
    gap: 14px;
  }

  .guide-copy,
  .guide-promo-recovery .guide-copy,
  .guide-promo-workflow .guide-copy {
    max-width: none;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-promo-workflow .guide-copy {
    order: 1;
  }

  .guide-visual {
    height: 360px;
    min-height: 0;
  }

  .guide-explain-list,
  .guide-explain-list-tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .trust-grid,
  .architecture-grid,
  .operations-grid,
  .process-list,
  .detail-grid,
  .preview-kpis,
  .preview-report {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list div:nth-child(2n) {
    border-right: 0;
  }

  .process-list div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .logos-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storyboard-heading {
    display: block;
  }

  .storyboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-signal-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advanced-tech-board {
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr) minmax(0, 0.9fr);
  }

  .core-tech-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .core-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-map article:nth-child(2n) {
    border-right: 0;
  }

  .overview-map article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .suite-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-tool {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .preview-shell,
  .preview-board,
  .preview-inbox {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-pipeline-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .mobile-nav.is-open {
    top: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero-metrics,
  .storyboard-grid,
  .flow-steps,
  .flow-scoreboard,
  .overview-map,
  .tech-signal-board,
  .tech-benefit-grid,
  .core-tech-strip,
  .tech-proof-row,
  .core-tech-grid,
  .guide-explain-list,
  .guide-explain-list-tight,
  .guide-mini-board,
  .feature-grid,
  .industry-grid,
  .trust-grid,
  .architecture-grid,
  .operations-grid,
  .process-list,
  .detail-grid,
  .preview-kpis,
  .preview-report,
  .preview-calendar,
  .preview-pipeline-board,
  .suite-nav,
  .journey-tool,
  .logos-band {
    grid-template-columns: 1fr;
  }

  .guide-copy {
    min-height: auto;
  }

  .guide-visual {
    height: 300px;
    min-height: 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics div {
    padding: 14px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .hero-metrics strong {
    font-size: 24px;
  }

  .overview-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .overview-map article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .overview-map article:last-child {
    border-bottom: 0;
  }

  .advanced-tech-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .advanced-tech-visual img {
    min-height: 320px;
  }

  .advanced-tech-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .advanced-tech-hero .advanced-tech-visual {
    min-height: 360px;
  }

  .advanced-tech-board {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tech-conversion-map,
  .tech-outcome-panel,
  .tech-board-effects {
    grid-template-columns: 1fr;
  }

  .tech-step-card {
    min-height: auto;
  }

  .tech-stack-flow div {
    grid-template-columns: 1fr;
  }

  .tech-stack-flow strong,
  .tech-stack-flow span {
    grid-column: auto;
  }

  .signal-card {
    position: static;
    max-width: none;
    margin-top: 10px;
    box-shadow: 0 10px 24px rgba(18, 28, 40, 0.08);
  }

  .flow-panel {
    padding: 18px;
  }

  .guide-promo {
    width: min(100% - 28px, 1280px);
  }

  .guide-copy {
    padding: 26px;
  }

  .guide-visual {
    min-height: 330px;
  }

  .flow-visual,
  .flow-visual img {
    min-height: 0;
  }

  .flow-floating-card {
    display: none;
  }

  .flow-beam {
    display: none;
  }

  .feature-card,
  .industry-grid article,
  .trust-grid article,
  .architecture-grid article,
  .operations-grid article,
  .process-list div {
    min-height: auto;
  }

  .process-list div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list div:last-child {
    border-bottom: 0;
  }

  .workflow-step {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .workflow-step span {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .preview-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .preview-screen {
    min-height: auto;
    padding: 16px;
  }

  .preview-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-table {
    overflow-x: auto;
  }

  .preview-table div {
    min-width: 680px;
  }

  .preview-calendar div {
    min-height: 180px;
  }

  .bubble {
    max-width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-popup {
    padding: 14px;
  }

  .promo-card {
    width: min(390px, 100%);
    max-height: calc(100vh - 28px);
    overflow: auto;
    aspect-ratio: auto;
  }

  .promo-poster {
    min-height: 870px;
  }

  .promo-poster-image {
    object-position: 63% center;
  }

  .promo-copy {
    inset: 24px 20px auto;
    width: auto;
    padding: 18px 16px;
  }

  .promo-copy h2 {
    font-size: 39px;
  }

  .promo-kicker {
    font-size: 13px;
  }

  .promo-subtitle {
    font-size: 15px;
  }

  .promo-lead,
  .promo-quote {
    font-size: 13px;
  }

  .promo-time {
    display: none;
  }

  .promo-badges {
    max-width: 300px;
  }

  .promo-badges span {
    font-size: 12px;
  }

  .promo-mini-list {
    max-width: 300px;
  }

  .promo-poster .promo-feature-strip {
    right: 16px;
    bottom: 58px;
    left: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .promo-feature-strip div {
    min-height: 60px;
    grid-template-columns: 22px 1fr;
    grid-template-rows: auto auto;
    column-gap: 7px;
    align-items: center;
    padding: 7px 8px;
    text-align: left;
  }

  .promo-feature-strip svg {
    grid-row: span 2;
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .promo-feature-strip strong {
    font-size: 11px;
  }

  .promo-feature-strip span {
    font-size: 10px;
  }

  .promo-round-cta {
    right: 22px;
    bottom: 202px;
    width: 132px;
    height: 132px;
    padding: 18px 13px;
    border-width: 5px;
  }

  .promo-round-cta small {
    font-size: 11px;
  }

  .promo-round-cta strong {
    font-size: 22px;
  }

  .promo-round-cta span {
    font-size: 10px;
  }

  .promo-bottom-bar {
    min-height: 50px;
    padding: 7px 12px;
    flex-wrap: wrap;
    gap: 5px;
  }

  .promo-bottom-bar strong {
    width: 100%;
    font-size: 11px;
  }

  .promo-bottom-bar span {
    font-size: 10px;
    padding: 2px 6px;
  }
}
