:root {
  --navy: #082e67;
  --deep: #041c43;
  --accent: #009b83;
  --accent-dark: #087166;
  --mint: #62dbc2;
  --pale: #eaf8f4;
  --canvas: #f7f9fa;
  --paper: #ffffff;
  --warm: #f6f3ed;
  --olive: #52623e;
  --pale-olive: #eef1e8;
  --peach: #f4d8c8;
  --sky: #dff2f3;
  --ink: #172b43;
  --body: #536276;
  --muted: #788696;
  --line: #dce5ea;
  --white: #fff;
  --wrap: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 70px rgba(12, 44, 73, 0.12);
  --shadow-soft: 0 16px 40px rgba(12, 44, 73, 0.08);
  --header-height: 72px;
  --display: clamp(3.15rem, 5.8vw, 5.65rem);
  --h2: clamp(2.25rem, 4.1vw, 4rem);
  --h3: clamp(1.75rem, 3vw, 2.75rem);
  --lead: clamp(1rem, 1.7vw, 1.18rem);
  --duration-fast: 180ms;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 145px; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: Pretendard, "Noto Sans KR", sans-serif; font-size: 16px; line-height: 1.7; letter-spacing: -0.025em; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, ol, ul, dl, dd, figure { margin: 0; padding: 0; }
ol, ul { list-style: none; }
button { font: inherit; }
button, a { touch-action: manipulation; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
.page-wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.visually-hidden { 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; top: -80px; left: 12px; z-index: 1000; padding: 11px 16px; border-radius: var(--radius-sm); background: var(--paper); color: var(--navy); box-shadow: var(--shadow); font-weight: 800; }
.skip-link:focus { top: 12px; }

.utility-bar { min-height: 32px; display: flex; align-items: center; background: var(--deep); color: #c8d5e2; font-size: 11px; letter-spacing: .02em; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-inner div { display: flex; gap: 24px; }
.utility-inner a { min-height: 32px; display: inline-flex; align-items: center; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(220,229,234,.9); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 24px; }
.wordmark { min-height: 44px; display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-size: 20px; font-weight: 900; letter-spacing: -.055em; }
.wordmark-symbol { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50% 50% 50% 8px; background: var(--navy); color: var(--paper); font-size: 11px; letter-spacing: -.03em; transform: rotate(-5deg); }
.wordmark-symbol + span { white-space: nowrap; }
.desktop-nav { height: var(--header-height); margin-left: auto; display: flex; align-items: stretch; gap: 28px; }
.desktop-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; color: #40536a; font-size: 14px; font-weight: 740; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform 220ms var(--ease); }
.desktop-nav a:hover, .desktop-nav a.current { color: var(--navy); }
.desktop-nav a:hover::after, .desktop-nav a.current::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-contact { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 18px; border-radius: var(--radius-sm); background: var(--navy); color: var(--paper); font-size: 14px; font-weight: 800; transition: transform 180ms, background 180ms; }
.header-contact:hover { background: var(--accent-dark); transform: translateY(-2px); }
.site-menu-toggle { width: 44px; height: 44px; display: none; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); cursor: pointer; }
.site-menu-toggle span { width: 20px; height: 2px; display: block; margin: 4px auto; background: var(--navy); transition: transform 180ms, opacity 180ms; }
.site-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.mobile-nav.open { display: block; }
.mobile-nav .page-wrap { display: grid; padding-block: 8px 18px; }
.mobile-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--body); font-weight: 740; }
.mobile-nav a.current { color: var(--accent-dark); }
.breadcrumb { min-height: 54px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumb a { min-height: 44px; display: inline-flex; align-items: center; }
.breadcrumb strong { color: var(--accent-dark); }

.benefits-hero { padding-bottom: 72px; background: linear-gradient(90deg, #fbfaf7 0 48%, #f2f5f3 48% 100%); }
.hero-shell { min-height: min(690px, calc(100dvh - 158px)); display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 76px 64px 76px 0; }
.eyebrow, .chapter-label { color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.hero-copy h1 { max-width: 9.5ch; margin-top: 21px; color: var(--navy); font-size: var(--display); font-weight: 850; line-height: .99; letter-spacing: -.07em; word-break: keep-all; text-wrap: balance; }
.hero-lead { max-width: 32rem; margin-top: 30px; color: var(--body); font-size: var(--lead); line-height: 1.8; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 820; transition: transform 180ms, background 180ms, color 180ms; }
.button-primary { background: var(--navy); color: var(--paper); box-shadow: 0 12px 28px rgba(8,46,103,.18); }
.button-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.button-text { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-size: 14px; font-weight: 820; }
.button-text:hover { color: var(--accent-dark); }
.hero-caption { display: flex; align-items: center; gap: 10px; margin-top: 52px; color: var(--muted); font-size: 12px; font-weight: 650; }
.hero-caption span { width: 24px; height: 1px; background: var(--accent); }
.hero-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 4px 4px var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,28,67,.38)); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-visual figcaption { position: absolute; right: 28px; bottom: 26px; left: 28px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 18px; color: var(--paper); }
.hero-visual figcaption strong { font-size: 12px; letter-spacing: .08em; }
.hero-visual figcaption span { font-size: 12px; text-align: right; }

.chapter-nav { position: sticky; top: var(--header-height); z-index: 80; border-block: 1px solid var(--line); background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
.chapter-nav-inner { min-height: 72px; }
.chapter-toggle { display: none; }
.chapter-links { min-height: 72px; display: grid; grid-template-columns: repeat(5, 1fr); }
.chapter-links a { position: relative; min-width: 0; display: grid; align-content: center; gap: 3px; padding: 11px 18px; border-left: 1px solid var(--line); color: var(--muted); transition: color 200ms, background 200ms; }
.chapter-links a:last-child { border-right: 1px solid var(--line); }
.chapter-links a::after { content: ""; position: absolute; right: 18px; bottom: 0; left: 18px; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform 220ms var(--ease); }
.chapter-links b { font-size: 10px; font-variant-numeric: tabular-nums; }
.chapter-links span { overflow: hidden; font-size: 12px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap; }
.chapter-links a:hover, .chapter-links a.is-active { background: var(--pale); color: var(--navy); }
.chapter-links a.is-active::after { transform: scaleX(1); }

.chapter { scroll-margin-top: 1rem; }
.chapter h2, .support-panel h2 { color: var(--navy); font-size: var(--h2); font-weight: 830; line-height: 1.08; letter-spacing: -.06em; word-break: keep-all; text-wrap: balance; }
.section-intro { max-width: 870px; }
.section-intro h2, .partner-intro h2 { margin-top: 14px; }
.partner-intro h2 { font-size: var(--h3); white-space: nowrap; }
.section-intro > p:last-child, .partner-intro > .partner-lead { max-width: 650px; margin-top: 24px; color: var(--body); font-size: var(--lead); line-height: 1.78; }
.fine-print { color: var(--muted); font-size: 12px; }
.inline-link { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; color: var(--accent-dark); font-size: 14px; font-weight: 820; }
.inline-link:hover { color: var(--navy); }

.installment-section { padding-block: 120px 132px; background: var(--paper); }
.payment-intro { max-width: 1080px; }
.payment-name { width: fit-content; display: inline-flex; align-items: center; gap: 12px; color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.payment-name::before { content: ""; width: 28px; height: 2px; flex: 0 0 auto; background: var(--accent); }
.payment-intro h2 { margin-top: 24px; }
.payment-summary { max-width: 980px; margin-top: 24px; color: var(--ink); font-size: clamp(1.65rem, 3.2vw, 2.75rem); font-weight: 780; line-height: 1.3; letter-spacing: -.045em; word-break: keep-all; text-wrap: balance; }
.payment-summary .payment-term { color: var(--accent-dark); }
.payment-intro > p:last-child { max-width: none; }
.payment-intro > p:last-child strong { color: var(--navy); font-weight: 850; }
.payment-term, .support-phrase { white-space: nowrap; }
.payment-story { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr); margin-top: 56px; }
.payment-story::before { content: ""; grid-column: 1 / -1; grid-row: 1; border-radius: var(--radius-sm); background: var(--pale); box-shadow: var(--shadow-soft); }
.payment-explainer { position: relative; z-index: 1; grid-column: 1; grid-row: 1; min-height: 360px; display: flex; flex-direction: column; justify-content: center; padding: 44px 48px; }
.payment-kicker { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.payment-role-flow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(96px, .42fr) minmax(0, 1fr); align-items: center; margin-top: 38px; }
.payment-role { min-width: 0; padding-top: 20px; border-top: 2px solid var(--navy); }
.payment-role-patient { border-color: var(--accent); }
.payment-role > span { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.payment-role strong { display: block; margin-top: 10px; color: var(--navy); font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.2; letter-spacing: -.045em; word-break: keep-all; }
.payment-role p { max-width: 290px; margin-top: 10px; color: var(--body); font-size: 15px; line-height: 1.65; word-break: keep-all; }
.payment-bridge { display: grid; justify-items: center; gap: 8px; color: var(--accent-dark); }
.payment-bridge span { font-size: 11px; font-weight: 820; }
.payment-bridge i { font-size: 28px; font-style: normal; line-height: 1; }
.payment-scene { position: relative; z-index: 1; grid-column: 2; grid-row: 1; min-width: 0; min-height: 360px; overflow: hidden; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--warm); }
.payment-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.payment-details { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 24px; align-items: stretch; margin-top: 24px; }
.payment-example { display: flex; flex-direction: column; padding: 36px; border-top: 4px solid var(--peach); border-radius: var(--radius-sm); background: var(--warm); }
.example-case { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.example-case strong { color: var(--navy); font-size: 19px; font-variant-numeric: tabular-nums; }
.example-case span { color: var(--accent-dark); font-size: 13px; font-weight: 800; }
.payment-example h3 { margin-top: 26px; color: var(--ink); font-size: 29px; line-height: 1.18; letter-spacing: -.05em; }
.example-metrics { margin-top: 26px; }
.example-metrics div { padding-block: 17px; border-top: 1px solid var(--line); }
.example-metrics dt { color: var(--muted); font-size: 13px; font-weight: 780; }
.example-metrics dd { margin-top: 3px; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 880; line-height: 1.2; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.example-metrics span { display: block; margin-top: 4px; color: var(--body); font-size: 13px; }
.payment-example .fine-print { margin-top: auto; padding-top: 20px; }
.installment-section .fine-print { font-size: 13px; line-height: 1.65; }
.fee-board { display: flex; flex-direction: column; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--canvas); }
.fee-board-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 27px; border-bottom: 2px solid var(--navy); }
.fee-board-head span { color: var(--accent-dark); font-size: 13px; font-weight: 820; }
.fee-board-head h3 { margin-top: 4px; color: var(--ink); font-size: 24px; }
.fee-board-head small { color: var(--muted); font-size: 12px; }
.fee-board table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.fee-board th, .fee-board td { padding: 23px 8px; border-bottom: 1px solid var(--line); text-align: center; }
.fee-board th:first-child { width: 31%; text-align: left; }
.fee-board thead th { color: var(--muted); font-size: 13px; line-height: 1.4; }
.fee-board thead th em { display: block; width: fit-content; margin: 5px auto 0; padding: 2px 7px; border-radius: 999px; background: var(--peach); color: var(--ink); font-size: 10px; font-style: normal; }
.fee-board tbody th { color: var(--body); font-size: 14px; }
.fee-board td { color: var(--navy); font-size: clamp(1.35rem, 2.5vw, 2.1rem); font-weight: 880; font-variant-numeric: tabular-nums; }
.fee-board .longest { background: var(--warm); }
.fee-conditions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 25px; }
.fee-conditions div { padding-left: 14px; border-left: 3px solid var(--peach); }
.fee-conditions dt { color: var(--muted); font-size: 12px; font-weight: 760; }
.fee-conditions dd { margin-top: 3px; color: var(--ink); font-size: 14px; font-weight: 720; }
.fee-board .fine-print { margin-top: 22px; }
.fee-board .inline-link { margin-top: auto; padding-top: 20px; }

.partner-section { background: var(--paper); }
.partner-intro { padding-block: 128px 72px; }
.partner-intro .partner-lead { max-width: none; white-space: nowrap; word-break: keep-all; }
.partner-condition { max-width: 760px; margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-feature { padding-block: 90px; }
.service-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 74px; align-items: center; }
.service-grid-reverse { grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr); }
.service-media { position: relative; min-width: 0; }
.service-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.service-cleaning .service-media img { object-position: center 52%; }
.service-maintenance .service-media img { object-position: center 56%; }
.service-media figcaption { min-height: 28px; display: flex; align-items: center; gap: 12px; margin-top: 12px; padding-inline: 4px; color: var(--olive); font-size: 11px; font-weight: 780; }
.service-media figcaption::before { content: ""; width: 32px; height: 1px; flex: 0 0 auto; background: currentColor; opacity: .42; }
.service-number { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--olive); font-size: 12px; font-weight: 900; }
.service-type { margin-top: 28px; color: var(--olive); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.service-copy { min-width: 0; word-break: keep-all; overflow-wrap: break-word; }
.service-copy h3 { margin-top: 10px; color: var(--ink); font-size: var(--h3); line-height: 1.15; letter-spacing: -.055em; text-wrap: balance; }
.service-copy > p:not(.service-number):not(.service-type):not(.service-condition) { margin-top: 22px; color: var(--body); font-size: var(--lead); line-height: 1.75; text-wrap: pretty; }
.service-copy ul { margin-top: 27px; border-top: 1px solid rgba(82,98,62,.3); }
.service-copy li { min-height: 46px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(82,98,62,.2); color: #3f4c40; font-size: 13px; font-weight: 690; }
.service-copy li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.service-condition { margin-top: 18px; color: var(--muted); font-size: 11px; }
.service-cleaning { background: var(--pale-olive); }
.service-maintenance { background: #fafbf8; }
.service-maintenance .service-media figcaption { color: var(--navy); }
.service-products { padding-block: 105px; background: var(--warm); }
.product-layout { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: 80px; align-items: center; }
.product-showcase { min-width: 0; display: grid; gap: 18px; }
.product-showcase-note { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 18px; border-block: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.55; word-break: keep-all; }
.product-showcase-note strong { flex: 0 0 auto; color: var(--accent-dark); font-size: 11px; font-weight: 850; }
.product-showcase-note span { color: var(--body); text-align: right; }
.product-kind-pair { white-space: nowrap; }
.product-panels { display: grid; gap: 16px; }
.product-panel { position: relative; min-height: 244px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .72fr); align-items: center; overflow: hidden; padding: 24px 28px; border: 1px solid rgba(8,46,103,.16); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 16px 36px rgba(12,44,73,.07); }
.product-panel::after { content: ""; position: absolute; right: -60px; bottom: -110px; width: 250px; aspect-ratio: 1; border: 1px solid rgba(8,46,103,.08); border-radius: 50%; pointer-events: none; }
.product-image-well { position: relative; z-index: 1; grid-column: 2; grid-row: 1; height: 196px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(8,46,103,.1); border-radius: calc(var(--radius-md) - 4px); background: linear-gradient(145deg, color-mix(in srgb, var(--navy) 18%, var(--paper)), color-mix(in srgb, var(--navy) 9%, var(--paper))); box-shadow: inset 0 1px 0 rgba(255,255,255,.65); }
.product-image-well::before { content: ""; position: absolute; width: 142px; aspect-ratio: 1; border: 1px solid rgba(8,46,103,.12); border-radius: 50%; }
.product-image-well img { position: relative; z-index: 1; width: auto; height: auto; max-width: 100%; object-fit: contain; }
.product-panel-water .product-image-well img { max-height: 188px; filter: drop-shadow(0 2px 1px rgba(8,46,103,.2)) drop-shadow(0 16px 14px rgba(8,46,103,.24)); transform: scale(1.45); }
.product-panel-air .product-image-well img { max-height: 196px; filter: drop-shadow(0 16px 16px rgba(8,46,103,.22)); }
.product-panel figcaption { position: relative; z-index: 1; grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; padding-right: 18px; }
.product-panel figcaption > span { min-height: 28px; display: grid; place-items: center; border: 1px solid rgba(8,46,103,.22); border-radius: 50%; color: var(--accent-dark); font-size: 9px; font-weight: 900; }
.product-panel figcaption strong { display: block; color: var(--navy); font-size: 20px; line-height: 1.25; }
.product-panel figcaption small { display: block; margin-top: 7px; color: var(--body); font-size: 11px; line-height: 1.55; word-break: keep-all; }

.connect-section { position: relative; padding-block: 124px 136px; overflow: hidden; background: radial-gradient(circle at 18% 2%, rgba(0,155,131,.12), transparent 30rem), linear-gradient(180deg, #062550 0%, var(--deep) 72%); color: var(--paper); }
.connect-section::before { content: none; }
.connect-section .page-wrap { position: relative; z-index: 1; }
.connect-header { max-width: 860px; display: grid; grid-template-columns: 1fr; gap: 46px; align-items: start; }
.connect-section .chapter-label { color: var(--mint); }
.connect-brand { display: block; }
.connect-logo { width: min(100%, 320px); height: auto; margin-top: 30px; }
.connect-copy { min-width: 0; word-break: keep-all; overflow-wrap: break-word; }
.connect-header h2 { max-width: 760px; color: var(--paper); font-size: clamp(2.5rem, 4.2vw, 3.65rem); line-height: 1.08; }
.connect-copy > p { max-width: 650px; margin-top: 24px; color: #bdcbd9; font-size: var(--lead); text-wrap: pretty; }
.connect-keep { white-space: nowrap; }
.connect-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; border-bottom: 1px solid rgba(98,219,194,.66); color: var(--mint); font-size: 13px; font-weight: 800; }
.connect-link span { transition: transform var(--duration-fast) var(--ease); }
.connect-link:hover span { transform: translate(2px, -2px); }
.connect-link small { color: #91a6ba; font-size: 10px; }
.connect-features { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-block: 1px solid rgba(210,228,240,.19); }
.connect-features span { min-height: 62px; display: flex; align-items: center; gap: 12px; padding-inline: 20px; color: #d4dee8; font-size: 12px; font-weight: 730; }
.connect-features span + span { border-left: 1px solid rgba(210,228,240,.14); }
.connect-features b { color: rgba(98,219,194,.72); font-size: 9px; font-weight: 850; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.connect-video { width: min(100%, 1040px); margin: 62px 0 0; }
.connect-video-caption { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 16px; }
.connect-video-caption > p { max-width: 620px; color: #b4c3d1; font-size: 13px; line-height: 1.65; word-break: keep-all; overflow-wrap: break-word; text-wrap: pretty; }
.connect-video-external { min-height: 44px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(98,219,194,.58); color: var(--mint); font-size: 12px; font-weight: 800; }
.connect-video-external span { transition: transform var(--duration-fast) var(--ease); }
.connect-video-external small { color: #91a6ba; font-size: 10px; }
.connect-video-external:hover span { transform: translate(2px, -2px); }
.connect-video-external:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
.connect-video-card { position: relative; isolation: isolate; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(218,233,242,.18); border-radius: var(--radius-md); background: #020b18; box-shadow: 0 22px 62px rgba(0,8,24,.3); }
.connect-video-launch { position: absolute; inset: 0; width: 100%; display: block; overflow: hidden; padding: 0; border: 0; border-radius: inherit; background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.connect-video-launch::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(4,20,48,.68) 100%); pointer-events: none; }
.connect-video-launch > img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms var(--ease), filter 300ms var(--ease); }
.connect-video-play { position: absolute; z-index: 2; bottom: 20px; left: 20px; width: 48px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(4,28,67,.84); transition: background 220ms, transform 220ms var(--ease); }
.connect-video-play i { width: 0; height: 0; margin-left: 4px; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 11px solid var(--paper); }
.connect-video-meta { position: absolute; z-index: 2; bottom: 22px; left: 82px; display: grid; gap: 0; color: var(--paper); }
.connect-video-meta strong { font-size: 13px; font-weight: 820; }
.connect-video-meta small { color: rgba(255,255,255,.67); font-size: 10px; }
.connect-video-launch:hover > img { filter: saturate(1.02); transform: scale(1.008); }
.connect-video-launch:hover .connect-video-play { background: var(--accent-dark); transform: scale(1.04); }
.connect-video-launch:focus-visible { outline: 3px solid var(--mint); outline-offset: -6px; }
.connect-video-card iframe { width: 100%; height: 100%; display: block; border: 0; }
.connect-video-card.is-playing { background: #000; }

.infrastructure-section { padding-block: 116px 120px; background: linear-gradient(135deg, #edf7f6, #f7faf9 58%, #eef5f8); }
.infra-layout { display: block; }
.infra-header { max-width: 1040px; }
.infrastructure-section .chapter-label { color: var(--accent-dark); }
.partnership-type { max-width: 760px; display: flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--navy); font-size: clamp(1.08rem, 1.65vw, 1.3rem); font-weight: 850; line-height: 1.45; word-break: keep-all; text-wrap: balance; }
.partnership-type::before { content: ""; width: 28px; height: 2px; flex: 0 0 auto; background: var(--accent); }
.infra-lockup { width: min(100%, 520px); display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(14px, 2vw, 24px); margin-top: 28px; }
.infra-lockup img { height: auto; flex: 0 0 auto; }
.infra-datark-logo { width: min(52vw, 280px); }
.infra-provider { flex: 0 0 auto; display: grid; gap: 5px; padding-left: clamp(14px, 2vw, 24px); border-left: 1px solid #cbdcdf; }
.infra-provider-label { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; white-space: nowrap; }
.infra-koneksi-logo { width: min(24vw, 112px); }
.infra-copy { min-width: 0; word-break: keep-all; overflow-wrap: break-word; }
.infra-copy h2 { max-width: 760px; margin-top: 36px; font-size: clamp(2.45rem, 4.1vw, 3.65rem); }
.infra-title-line { display: block; }
.infra-description { max-width: 1040px; display: grid; gap: 7px; margin-top: 22px; }
.infra-description p { color: var(--body); font-size: var(--lead); line-height: 1.72; text-wrap: pretty; }
.infra-description p:first-child { white-space: nowrap; }
.infra-description strong { color: var(--navy); font-weight: 820; white-space: nowrap; }
.infra-proof { width: min(100%, 1040px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; border-block: 2px solid var(--navy); }
.infra-proof article { min-height: 146px; padding: 20px 28px 21px 0; }
.infra-proof article + article { padding-left: 28px; border-left: 1px solid #cbdcdf; }
.infra-proof span { color: var(--accent-dark); font-size: 10px; font-weight: 900; font-variant-numeric: tabular-nums; }
.infra-proof h3 { margin-top: 12px; color: var(--ink); font-size: 19px; line-height: 1.35; }
.infra-proof p { margin-top: 6px; color: var(--body); font-size: 13px; line-height: 1.62; }
.infra-disclaimer { max-width: 1040px; margin-top: 17px; color: var(--muted); font-size: 11px; }

.apply-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 72vh, 820px);
  padding: 0;
  overflow: hidden;
  background: #d5dce2;
}
.apply-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 20% 45%;
  transform: translateX(-4.5%) scale(1.12);
  transform-origin: 26% 48%;
}
.apply-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, .18) 52%,
    rgba(255, 255, 255, .55) 68%,
    rgba(255, 255, 255, .88) 82%,
    #fff 100%
  );
  pointer-events: none;
}
.apply-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-left: clamp(14px, 2vw, 28px);
  padding-right: clamp(38px, 5.4vw, 92px);
}
.apply-copy {
  width: clamp(430px, 34vw, 540px);
  min-height: inherit;
  padding: 56px 26px 56px 58px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .08) 0%,
    rgba(255, 255, 255, .42) 22%,
    rgba(255, 255, 255, .78) 46%,
    rgba(255, 255, 255, .95) 70%,
    #fff 100%
  );
  border-left: 1px solid rgba(220,229,234,.75);
  box-shadow: none;
  word-break: keep-all;
}
.apply-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1.18;
  text-wrap: balance;
}
.apply-steps { margin-top: 30px; border-top: 2px solid var(--navy); }
.apply-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding-block: 18px; border-bottom: 1px solid var(--line); }
.apply-steps li:last-child { border-bottom: 0; padding-bottom: 4px; }
.apply-steps span { color: var(--accent-dark); font-size: 11px; font-weight: 900; font-variant-numeric: tabular-nums; }
.apply-steps h3 { color: var(--ink); font-size: 16px; font-weight: 780; }
.apply-steps p { margin-top: 5px; color: var(--body); font-size: 13px; line-height: 1.55; text-wrap: pretty; }

.support-section { padding-block: 80px; background: var(--canvas); }
.support-panel { min-height: 340px; display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 58px; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 88% 4%, rgba(0,155,131,.4), transparent 34%), var(--navy); color: var(--paper); box-shadow: var(--shadow); }
.support-panel > div:first-child > p { color: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.support-panel h2 { margin-top: 15px; color: var(--paper); font-size: clamp(2.25rem, 4vw, 3.75rem); }
.support-panel > div:first-child > span { display: block; margin-top: 18px; color: #c2d0dd; font-size: 13px; }
.support-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.support-actions a { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid rgba(255,255,255,.72); border-radius: var(--radius-sm); color: var(--paper); font-size: 13px; font-weight: 820; transition: transform 180ms, background 180ms; }
.support-actions a:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.support-actions a.primary { border-color: var(--mint); background: var(--mint); color: var(--deep); }

.site-footer { padding-top: 56px; background: #071b34; color: #aebdcc; }
.footer-main { display: grid; grid-template-columns: 1.2fr .6fr .7fr; gap: 56px; padding-bottom: 40px; }
.footer-wordmark { color: var(--paper); }
.footer-main > div > p { max-width: 420px; margin-top: 16px; font-size: 12px; }
.footer-main nav { display: grid; align-content: start; gap: 8px; }
.footer-main nav strong { margin-bottom: 5px; color: var(--paper); font-size: 13px; }
.footer-main nav a { min-height: 40px; display: flex; align-items: center; font-size: 12px; }
.footer-main nav a:hover { color: var(--mint); }
.footer-copy { padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7e92a6; font-size: 11px; }

.benefits-v3-js .reveal-target { opacity: 0; transform: translateY(24px); }
.benefits-v3-js .reveal-target.is-visible { opacity: 1; transform: none; transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
.benefits-v3-js .hero-visual.is-visible { transition-delay: 100ms; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .site-menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
  .benefits-hero { padding-bottom: 52px; background: #fbfaf7; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 0 52px; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-visual { aspect-ratio: 16 / 9; }
  .installment-section .page-wrap { display: flex; flex-direction: column; }
  .payment-story { display: contents; }
  .payment-story::before { content: none; }
  .payment-explainer { min-height: 360px; margin-top: 56px; border-radius: var(--radius-sm); background: var(--pale); box-shadow: var(--shadow-soft); }
  .payment-details { grid-template-columns: 1fr; }
  .payment-scene { min-height: 0; margin-top: 24px; aspect-ratio: 16 / 7; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
  .service-grid { grid-template-columns: minmax(0, 1.08fr) minmax(260px, .92fr); gap: 32px; }
  .service-grid-reverse { grid-template-columns: minmax(260px, .92fr) minmax(0, 1.08fr); }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-copy { max-width: 650px; }
  .product-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-panel { min-height: 360px; grid-template-columns: 1fr; grid-template-rows: minmax(250px, 1fr) auto; align-items: end; padding: 24px; }
  .product-image-well { grid-column: 1; grid-row: 1; height: 250px; }
  .product-panel-water .product-image-well img { max-height: 220px; filter: drop-shadow(0 2px 1px rgba(8,46,103,.2)) drop-shadow(0 16px 14px rgba(8,46,103,.24)); transform: scale(1.35); }
  .product-panel-air .product-image-well img { max-height: 250px; }
  .product-panel figcaption { grid-column: 1; grid-row: 2; padding: 18px 0 0; border-top: 1px solid var(--line); }
  .connect-header { gap: 42px; }
  .infra-layout { grid-template-columns: 1fr; gap: 34px; }
  .infra-description p:first-child { white-space: normal; }
  .infra-proof, .infra-disclaimer { grid-column: auto; }
  .infra-proof { margin-top: 36px; }
  .support-panel { align-items: flex-start; flex-direction: column; }
  .partner-intro h2, .partner-intro .partner-lead { white-space: normal; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; --display: clamp(2.85rem, 13vw, 4rem); --h2: clamp(2.05rem, 9.5vw, 3rem); }
  html { scroll-padding-top: 122px; }
  .page-wrap { width: min(calc(100% - 32px), var(--wrap)); }
  .utility-bar { display: none; }
  .header-contact { display: none; }
  .breadcrumb { min-height: 48px; overflow: hidden; white-space: nowrap; }
  .benefits-hero { padding-bottom: 32px; }
  .hero-copy { padding: 52px 0 38px; }
  .hero-copy h1 { max-width: 9.5ch; margin-top: 17px; }
  .hero-lead { margin-top: 23px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-caption { margin-top: 32px; }
  .hero-visual { aspect-ratio: 4 / 3; border-radius: var(--radius-md); }
  .hero-visual figcaption { right: 16px; bottom: 15px; left: 16px; }
  .hero-visual figcaption span { display: none; }
  .chapter-nav { top: var(--header-height); }
  .chapter-nav-inner { min-height: 54px; }
  .chapter-toggle { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0; border: 0; background: transparent; color: var(--navy); font-size: 12px; font-weight: 800; cursor: pointer; }
  .chapter-toggle > span:last-child { color: var(--accent-dark); font-size: 11px; }
  .chapter-links { position: absolute; top: 100%; right: 0; left: 0; min-height: 0; display: none; grid-template-columns: 1fr; padding: 7px 16px 15px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .chapter-nav.is-open .chapter-links { display: grid; }
  .chapter-links a, .chapter-links a:last-child { min-height: 46px; grid-template-columns: 30px 1fr; align-items: center; gap: 0; padding: 0 12px; border: 0; border-bottom: 1px solid var(--line); }
  .chapter-links a::after { right: auto; bottom: 10px; left: 12px; width: 18px; }
  .installment-section, .partner-intro, .connect-section, .infrastructure-section { padding-block: 88px; }
  .apply-section { min-height: 620px; }
  .apply-shell {
    min-height: 560px;
    align-items: flex-end;
    padding-inline: 16px;
  }
  .apply-background { object-position: 28% 42%; }
  .apply-section::before {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, .12) 42%,
      rgba(255, 255, 255, .62) 68%,
      rgba(255, 255, 255, .92) 86%,
      #fff 100%
    );
  }
  .apply-copy {
    width: 100%;
    min-height: auto;
    padding: 36px 12px 40px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, .16) 0%,
      rgba(255, 255, 255, .72) 24%,
      rgba(255, 255, 255, .94) 52%,
      #fff 100%
    );
    border-left: 0;
  }
  .section-intro > p:last-child, .partner-intro > .partner-lead { font-size: 15px; }
  .payment-explainer { min-height: 0; margin-top: 38px; padding: 32px 24px; }
  .payment-role-flow { grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
  .payment-role { padding-block: 18px 20px; }
  .payment-role strong { font-size: 1.5rem; }
  .payment-role p { max-width: 310px; }
  .payment-bridge { min-height: 62px; align-content: center; }
  .payment-bridge i { transform: rotate(90deg); }
  .payment-scene { min-height: 0; margin-top: 16px; aspect-ratio: 4 / 3; }
  .payment-details { gap: 16px; margin-top: 16px; }
  .payment-example { padding: 28px 24px; }
  .example-case { display: grid; gap: 2px; }
  .payment-example h3 { font-size: 26px; }
  .fee-board { padding: 24px 16px; }
  .fee-board-head { align-items: start; }
  .fee-board-head h3 { font-size: 21px; }
  .fee-board-head small { display: none; }
  .fee-board th, .fee-board td { padding: 18px 3px; }
  .fee-board th:first-child { width: 31%; }
  .fee-board thead th { font-size: 11px; }
  .fee-board thead th em { padding-inline: 5px; font-size: 9px; }
  .fee-board tbody th { font-size: 12px; line-height: 1.4; }
  .fee-board td { font-size: clamp(1.08rem, 5.5vw, 1.45rem); }
  .fee-conditions { grid-template-columns: 1fr; gap: 14px; }
  .partner-intro { padding-bottom: 48px; }
  .service-feature, .service-products { padding-block: 72px; }
  .service-grid, .service-grid-reverse, .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .service-maintenance .service-copy { order: 2; }
  .service-maintenance .service-media { order: 1; }
  .service-media img { aspect-ratio: 4 / 3; }
  .service-media figcaption { right: 12px; bottom: 12px; }
  .service-number { width: 46px; height: 46px; }
  .service-type { margin-top: 22px; }
  .product-showcase { gap: 14px; }
  .product-showcase-note { align-items: flex-start; flex-direction: column; gap: 3px; padding: 12px 0; }
  .product-showcase-note span { text-align: left; }
  .product-panels { grid-template-columns: 1fr; gap: 14px; }
  .product-panel { min-height: 236px; grid-template-columns: minmax(0, 1fr) 128px; grid-template-rows: 1fr; align-items: center; padding: 20px; }
  .product-image-well { grid-column: 2; grid-row: 1; height: 196px; }
  .product-image-well::before { width: 118px; }
  .product-panel-water .product-image-well img { max-height: 172px; filter: drop-shadow(0 2px 1px rgba(8,46,103,.2)) drop-shadow(0 16px 14px rgba(8,46,103,.24)); transform: scale(1.55); }
  .product-panel-air .product-image-well img { max-height: 196px; }
  .product-panel figcaption { grid-column: 1; grid-row: 1; padding: 0 14px 0 0; border-top: 0; }
  .product-panel figcaption strong { font-size: 18px; }
  .connect-header { gap: 36px; }
  .connect-brand { padding-block: 0; }
  .connect-logo { width: min(100%, 260px); margin-top: 24px; }
  .connect-header h2 { font-size: clamp(1.95rem, 8.5vw, 2.35rem); }
  .connect-copy > p { margin-top: 20px; font-size: 15px; }
  .connect-features { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .connect-features span { min-height: 56px; padding-inline: 14px; }
  .connect-features span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(210,228,240,.14); }
  .connect-features span:nth-child(4) { border-top: 1px solid rgba(210,228,240,.14); }
  .connect-video { margin-top: 46px; }
  .connect-video-caption { min-height: 0; align-items: flex-start; flex-direction: column; gap: 2px; margin-bottom: 14px; }
  .connect-video-caption > p { font-size: 12px; }
  .connect-video-card { border-radius: 14px; }
  .connect-video-play { bottom: 14px; left: 14px; width: 44px; }
  .connect-video-meta { bottom: 16px; left: 70px; }
  .connect-video-meta small { display: none; }
  .infra-copy h2 { font-size: clamp(1.85rem, 8.2vw, 2.15rem); line-height: 1.13; }
  .infra-proof { grid-template-columns: 1fr; margin-top: 32px; }
  .infra-proof article { min-height: 0; padding: 16px 0 17px; }
  .infra-proof article + article { padding-left: 0; border-top: 1px solid #cbdcdf; border-left: 0; }
  .infra-proof h3 { margin-top: 8px; }
  .infra-proof p { margin-top: 4px; }
  .apply-section { min-height: 580px; }
  .apply-shell { min-height: 520px; }
  .apply-copy { padding: 28px 8px 32px; }
  .apply-copy h2 { font-size: clamp(1.7rem, 7vw, 2rem); }
  .apply-steps li { grid-template-columns: 36px 1fr; gap: 10px; padding-block: 15px; }
  .apply-background {
    object-position: 32% 40%;
    transform: scale(1.1);
    transform-origin: 34% 42%;
  }
  .support-section { padding-block: 48px; }
  .support-panel { min-height: 0; padding: 36px 25px; }
  .support-actions { width: 100%; flex-direction: column; }
  .support-actions a { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .fee-board table { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
  .fee-board thead, .fee-board tbody, .fee-board tr { display: contents; }
  .fee-board th, .fee-board td { width: auto; min-width: 0; padding: 16px 12px; }
  .fee-board thead th:first-child { grid-column: 1; grid-row: 1; width: auto; text-align: left; font-size: 11px; }
  .fee-board tbody th { grid-column: 2; grid-row: 1; width: auto; text-align: right; font-size: 11px; white-space: nowrap; word-break: keep-all; }
  .fee-board thead th:nth-child(2) { grid-column: 1; grid-row: 2; }
  .fee-board thead th:nth-child(3) { grid-column: 1; grid-row: 3; }
  .fee-board thead th:nth-child(4) { grid-column: 1; grid-row: 4; }
  .fee-board tbody td:nth-child(2) { grid-column: 2; grid-row: 2; }
  .fee-board tbody td:nth-child(3) { grid-column: 2; grid-row: 3; }
  .fee-board tbody td:nth-child(4) { grid-column: 2; grid-row: 4; }
  .fee-board thead th:nth-child(n+2) { color: var(--ink); font-size: 14px; text-align: left; }
  .fee-board thead th em { display: inline-block; margin: 0 0 0 5px; vertical-align: 1px; }
  .fee-board tbody td { font-size: 1.4rem; text-align: right; }
}

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

/* Service-detail hero: full-bleed 16:9 background */
.benefits-hero {
  position: relative;
  min-height: clamp(520px, 39vw, 560px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #071f43;
}
.benefits-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,28,67,.96) 0%, rgba(4,28,67,.88) 34%, rgba(4,28,67,.62) 51%, rgba(4,28,67,.16) 72%, rgba(4,28,67,.04) 100%),
    linear-gradient(0deg, rgba(4,28,67,.2), transparent 48%);
  pointer-events: none;
}
.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
.hero-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(620px, 54%);
  padding: 72px 0 76px;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a7eee0;
}
.hero-copy .eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--mint);
}
.hero-copy h1 {
  max-width: none;
  margin-top: 20px;
  color: var(--paper);
  font-size: clamp(3.35rem, 5vw, 4.25rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -.065em;
}
.hero-statement {
  max-width: 590px;
  margin-top: 28px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2.15vw, 1.85rem);
  font-weight: 720;
  line-height: 1.42;
  letter-spacing: -.04em;
  word-break: keep-all;
  text-wrap: balance;
}
.hero-lead {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

@media (max-width: 1040px) {
  .benefits-hero {
    min-height: 500px;
    padding-bottom: 0;
    background: #071f43;
  }
  .hero-background { object-position: 56% center; }
  .hero-shell {
    min-height: inherit;
    display: flex;
    grid-template-columns: none;
  }
  .hero-copy {
    width: min(590px, 62%);
    padding: 64px 0;
  }
  .hero-copy h1 { max-width: none; }
}

@media (max-width: 760px) {
  .benefits-hero {
    min-height: 500px;
    padding-bottom: 0;
  }
  .benefits-hero::before {
    background:
      linear-gradient(90deg, rgba(4,28,67,.9) 0%, rgba(4,28,67,.74) 100%),
      linear-gradient(0deg, rgba(4,28,67,.72) 0%, rgba(4,28,67,.08) 76%);
  }
  .hero-background { object-position: 68% center; }
  .hero-shell {
    min-height: 500px;
    align-items: flex-end;
  }
  .hero-copy {
    width: 100%;
    max-width: 560px;
    padding: 52px 0 58px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: .13em;
  }
  .hero-copy .eyebrow::before { width: 24px; }
  .hero-copy h1 {
    max-width: none;
    margin-top: 17px;
    font-size: clamp(2.7rem, 13vw, 3.4rem);
    line-height: 1.06;
  }
  .hero-statement {
    margin-top: 24px;
    font-size: clamp(1.3rem, 6.2vw, 1.55rem);
  }
  .hero-lead {
    margin-top: 17px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.68;
  }
  .hero-lead br { display: none; }
}

@media (max-width: 420px) {
  .hero-background { object-position: 71% center; }
  .hero-copy { padding-bottom: 50px; }
  .hero-statement { font-size: 1.28rem; }
}
