:root {
  --navy: #07111f;
  --navy-2: #0c1830;
  --blue: #1591ca;
  --blue-soft: #e8f5fb;
  --green: #08c532;
  --yellow: #f6b620;
  --ink: #101828;
  --muted: #667085;
  --line: #d9e1e8;
  --paper: #f5f7fa;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 28px;
  --shadow: 0 26px 70px rgba(5, 17, 31, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, sans-serif;
  background: #fff;
  word-break: keep-all;
  line-height: 1.6
}

body.menu-open {
  overflow: hidden
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto
}

.section-pad {
  padding: clamp(88px, 10vw, 144px) 0
}

.kicker {
  margin: 0 0 18px;
  color: #1b84ba;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em
}

.kicker.light {
  color: #7cc9ef
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

h1,
h2 {
  letter-spacing: -.05em;
  line-height: 1.05
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin: 0
}

h2 em,
h1 em {
  font-style: normal;
  color: var(--blue)
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  cursor: pointer
}

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

.button-primary {
  background: var(--yellow);
  color: #111
}

.button-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px)
}

.button-sm {
  min-height: 42px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-size: 15px
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  pointer-events: none
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1180px)/2));
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .3s ease
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(18px);
  border-color: rgba(7, 17, 31, .08);
  box-shadow: 0 10px 34px rgba(7, 17, 31, .06)
}

.brand {
  width: 154px;
  flex: 0 0 auto
}

.brand img {
  width: 100%;
  height: auto
}

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

.desktop-nav a {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: .25s
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--yellow);
  transition: .25s
}

.desktop-nav a.is-active:after {
  right: 0
}

.site-header.is-scrolled .desktop-nav a {
  color: #172033
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.phone-link {
  color: #fff;
  font-size: 20px;
  font-weight: 900
}

.site-header.is-scrolled .phone-link {
  color: #172033
}

.site-header:not(.is-scrolled) .button-sm {
  background: #fff;
  color: #111
}

.menu-toggle,
.mobile-menu {
  display: none
}

.section-shortcuts-wrap {
  position: sticky;
  top: 76px;
  z-index: 950;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 17, 31, .06)
}

.site-header.is-scrolled+.section-shortcuts-wrap {
  top: 66px
}

.section-shortcuts {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow: auto;
  padding: 12px 0;
  scrollbar-width: none
}

.section-shortcuts::-webkit-scrollbar {
  display: none
}

.section-shortcuts a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  color: #46505d;
  white-space: nowrap;
  transition: .2s
}

.section-shortcuts a:hover,
.section-shortcuts a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  margin-top: -56px
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  transform: scale(1.03)
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 22, .90) 0%, rgba(3, 12, 22, .70) 46%, rgba(3, 12, 22, .28) 82%), linear-gradient(0deg, rgba(3, 12, 22, .72), transparent 42%)
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 80px
}

.hero-copy {
  max-width: 960px
}

.hero h1 {
  font-size: clamp(56px, 7vw, 102px);
  line-height: .97;
  margin-bottom: 28px
}

.hero h1 em {
  color: var(--yellow)
}

.hero-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 34px;
  max-width: 920px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9)
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin-top: clamp(54px, 8vh, 88px);
  border-top: 1px solid rgba(255, 255, 255, .22)
}

.hero-facts div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 18px 0 0
}

.hero-facts strong {
  font-size: 46px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.04em
}

.hero-facts span {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .72)
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 10px
}

.scroll-cue span {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .4)
}

.statement {
  background: #fff
}

.statement-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 50px;
  align-items: start
}

.statement-number {
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  color: #e8edf2
}

.statement-copy p:last-child {
  max-width: 780px;
  margin-top: 34px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted)
}

.business-flow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 68px;
  overflow: auto;
  padding-bottom: 10px;
  scrollbar-width: none
}

.business-flow::-webkit-scrollbar {
  display: none
}

.business-flow span {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff
}

.business-flow i {
  font-style: normal;
  color: #a9b1bd;
  font-size: 22px;
  flex: 0 0 auto
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px
}

.benefit-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 20px rgba(7, 17, 31, .04)
}

.benefit-card.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.benefit-card span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: #1f8cc3;
  margin-bottom: 12px
}

.benefit-card.dark span {
  color: #7bc7ef
}

.benefit-card h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.04em;
  margin-bottom: 10px
}

.benefit-card p {
  margin: 0;
  color: var(--muted)
}

.benefit-card.dark p {
  color: rgba(255, 255, 255, .72)
}

.note-box {
  text-align:center;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--paper);
  color: #51606e;
  font-size: 18px;
  line-height: 1.7
}

.section-head {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px
}

.section-head>p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0
}

.channels {
  background: var(--paper)
}

