:root {
  --ink: #163f63;
  --ink-soft: #58758e;
  --deep: #1769a8;
  --deep-2: #2f86c4;
  --teal: #2d84c3;
  --teal-bright: #79b6df;
  --mint: #e9f5fd;
  --cream: #f4f9fd;
  --paper: #ffffff;
  --line: #d9e8f3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 103, 158, .13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 999; left: 16px; top: -100px; padding: 12px 18px;
  color: #fff; background: var(--deep); border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: 78px;
  color: var(--deep); background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(109, 170, 215, .18);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 68px; background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 35px rgba(33, 100, 153, .12); backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand-logo {
  display: block; width: auto; height: 54px; max-width: min(148px, 34vw);
  object-fit: contain; transition: height .25s ease;
}
.site-header.is-scrolled .brand-logo { height: 48px; }
.primary-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.nav-contact) { position: relative; color: #426b8c; }
.primary-nav > a:not(.nav-contact)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--deep-2); transition: right .25s ease;
}
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { right: 0; }
.nav-contact { padding: 10px 17px; color: var(--deep); background: #fff; border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; }

.hero {
  position: relative; min-height: 780px; padding: 154px 0 104px; overflow: hidden;
  color: var(--ink); background:
    radial-gradient(circle at 82% 22%, rgba(117, 181, 224, .3), transparent 28%),
    linear-gradient(130deg, #fafdff 0%, #eef7fd 48%, #e2f1fb 100%);
}
.hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -240px; top: 120px;
  border: 1px solid rgba(45,132,195,.13); border-radius: 50%; box-shadow: 0 0 0 90px rgba(45,132,195,.03), 0 0 0 180px rgba(45,132,195,.018);
}
.hero-grid, .contact-grid {
  position: absolute; inset: 0; opacity: .08;
  background-image: linear-gradient(rgba(45,132,195,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(45,132,195,.55) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent);
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.eyebrow, .kicker { margin: 0 0 24px; font-size: 12px; font-weight: 900; letter-spacing: .16em; color: var(--teal); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--deep-2); }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-size: clamp(46px, 5.2vw, 72px); line-height: 1.17; letter-spacing: -.06em; }
.hero h1 em { font-style: normal; color: #2d84c3; }
.hero-lead { max-width: 620px; margin: 28px 0 0; font-size: 19px; line-height: 1.8; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid transparent; border-radius: 8px; font-size: 15px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: #2d84c3; box-shadow: 0 12px 28px rgba(45,132,195,.22); }
.button-ghost { color: var(--deep); border-color: rgba(45,132,195,.3); background: rgba(255,255,255,.65); }
.button-ghost:hover { border-color: rgba(45,132,195,.6); background: #fff; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 19px 26px; margin: 50px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(45,132,195,.18); list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6c89a1; }
.hero-badges span { font-size: 11px; font-weight: 900; letter-spacing: .05em; color: var(--deep); }

.hero-panel {
  position: relative; min-height: 474px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px;
  overflow: hidden; color: #fff; background: linear-gradient(145deg, #67ace0, #1c6eae);
  box-shadow: 0 36px 90px rgba(32,104,159,.24); backdrop-filter: blur(12px);
}
.panel-topline { height: 56px; display: flex; align-items: center; gap: 10px; padding: 0 22px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 10px; font-weight: 800; letter-spacing: .14em; color: rgba(255,255,255,.58); }
.panel-topline > span:last-child { margin-left: auto; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 5px rgba(55,212,195,.1); }
.panel-core { position: relative; height: 345px; display: grid; place-items: center; overflow: hidden; }
.core-mark { position: relative; z-index: 2; width: 156px; height: 156px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(145deg, #e8f6ff, #9bcbea); box-shadow: 0 0 70px rgba(217,239,255,.38); color: #145c94; text-align: center; }
.core-mark span { font-size: 16px; font-weight: 950; }
.core-mark strong { margin-top: 6px; font-size: 21px; line-height: 1.3; letter-spacing: -.05em; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; right: 12%; top: 18%; border-radius: 50%; background: #d9f0ff; box-shadow: 0 0 16px currentColor; }
.orbit-one { width: 255px; height: 255px; animation: orbit 18s linear infinite; }
.orbit-two { width: 335px; height: 335px; opacity: .55; animation: orbit 28s linear infinite reverse; }
.orbit-two::after { left: 8%; top: 68%; right: auto; width: 6px; height: 6px; }
@keyframes orbit { to { transform: rotate(360deg); } }
.metric { position: absolute; z-index: 3; min-width: 92px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(20,82,130,.78); box-shadow: 0 12px 32px rgba(17,62,99,.23); }
.metric b, .metric span { display: block; }
.metric b { color: #a9d8f6; font-size: 13px; letter-spacing: .08em; }
.metric span { margin-top: 2px; font-size: 10px; color: rgba(255,255,255,.55); }
.metric-a { left: 27px; top: 56px; }
.metric-b { right: 28px; top: 122px; }
.metric-c { left: 50px; bottom: 35px; }
.panel-footer { height: 72px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; color: rgba(255,255,255,.48); }
.panel-footer span { padding-left: 10px; position: relative; }
.panel-footer span::before { content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--teal-bright); transform: translateY(-50%); }

.quick-facts { position: relative; z-index: 4; margin-top: -1px; border-bottom: 1px solid var(--line); background: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid article { min-height: 112px; padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.facts-grid article:first-child { border-left: 1px solid var(--line); }
.facts-grid span { margin-bottom: 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: #789092; }
.facts-grid strong { font-size: 15px; letter-spacing: -.025em; }

.section { padding: 128px 0; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.3; letter-spacing: -.055em; }
.section-heading > p:last-child { max-width: 610px; margin: 22px 0 0; color: var(--ink-soft); }
.section-heading.centered { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.intro { background: var(--cream); }
.intro-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: start; }
.intro-copy { padding-top: 42px; border-top: 1px solid #cfd9d5; color: var(--ink-soft); }
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 22px; }
.intro-copy .large-copy { color: var(--ink); font-size: 20px; line-height: 1.8; font-weight: 700; letter-spacing: -.025em; }

.feature-section { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 325px; padding: 36px 32px; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: #a7dcd4; box-shadow: var(--shadow); }
.feature-number { position: absolute; right: 22px; top: 19px; font-size: 11px; font-weight: 900; color: #a9bcba; }
.feature-card h3 { margin: 27px 0 12px; font-size: 21px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.feature-icon { position: relative; width: 62px; height: 62px; border-radius: 16px; background: var(--mint); }
.feature-icon i { position: absolute; display: block; background: var(--teal); }
.icon-books i { width: 10px; bottom: 15px; border-radius: 2px; }
.icon-books i:nth-child(1) { left: 15px; height: 28px; transform: rotate(-6deg); }
.icon-books i:nth-child(2) { left: 28px; height: 33px; }
.icon-books i:nth-child(3) { left: 42px; height: 25px; transform: rotate(7deg); }
.icon-users i { border-radius: 50%; }
.icon-users i:nth-child(1) { width: 16px; height: 16px; left: 23px; top: 12px; }
.icon-users i:nth-child(2) { width: 30px; height: 16px; left: 16px; bottom: 13px; border-radius: 15px 15px 5px 5px; }
.icon-users i:nth-child(3) { width: 10px; height: 10px; left: 11px; top: 22px; opacity: .45; }
.icon-flow i:nth-child(1), .icon-flow i:nth-child(2) { width: 14px; height: 14px; border: 3px solid var(--teal); background: transparent; border-radius: 50%; top: 24px; }
.icon-flow i:nth-child(1) { left: 10px; }.icon-flow i:nth-child(2) { right: 10px; }
.icon-flow i:nth-child(3) { left: 24px; top: 30px; width: 14px; height: 3px; }
.icon-link i { width: 29px; height: 15px; border: 3px solid var(--teal); background: transparent; border-radius: 12px; top: 22px; }
.icon-link i:nth-child(1) { left: 8px; transform: rotate(-35deg); }.icon-link i:nth-child(2) { right: 8px; transform: rotate(-35deg); }
.icon-cloud i:nth-child(1) { left: 12px; top: 27px; width: 40px; height: 20px; border-radius: 14px; }
.icon-cloud i:nth-child(2) { left: 17px; top: 19px; width: 22px; height: 22px; border-radius: 50%; }
.icon-cloud i:nth-child(3) { right: 12px; top: 23px; width: 17px; height: 17px; border-radius: 50%; }
.icon-migrate i:nth-child(1), .icon-migrate i:nth-child(2) { width: 20px; height: 25px; border: 3px solid var(--teal); background: transparent; border-radius: 4px; top: 18px; }
.icon-migrate i:nth-child(1) { left: 9px; }.icon-migrate i:nth-child(2) { right: 9px; }
.icon-migrate i:nth-child(3) { left: 24px; top: 29px; width: 14px; height: 3px; }

.advantages { position: relative; color: #fff; background: linear-gradient(135deg, #155f9a, #287fba); overflow: hidden; }
.advantages::after { content: ""; position: absolute; width: 640px; height: 640px; left: -300px; bottom: -390px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.018), 0 0 0 200px rgba(255,255,255,.012); }
.advantage-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; }
.kicker.light { color: var(--teal-bright); }
.advantage-title h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.28; letter-spacing: -.055em; }
.advantage-title > p:not(.kicker) { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.62); }
.counter-box { display: flex; align-items: flex-end; gap: 17px; margin-top: 58px; }
.counter-box strong { font-size: 58px; line-height: 1; letter-spacing: -.06em; color: #b9dcf3; }
.counter-box sup { font-size: 24px; }
.counter-box span { max-width: 130px; padding-bottom: 5px; font-size: 12px; color: rgba(255,255,255,.55); }
.advantage-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.advantage-list li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.advantage-list > li > span { padding-top: 4px; font-size: 11px; font-weight: 900; color: var(--teal-bright); }
.advantage-list h3 { margin: 0 0 6px; font-size: 20px; }
.advantage-list p { margin: 0; font-size: 14px; color: rgba(255,255,255,.58); }

.outcomes { background: var(--cream); }
.outcomes .section-heading { margin-bottom: 58px; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.outcome-grid article { padding: 38px 34px; border-top: 3px solid var(--teal); background: #fff; }
.outcome-grid b { font-size: 11px; color: var(--teal); }
.outcome-grid h3 { margin: 37px 0 12px; font-size: 22px; }
.outcome-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.trust { background: #fff; }
.trust-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.trust-copy h2 { margin: 0; font-size: clamp(35px, 4vw, 50px); line-height: 1.3; letter-spacing: -.055em; }
.trust-copy > p:not(.kicker) { margin: 22px 0 0; color: var(--ink-soft); }
.trust-stamp { margin-top: 48px; padding: 23px; display: inline-flex; align-items: center; gap: 17px; border: 1px solid #bfe4dd; border-radius: 16px; background: #f3fbf9; }
.trust-stamp > span { width: 70px; height: 70px; display: grid; place-items: center; border: 2px solid var(--teal); border-radius: 50%; font-size: 14px; font-weight: 950; color: var(--teal); letter-spacing: .06em; }
.trust-stamp div { display: flex; flex-direction: column; line-height: 1.35; }
.trust-stamp strong { font-size: 15px; }.trust-stamp small { margin-top: 5px; color: #78908f; }
.document-list { border-top: 1px solid var(--line); }
.document-item { min-height: 92px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.doc-type { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px; background: var(--mint); font-size: 9px; font-weight: 900; color: var(--teal); }
.document-item > span:nth-child(2) { display: flex; flex-direction: column; }
.document-list strong { font-size: 15px; color: var(--ink); }
.document-list small { margin-top: 4px; color: #819394; }

.references { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.split-heading > p { max-width: 520px; padding-bottom: 8px; color: var(--ink-soft); }
.reference-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.reference-feature { min-height: 480px; padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; border-radius: var(--radius); overflow: hidden; background:
  linear-gradient(to top, rgba(1,37,42,.95), rgba(5,73,79,.4)),
  repeating-linear-gradient(125deg, #0d7779 0, #0d7779 1px, #0b6067 1px, #0b6067 16px);
}
.reference-feature span { margin-bottom: auto; font-size: 11px; font-weight: 900; letter-spacing: .14em; color: var(--teal-bright); }
.reference-feature h3 { margin: 0 0 16px; font-size: 31px; line-height: 1.35; letter-spacing: -.045em; }
.reference-feature p { margin: 0; color: rgba(255,255,255,.64); }
.reference-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); list-style: none; }
.reference-list li { min-height: 115px; padding: 22px 24px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 750; }
.reference-list li:nth-child(even) { border-right: 0; }
.reference-list span { min-width: 39px; padding: 5px 7px; border-radius: 5px; background: var(--mint); color: var(--teal); font-size: 10px; font-weight: 900; text-align: center; }

.provider { padding-top: 0; background: var(--paper); }
.provider-card { padding: 48px 54px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 20px 70px rgba(6,63,70,.07); }
.provider-card h2 { margin: 0; font-size: 31px; letter-spacing: -.04em; }
.provider-card > div > p:last-child { color: var(--ink-soft); }
.provider-card dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.provider-card dl div { padding: 13px 0; display: grid; grid-template-columns: 76px 1fr; border-bottom: 1px solid var(--line); }
.provider-card dt { font-size: 12px; color: #819394; }.provider-card dd { margin: 0; font-size: 14px; font-weight: 750; }
.provider-card dd a:hover { color: var(--teal); }

.contact { position: relative; padding: 120px 0; overflow: hidden; color: #fff; text-align: center; background: linear-gradient(135deg, #68adde, #236fa9); }
.contact::before, .contact::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.contact::before { width: 470px; height: 470px; left: -240px; top: -220px; }
.contact::after { width: 360px; height: 360px; right: -170px; bottom: -240px; }
.contact-inner { position: relative; z-index: 2; }
.contact h2 { margin: 0; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.28; letter-spacing: -.06em; }
.contact-inner > p:not(.kicker):not(.contact-note) { margin: 24px 0 0; color: rgba(255,255,255,.72); }
.contact-email { display: inline-block; margin: 34px 0 0; padding: 11px 20px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: rgba(255,255,255,.86); font-size: 14px; font-weight: 800; letter-spacing: .03em; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.63); background: #164d78; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; font-size: 11px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand strong { color: #fff; letter-spacing: .05em; }.footer-brand span { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.2); }
.footer-inner p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { height: 68px; background: rgba(255,255,255,.97); }
  .brand-logo, .site-header.is-scrolled .brand-logo { height: 46px; }
  .menu-button { width: 40px; height: 40px; padding: 9px; display: flex; flex-direction: column; justify-content: center; gap: 5px; color: var(--deep); cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; height: 2px; background: currentColor; border-radius: 2px; }
  .primary-nav { position: fixed; inset: 68px 0 auto; padding: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: 0 20px 40px rgba(31,95,145,.16); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .nav-contact { margin-top: 12px; text-align: center; border: 0 !important; }
  .hero { min-height: auto; padding-top: 128px; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 720px; }
  .hero-panel { width: min(100%, 620px); margin: 0 auto; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid article:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .facts-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .intro-layout, .advantage-layout, .trust-layout, .provider-card { grid-template-columns: 1fr; gap: 55px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .reference-grid { grid-template-columns: 1fr; }
  .reference-feature { min-height: 390px; }
  .footer-inner { grid-template-columns: 1fr; gap: 13px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero { padding: 116px 0 70px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-panel { min-height: 390px; }
  .panel-core { height: 280px; }
  .core-mark { width: 128px; height: 128px; }.orbit-one { width: 210px; height: 210px; }.orbit-two { width: 275px; height: 275px; }
  .metric-b { right: 13px; }.metric-a { left: 13px; }.metric-c { left: 22px; bottom: 20px; }
  .panel-footer { height: 54px; }.panel-footer span:nth-child(even) { display: none; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid article { min-height: 88px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .facts-grid article:first-child { border-top: 0; }
  .section { padding: 88px 0; }
  .section-heading.centered { margin-bottom: 42px; text-align: left; }
  .intro-copy { padding-top: 28px; }
  .feature-grid, .outcome-grid, .reference-list, .split-heading { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .advantage-list li { grid-template-columns: 40px 1fr; }
  .trust-stamp { width: 100%; }
  .document-item { grid-template-columns: 46px 1fr; gap: 12px; }
  .reference-list li { border-right: 0; }
  .reference-feature { min-height: 350px; padding: 34px; }
  .provider-card { padding: 34px 24px; }
  .provider-card dl { grid-template-columns: 1fr; }
  .contact { padding: 90px 0; }
  .contact-actions .button { width: 100%; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 5px; }.footer-brand span { padding-left: 0; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