.channel-accordion {
  display: grid;
  gap: 16px
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden
}

.accordion-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr auto 42px;
  gap: 20px;
  align-items: center;
  border: 0;
  background: #fff;
  padding: 28px 30px;
  text-align: left;
  cursor: pointer
}

.accordion-item.is-open .accordion-trigger {
  background: #f9fbfd
}

.accordion-no {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 13px
}

.accordion-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.03em
}

.accordion-summary {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700
}

.accordion-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
  background: var(--yellow);
  color: #111
}

.accordion-panel {
  padding: 0 30px 30px
}

.channel-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 24px;
  border-radius: 22px;
  background: var(--navy-2);
  color: #fff
}

.channel-copy-block h3 {
  font-size: 38px;
  letter-spacing: -.04em;
  margin-bottom: 14px
}

.channel-copy-block p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 20px
}

.channel-copy-block ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.channel-copy-block li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-weight: 700
}

.channel-copy-block li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--yellow)
}

.channel-side-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px;
  align-items: center;
  text-align: center
}

.channel-side-block>div,
.channel-side-block>i {
  display: inline-flex
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  font-weight: 900
}

.flow-pill.highlight {
  border-color: var(--yellow);
  color: var(--yellow)
}

.flow-pill.wide {
  min-width: 190px
}

.channel-side-block i {
  font-style: normal;
  color: rgba(255, 255, 255, .34);
  font-size: 22px;
  margin: 12px 0
}

.channel-caption {
  margin-top: 18px;
  color: rgba(255, 255, 255, .68);
  max-width: 360px
}

.mid-cta {
  margin-top: 36px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff
}

.mid-cta span {
  font-weight: 700;
  color: #667082
}

.mid-cta a {
  font-weight: 900;
  color: #126f9f
}

.products {
  overflow: hidden
}

.product-group+.product-group {
  margin-top: 48px
}

.group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px
}

.group-head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: #2386b7
}

.group-head h3 {
  font-size: 30px;
  letter-spacing: -.04em;
  margin: 0
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease
}

.product-card:hover,
.service-card:hover,
.download-card:hover,
.market-card:hover {
  transform: translateY(-4px)
}

.product-card:hover,
.service-card:hover,
.download-card:hover {
  box-shadow: var(--shadow)
}

.product-image {
  background: #f7f8fa;
  aspect-ratio: 4/3;
  padding: 18px
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.product-meta {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px
}

.product-meta>span {
  font-size: 12px;
  color: #95a0ad;
  font-weight: 900
}

.product-meta h4 {
  font-size: 22px;
  letter-spacing: -.03em;
  margin: 0
}

.product-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.product-meta small {
  margin-top: auto;
  font-weight: 800;
  color: #2b86b3
}

.dark-card {
  background: #0d1625;
  color: #fff;
  border-color: #0d1625
}

.dark-card .product-image {
  background: #050a12
}

.dark-card .product-meta p {
  color: rgba(255, 255, 255, .64)
}

.dark-card .product-meta small {
  color: var(--yellow)
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease
}

.service-image {
  background: #eef2f6;
  min-height: 270px
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.service-meta {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.service-meta>span {
  font-size: 12px;
  color: #95a0ad;
  font-weight: 900
}

.service-meta h4 {
  font-size: 28px;
  letter-spacing: -.03em;
  margin: 0
}

.service-meta p {
  margin: 0;
  color: var(--muted)
}

.service-meta small {
  margin-top: auto;
  font-weight: 800;
  color: #2b86b3
}

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

.market-intro {
  max-width: 960px;
  margin-bottom: 56px
}

.market-intro h2 em {
  color: var(--yellow)
}

.market-intro p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .72);
  max-width: 760px
}

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

.market-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  transition: transform .3s ease
}

.market-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 10, 17, .88), rgba(3, 10, 17, .10) 65%)
}

.market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.market-card:hover img {
  transform: scale(1.05)
}

.market-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2
}

.market-card span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--yellow)
}

.market-card h3 {
  font-size: 26px;
  line-height: 1.18;
  margin: 8px 0 6px;
  letter-spacing: -.03em
}

.market-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72)
}

.support {
  background: #fff
}

.role-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px
}

.role-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(7, 17, 31, .04)
}

.role-card.hq {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.role-card span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: #1f8cc3
}

.role-card.hq span {
  color: #7bc7ef
}

.role-card h3 {
  font-size: 34px;
  letter-spacing: -.04em;
  margin: 12px 0 18px
}

.role-card ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.role-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(16, 24, 40, .08);
  font-weight: 700
}

.role-card.hq li {
  border-color: rgba(255, 255, 255, .1)
}

.role-card li:before {
  content: "•";
  color: var(--blue);
  margin-right: 10px
}

.role-card.hq li:before {
  color: var(--yellow)
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper)
}

.support-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px
}

.support-card h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin: 0 0 8px
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.special {
  background: #0b1422;
  color: #fff
}

.special-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center
}

.special-copy h2 em {
  color: var(--yellow)
}

.special-copy p {
  color: rgba(255, 255, 255, .72)
}

.special-lead {
  margin-top: 26px
}

.special-lead strong {
  color: #fff
}

.special-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center
}

.special-flow div {
  min-height: 170px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.special-flow span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 900
}

.special-flow strong {
  font-size: 20px
}

.special-flow small {
  color: rgba(255, 255, 255, .62)
}

.special-flow i {
  font-style: normal;
  color: rgba(255, 255, 255, .35);
  font-size: 26px
}

.special-products {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.special-products span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 700
}

.revenue {
  background: #fff
}

.revenue-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start
}

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

.revenue-row {
  display: grid;
  grid-template-columns: 170px 1fr 44px 1.1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 17, 31, .04)
}

.revenue-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #177cac;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em
}

.revenue-row strong {
  font-size: 21px;
  letter-spacing: -.03em
}

.revenue-row b {
  font-size: 24px;
  color: #c0c8d2;
  text-align: center
}

.revenue-row em {
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
  color: #0f6fa0;
  display: block
}

.revenue-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  grid-column: 2/5
}

.revenue-summary {
  padding: 30px;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 130px
}

.revenue-summary span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: #7cc9ef
}

.revenue-summary h3 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.05em;
  margin: 14px 0 18px
}

.revenue-summary p {
  color: rgba(255, 255, 255, .72)
}

.revenue-summary ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0
}

.revenue-summary li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-weight: 700
}

.revenue-summary li:before {
  content: "✓";
  color: var(--yellow);
  margin-right: 10px
}

.fineprint {
  margin-top: 18px;
  color: #7a8694;
  font-size: 14px
}

.requirements {
  background: var(--paper)
}

.requirement-grid {
  display: grid;
  grid-template-columns: .95fr .8fr;
  gap: 28px;
  align-items: start
}

.requirement-copy p:last-of-type {
  max-width: 580px;
  color: var(--muted)
}

.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.target-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800
}

.terms-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow)
}

.deposit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 14px 0 28px
}

.deposit span {
  font-size: 18px;
  font-weight: 800;
  color: #7cc9ef
}

.deposit strong {
  font-size: 78px;
  line-height: .95;
  letter-spacing: -.07em
}

.deposit small {
  font-size: 24px
}

.term-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  margin: 0 0 22px
}

.term-benefits div {
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.term-benefits div:last-child {
  border-right: 0
}

.term-benefits strong {
  font-size: 28px;
  display: block;
  margin-bottom: 6px
}

.term-benefits span {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .66)
}

.terms-card>p {
  font-size: 14px;
  color: #b7dff1
}

.terms-card>small {
  color: rgba(255, 255, 255, .48)
}

.trust-top {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: end
}

.trust-desc {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 620px
}

.insurance {
  border-left: 1px solid var(--line);
  padding-left: 36px
}

.insurance span {
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 900;
  color: #89939f
}

.insurance strong {
  display: block;
  font-size: 64px;
  letter-spacing: -.06em;
  color: #177dac
}

.insurance p {
  margin: 2px 0 0;
  color: var(--muted)
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px
}

.download-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.download-card>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #167bac;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px
}

.download-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1.35
}

.download-card p {
  margin: 12px 0 auto;
  color: var(--muted);
  font-size: 14px
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-top: 20px;
  text-align: center
}

.download-card:hover {
  border-color: var(--navy)
}

.download-card:hover .download-btn {
  background: var(--yellow);
  color: #111
}

.process {
  background: #f8fafb
}

.timeline {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px
}

.timeline:before {
  content: "";
  position: absolute;
  top: 33px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: #cfd8e1
}

.timeline li {
  position: relative
}

.timeline li>span {
  position: relative;
  z-index: 2;
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccd6e0;
  color: #1d7eab;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 26px
}

.timeline li:last-child>span {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111
}

.timeline strong {
  font-size: 16px
}

.timeline p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 88px;
  align-items: start
}

.contact-copy {
  position: sticky;
  top: 130px
}

.contact-copy h2 em {
  color: var(--yellow)
}

.contact-copy>p:not(.kicker) {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  margin: 30px 0
}

.consult-points {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  max-width: 520px
}

.consult-points strong {
  font-size: 16px
}

.consult-points ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0
}

.consult-points li {
  padding: 8px 0;
  color: rgba(255, 255, 255, .76)
}

.consult-points li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--yellow)
}

.contact-phone {
  display: inline-flex;
  flex-direction: column;
  margin-top: 24px
}

.contact-phone small {
  color: #72bde4
}

.contact-phone strong {
  font-size: 38px;
  letter-spacing: -.04em
}

.inquiry-form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 42px
}

.form-head span {
  font-size: 10px;
  letter-spacing: .14em;
  color: #1c80b1;
  font-weight: 900
}

.form-head h3 {
  font-size: 30px;
  letter-spacing: -.03em;
  margin: 7px 0 30px
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #dce2e8;
  border-radius: 12px;
  background: #f8fafb;
  padding: 15px 16px;
  outline: 0;
  transition: .2s
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #1994ce;
  box-shadow: 0 0 0 3px rgba(25, 148, 206, .1);
  background: #fff
}

.inquiry-form textarea {
  resize: vertical
}

.consent {
  flex-direction: row !important;
  align-items: flex-start !important;
  font-weight: 600 !important;
  color: #5f6975
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px
}

.privacy-open {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  color: #247ca8;
  cursor: pointer
}

.button-submit {
  width: 100%;
  border-radius: 14px;
  background: var(--yellow);
  color: #111;
  justify-content: space-between;
  padding: 0 22px
}

.button-submit:disabled {
  opacity: .7;
  cursor: not-allowed
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13px
}

.form-status.success {
  color: #16814c
}

.form-status.error {
  color: #c72c41
}

.form-note {
  display: block;
  color: #9aa2ab;
  line-height: 1.5;
  margin-top: 8px
}

.form-note code {
  font-size: 11px
}

.footer {
  background: #040a12;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 34px 0
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 25px
}

.footer img {
  width: 135px;
  filter: brightness(0) invert(1);
  opacity: .8
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 12px
}

.footer a {
  margin-left: auto;
  font-size: 12px;
  font-weight: 900
}

.mobile-cta {
  display: none
}

.mobile-cta a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 14px
}

.mobile-cta a:first-child {
  background: #fff;
  color: #111
}

.mobile-cta a:last-child {
  background: var(--yellow);
  color: #111
}

.mobile-cta span {
  font-size: 11px;
  opacity: .7
}

.mobile-cta strong {
  font-size: 15px
}

.privacy-dialog {
  max-width: 540px;
  border: 0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .3)
}

.privacy-dialog::backdrop {
  background: rgba(5, 13, 22, .65)
}

.privacy-dialog h3 {
  font-size: 24px;
  margin-bottom: 18px
}

.privacy-dialog p {
  line-height: 1.7;
  color: #626d79
}

.dialog-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer
}

.dialog-confirm {
  background: var(--navy);
  color: #fff;
  width: 100%
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (max-width:1120px) {
  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: #fff
  }

  .site-header.is-scrolled .menu-toggle {
    background: #eef2f5
  }

  .site-header.is-scrolled .menu-toggle span {
    background: #111
  }

  .mobile-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    background: #fff;
    color: #111;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .mobile-menu a {
    padding: 13px 10px;
    font-weight: 800;
    border-bottom: 1px solid #edf0f3
  }

  .mobile-menu a:last-child {
    border: 0
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .benefit-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .market-grid.wide-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .downloads-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .revenue-layout,
  .contact-grid,
  .special-grid {
    grid-template-columns: 1fr
  }

  .revenue-summary,
  .contact-copy {
    position: static
  }

  .service-card {
    grid-template-columns: 1fr
  }

  .service-image {
    min-height: 240px
  }
}

@media (max-width:760px) {
  :root {
    --shell: calc(100% - 32px)
  }

  .site-header {
    height: 68px;
    padding: 0 16px
  }

  .site-header.is-scrolled {
    height: 62px
  }

  .brand {
    width: 122px
  }

  .phone-link,
  .button-sm {
    display: none
  }

  .section-shortcuts-wrap {
    top: 68px
  }

  .site-header.is-scrolled+.section-shortcuts-wrap {
    top: 62px
  }

  .section-shortcuts {
    padding: 10px 0
  }

  .section-shortcuts a {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px
  }

  .hero {
    min-height: 88svh;
    align-items: flex-end;
    margin-top: -48px
  }

  .hero-media {
    background-position: 58% center
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 12, 22, .95) 8%, rgba(3, 12, 22, .63) 65%, rgba(3, 12, 22, .38))
  }

  .hero-content {
    padding: 134px 0 70px
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 72px)
  }

  .hero-lead {
    font-size: 15px
  }

  .hero-tags span {
    font-size: 12px
  }

  .desktop-only {
    display: none
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px
  }

  .hero-facts div {
    display: block;
    padding: 18px 8px 0 0
  }

  .hero-facts strong {
    font-size: 28px;
    display: block;
    margin-bottom: 8px
  }

  .hero-facts span {
    font-size: 10px
  }

  .scroll-cue {
    display: none
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .statement-number {
    font-size: 74px
  }

  .business-flow {
    margin-top: 52px
  }

  .benefit-grid,
  .role-columns,
  .support-grid,
  .product-grid,
  .market-grid.wide-grid,
  .service-grid,
  .downloads-grid {
    grid-template-columns: 1fr
  }

  .benefit-card h3,
  .group-head h3 {
    font-size: 24px
  }

  .accordion-trigger {
    grid-template-columns: 54px 1fr 36px;
    gap: 14px;
    padding: 22px
  }

  .accordion-summary {
    grid-column: 2/3;
    font-size: 14px
  }

  .accordion-icon {
    grid-column: 3/4;
    grid-row: 1/3
  }

  .accordion-title {
    font-size: 22px
  }

  .accordion-no {
    width: 46px;
    height: 46px
  }

  .accordion-panel {
    padding: 0 22px 22px
  }

  .channel-grid {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .channel-copy-block h3 {
    font-size: 30px
  }

  .flow-pill {
    min-width: 92px;
    min-height: 48px;
    font-size: 13px
  }

  .flow-pill.wide {
    min-width: 150px
  }

  .group-head {
    display: block
  }

  .service-meta {
    padding: 24px
  }

  .role-card h3 {
    font-size: 28px
  }

  .special-flow {
    grid-template-columns: 1fr 1fr
  }

  .special-flow i {
    display: none
  }

  .special-flow div {
    min-height: 140px
  }

  .revenue-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: flex-start
  }

  .revenue-row b {
    display: none
  }

  .revenue-row small {
    grid-column: auto
  }

  .requirement-grid,
  .trust-top,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr
  }

  .insurance {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0
  }

  .deposit {
    flex-direction: column;
    align-items: flex-start
  }

  .term-benefits {
    grid-template-columns: 1fr
  }

  .term-benefits div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 12px 0
  }

  .term-benefits div:last-child {
    border-bottom: 0
  }

  .timeline {
    display: block
  }

  .timeline:before {
    top: 0;
    bottom: 0;
    left: 29px;
    right: auto;
    height: auto;
    width: 1px
  }

  .timeline li {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    padding-bottom: 28px
  }

  .timeline li>span {
    margin: 0
  }

  .timeline li div {
    padding-top: 10px
  }

  .inquiry-form {
    padding: 26px 20px
  }

  .consult-points {
    padding: 18px 18px 20px
  }

  .footer {
    padding-bottom: 100px
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 900;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: #0a1422;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .24)
  }
}

@media (max-width:500px) {
  .section-pad {
    padding: 80px 0
  }

  .hero-actions .button {
    width: 100%
  }

  .hero-facts span br {
    display: none
  }

  .product-meta,
  .service-meta {
    min-height: 0
  }

  .accordion-trigger {
    padding: 18px
  }

  .mid-cta {
    display: block;
    padding: 18px 20px
  }

  .mid-cta a {
    display: inline-block;
    margin-top: 12px
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .hero-media {
    transform: none
  }
}

/* ===== v6 layout / hero / accordion / responsive refinements ===== */
:root {
  --shell: min(1440px, calc(100% - 72px))
}

.site-header {
  padding-left: max(36px, calc((100vw - 1440px)/2));
  padding-right: max(36px, calc((100vw - 1440px)/2))
}

.hero {
  margin-top: 0;
  min-height: 100svh;
  display: block;
  position: relative
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .85s ease, visibility .85s ease;
  display: flex;
  align-items: center
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.035);
  transition: transform 7s ease
}

.hero-slide.is-active .hero-slide-media {
  transform: scale(1)
}

.hero-slide-media-1 {
  background-image: url('../images/hero.webp')
}

.hero-slide-media-2 {
  background-image: url('../images/market-university.webp');
  background-position: center 42%
}

.hero-slide-media-3 {
  background-image: url('../images/market-corporate.webp');
  background-position: center 48%
}

.hero-slide .hero-shade {
  z-index: 1
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  padding-top: 118px;
  padding-bottom: 220px
}

.hero-slide .hero-copy {
  max-width: 1030px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease .16s, transform .65s ease .16s
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: none
}

.hero-slide h1 {
  max-width: 1020px
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  color: #fff
}

.hero-bottom .hero-facts {
  margin: 0;
  max-width: 900px;
  flex: 1
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: .2s
}

.hero-arrow:hover {
  background: #fff;
  color: #111
}

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

.hero-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  padding: 0;
  cursor: pointer;
  transition: .3s
}

.hero-dot.is-active {
  width: 52px;
  background: var(--yellow)
}

.scroll-cue {
  bottom: 56px;
  right: 24px
}

/* smoother accordion */
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0 30px;
  transition: grid-template-rows .5s cubic-bezier(.2, .7, .2, 1), opacity .35s ease, padding .5s cubic-bezier(.2, .7, .2, 1)
}

.accordion-panel>.channel-grid {
  min-height: 0;
  overflow: hidden
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 30px 30px
}

.accordion-item {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease
}

.accordion-item.is-open {
  border-color: #b8d9e9;
  box-shadow: 0 28px 75px rgba(5, 17, 31, .13)
}

.accordion-trigger {
  transition: background .3s ease
}

.accordion-summary {
  max-width: 520px
}

/* wider desktop cards */
.product-grid {
  grid-template-columns: repeat(5, 1fr)
}

.market-grid.wide-grid {
  grid-template-columns: repeat(3, 1fr)
}

.downloads-grid {
  grid-template-columns: repeat(5, 1fr)
}

@media(max-width:1500px) {
  :root {
    --shell: min(1320px, calc(100% - 56px))
  }

  .site-header {
    padding-left: 28px;
    padding-right: 28px
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:1120px) {
  :root {
    --shell: calc(100% - 40px)
  }

  .hero-slide .hero-content {
    padding-top: 118px;
    padding-bottom: 230px
  }

  .hero-bottom {
    bottom: 44px
  }

  .hero-bottom .hero-facts {
    grid-template-columns: repeat(4, 1fr)
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .desktop-nav {
    display: none
  }
}

@media(max-width:760px) {
  :root {
    --shell: calc(100% - 28px)
  }

  body {
    overflow-x: hidden
  }

  .site-header {
    padding: 0 14px
  }

  .mobile-menu {
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 80px);
    overflow: auto
  }

  .hero {
    min-height: 920px;
    max-height: none;
    margin-top: 0
  }

  .hero-slide {
    align-items: flex-start
  }

  .hero-slide-media {
    background-position: center center
  }

  .hero-slide-media-1 {
    background-position: 60% center
  }

  .hero-slide-media-2 {
    background-position: 48% center
  }

  .hero-slide-media-3 {
    background-position: 52% center
  }

  .hero-slide .hero-shade {
    background: linear-gradient(0deg, rgba(3, 12, 22, .96) 5%, rgba(3, 12, 22, .75) 53%, rgba(3, 12, 22, .38) 100%)
  }

  .hero-slide .hero-content {
    padding-top: 126px;
    padding-bottom: 300px;
    align-self: stretch;
    display: flex;
    align-items: flex-end
  }

  .hero-slide h1 {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 1.01
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 26px
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px
  }

  .hero-bottom {
    bottom: 72px;
    display: block;
    width: var(--shell)
  }

  .hero-bottom .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 24px
  }

  .hero-bottom .hero-facts div {
    padding: 14px 8px 0 0
  }

  .hero-bottom .hero-facts strong {
    font-size: 26px
  }

  .hero-controls {
    justify-content: flex-start
  }

  .scroll-cue {
    display: none
  }

  .accordion-trigger {
    grid-template-columns: 48px 1fr 34px;
    gap: 12px;
    padding: 18px 16px
  }

  .accordion-no {
    width: 44px;
    height: 44px
  }

  .accordion-title {
    font-size: 20px
  }

  .accordion-summary {
    grid-column: 2/3;
    font-size: 13px;
    line-height: 1.45
  }

  .accordion-icon {
    grid-column: 3/4;
    grid-row: 1/3;
    width: 34px;
    height: 34px;
    font-size: 20px
  }

  .accordion-panel {
    padding: 0 16px
  }

  .accordion-item.is-open .accordion-panel {
    padding: 0 16px 16px
  }

  .channel-grid {
    padding: 18px;
    border-radius: 18px
  }

  .channel-side-block {
    align-items: stretch;
    text-align: left
  }

  .channel-side-block>div,
  .channel-side-block>i {
    align-self: center
  }

  .channel-caption {
    text-align: left;
    max-width: none
  }

  .product-grid,
  .market-grid.wide-grid,
  .support-grid,
  .benefit-grid,
  .role-columns,
  .downloads-grid,
  .service-grid {
    grid-template-columns: 1fr
  }

  .product-image {
    aspect-ratio: 16/10;
    max-height: 340px
  }

  .product-meta {
    min-height: 0
  }

  .market-card {
    min-height: 360px
  }

  .revenue-layout,
  .requirement-grid,
  .trust-top,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .revenue-summary,
  .contact-copy {
    position: static
  }

  .revenue-row {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .revenue-row b {
    display: none
  }

  .revenue-row small {
    grid-column: auto
  }

  .deposit strong {
    font-size: 64px
  }

  .term-benefits {
    grid-template-columns: 1fr
  }

  .timeline {
    display: block
  }

  .inquiry-form {
    padding: 24px 18px
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .footer-inner {
    align-items: flex-start;
    flex-wrap: wrap
  }

  .footer a {
    margin-left: 0
  }
}

@media(max-width:420px) {
  .hero {
    min-height: 900px
  }

  .hero-slide .hero-content {
    padding-top: 112px;
    padding-bottom: 300px
  }

  .hero-slide h1 {
    font-size: 43px
  }

  .hero-bottom {
    bottom: 74px
  }

  .hero-arrow {
    width: 40px;
    height: 40px
  }

  .hero-dot {
    width: 22px
  }

  .hero-dot.is-active {
    width: 40px
  }

  .channel-copy-block h3 {
    font-size: 28px
  }

  .flow-pill {
    min-width: 86px;
    font-size: 12px
  }

  .group-head h3 {
    font-size: 24px
  }

  .terms-card {
    padding: 24px
  }

  .deposit strong {
    font-size: 56px
  }
}


/* ===== v8 product integration / accordion close / revenue image ===== */
.product-card,
.service-card {
  transition: transform .3s ease, box-shadow .3s ease, background .35s ease, border-color .35s ease, color .35s ease
}

.product-card:hover,
.service-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.product-card:hover .product-image,
.service-card:hover .service-image {
  background: #091421
}

.product-card:hover .product-meta p,
.service-card:hover .service-meta p {
  color: rgba(255, 255, 255, .72)
}

.product-card:hover .product-meta>span,
.service-card:hover .service-meta>span {
  color: #93d5f2
}

.product-card:hover .product-meta small,
.service-card:hover .service-meta small {
  color: var(--yellow)
}

.product-card:hover .product-meta h4,
.service-card:hover .service-meta h4 {
  color: #fff
}

.product-card:hover .product-image img,
.service-card:hover .service-image img {
  transform: scale(1.03)
}

.product-image img,
.service-image img {
  transition: transform .45s ease
}

.channel-grid {
  position: relative;
  padding-top: 68px
}

.accordion-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease
}

.accordion-close:hover {
  transform: rotate(90deg);
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111
}

.revenue-layout {
  align-items: stretch
}

.revenue-summary {
  display: flex;
  flex-direction: column;
  height: 100%
}

.revenue-summary-image {
  margin: -8px -8px 22px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, .08)
}

.revenue-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.deposit strong {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px
}

.deposit small {
  font-size: 24px;
  letter-spacing: -.08em;
  line-height: 1.1;
  margin-bottom: 8px
}

.requirements .mid-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(7, 17, 31, .14)
}

.requirements .mid-cta span {
  font-size: 16px;
  font-weight: 800
}

@media(max-width:1120px) {
  .revenue-summary-image {
    aspect-ratio: 16/9;
    max-height: 280px
  }
}

@media(max-width:760px) {
  .hero-slide-media-1 {
    background-position: 56% center
  }

  .channel-grid {
    padding-top: 64px
  }

  .accordion-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 24px
  }

  .product-image {
    padding: 14px;
    aspect-ratio: 4/3;
    max-height: none
  }

  .service-image {
    min-height: 220px
  }

  .revenue-summary-image {
    margin: 0 0 20px;
    aspect-ratio: 16/9;
    max-height: none
  }

  .requirements .mid-cta a {
    width: 100%;
    min-height: 54px;
    font-size: 17px;
    margin-top: 14px
  }

  .requirements .mid-cta span {
    display: block;
    font-size: 15px
  }

  .deposit small {
    font-size: 20px;
    margin-bottom: 6px
  }
}

@media(max-width:420px) {
  .hero-slide-media-1 {
    background-position: 58% center
  }

  .requirements .mid-cta a {
    font-size: 16px;
    padding: 0 20px
  }
}


/* privacy policy modal text */
.privacy-copy {
  max-height: min(58vh, 520px);
  overflow: auto;
  padding-right: 8px;
  margin-bottom: 22px
}

.privacy-copy p {
  margin: 0 0 16px;
  color: #626d79;
  line-height: 1.75
}

.privacy-copy ol {
  margin: 0;
  padding-left: 22px;
  color: #626d79;
  line-height: 1.75
}

.privacy-copy li {
  padding: 5px 0 5px 4px
}

@media(max-width:600px) {
  .privacy-dialog {
    width: calc(100% - 28px);
    padding: 28px 20px
  }

  .privacy-dialog h3 {
    font-size: 21px;
    padding-right: 26px
  }

  .privacy-copy {
    max-height: 60vh
  }

  .privacy-copy p,
  .privacy-copy ol {
    font-size: 14px
  }
}

/* ===== final mobile navigation / form UX fixes ===== */
#partner-form{scroll-margin-top:92px}
@media(max-width:1120px){
  .header-actions{margin-left:auto}
  .menu-toggle{margin-left:auto}
}
@media(max-width:760px){
  #partner-form{scroll-margin-top:78px}
  .site-header .header-actions{margin-left:auto;justify-content:flex-end}
  .menu-toggle{margin-left:auto;margin-right:0}
  .inquiry-form .field-row{grid-template-columns:1fr}
}


/* mobile CTA -> DB form positioning refinement */
@media(max-width:760px){
  #partner-form{scroll-margin-top:86px}
}

/* ===== v10 small typography readability refinements ===== */
.accordion-no{font-size:14px}
.accordion-summary{font-size:16px}
.channel-caption{font-size:15px;line-height:1.7}
.group-head span{font-size:13px}
.product-meta>span,.service-meta>span{font-size:13px}
.product-meta p{font-size:15.5px;line-height:1.75}
.product-meta small,.service-meta small{font-size:14px;line-height:1.55}
.service-meta p{font-size:16px;line-height:1.75}
.market-card span{font-size:12px}
.market-card p{font-size:15px;line-height:1.6}
.role-card span{font-size:13px}
.support-card span{font-size:13px}
.support-card p{font-size:15px;line-height:1.65}
.special-flow span{font-size:13px}
.special-flow small{font-size:14px;line-height:1.5}
.revenue-tag{font-size:12.5px}
.revenue-row small{font-size:14.5px;line-height:1.55}
.revenue-summary>span{font-size:13px}
.fineprint{font-size:15px}
.term-benefits span{font-size:14.5px}
.terms-card>p{font-size:15px;line-height:1.65}
.terms-card>small{font-size:13px;line-height:1.55;display:block}
.insurance span{font-size:12px}
.download-card>span{font-size:12.5px}
.download-card p{font-size:15px;line-height:1.65}
.download-btn{font-size:15px}
.timeline li>span{font-size:13px}
.timeline strong{font-size:17px}
.timeline p{font-size:14.5px;line-height:1.6}
.form-head span{font-size:12px}
.inquiry-form label{font-size:14px}
.form-status{font-size:14px}
.form-note{font-size:12.5px;line-height:1.6}
.form-note code{font-size:12px}
.footer p,.footer a{font-size:13px}
.mobile-cta span{font-size:12.5px}
.mobile-cta strong{font-size:16.5px}

@media(max-width:760px){
  .kicker{font-size:14px}
  .hero-lead{font-size:16px}
  .hero-facts span{font-size:12px;line-height:1.5}
  .accordion-summary{font-size:14.5px}
  .channel-copy-block p,.channel-copy-block li{font-size:15px}
  .product-meta p{font-size:15.5px}
  .product-meta small,.service-meta small{font-size:14px}
  .market-card p{font-size:14.5px}
  .support-card p{font-size:15px}
  .special-flow small{font-size:13.5px}
  .revenue-row small{font-size:14px}
  .term-benefits span{font-size:14px}
  .inquiry-form label{font-size:14px}
  .consent{font-size:13.5px!important;line-height:1.6}
  .footer p,.footer a{font-size:12.5px}
  .mobile-cta span{font-size:12px}
  .mobile-cta strong{font-size:16px}
}


/* ===== vNext hero/form anchor + mobile business-flow refinements ===== */
/* Keep the hero CTA area clear of the absolute hero-bottom block on tablet / narrow desktop. */
@media (min-width:761px) and (max-width:1200px){
  .hero{min-height:max(100svh,860px)}
  .hero-slide .hero-content{padding-bottom:300px}
  .hero-actions{max-width:760px;align-items:flex-start}
}

/* On short desktop screens, reserve a stable lower safe area for facts and carousel controls. */
@media (min-width:1201px) and (max-height:820px){
  .hero{min-height:860px}
  .hero-slide .hero-content{padding-bottom:275px}
}

/* Mobile business flow: show every item without horizontal clipping or swipe dependency. */
@media (max-width:760px){
  .business-flow{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    width:var(--shell);
    overflow:visible;
    padding-bottom:0;
    margin-top:42px;
  }
  .business-flow i{display:none}
  .business-flow span{
    width:100%;
    min-width:0;
    min-height:54px;
    padding:12px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    white-space:normal;
    line-height:1.35;
    border-radius:16px;
    font-size:14px;
  }
}

@media (max-width:380px){
  .business-flow{gap:8px}
  .business-flow span{font-size:13px;padding:11px 8px}
}

@media (min-width: 1000px) {
  .product-grid img{width:100%;height:210px;object-fit:cover;display:block;}
}
