:root {
  --ink: #071722;
  --ink-soft: #18303e;
  --paper: #f3f1e9;
  --paper-2: #e7e4d8;
  --white: #fffef9;
  --blue: #1f62ff;
  --signal: #c8ff38;
  --line: rgba(7, 23, 34, 0.16);
  --max: 1440px;
  --pad: clamp(22px, 4vw, 68px);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", Avenir, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 8px; top: -50px; z-index: 99; padding: 10px 14px; background: var(--signal); }
.skip-link:focus { top: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  min-height: 82px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  background: rgba(7, 23, 34, .94);
  backdrop-filter: blur(16px);
  transition: min-height .3s ease;
}
.site-header.compact { min-height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; color: inherit; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; fill: var(--signal); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 19px; letter-spacing: .08em; }
.brand small { margin-top: 4px; font-family: var(--mono); font-size: 8px; letter-spacing: .3em; opacity: .65; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; text-decoration: none; font-size: 13px; letter-spacing: .03em; opacity: .7; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--signal); transition: right .25s ease; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.language-switch { display: inline-flex; gap: 8px; text-decoration: none; font-size: 12px; letter-spacing: .04em; opacity: .82; }
.language-switch:hover { opacity: 1; }
.header-cta { padding: 13px 17px; color: var(--ink); background: var(--signal); text-decoration: none; font-size: 12px; font-weight: 700; }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 82px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 9vw 9vw; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero-copy { position: relative; z-index: 2; padding: clamp(80px, 10vw, 150px) var(--pad) 58px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow, .section-kicker { margin: 0 0 28px; display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 10px; line-height: 1.3; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; background: var(--signal); }
.hero h1 { max-width: 800px; margin: 0; font-family: var(--display); font-size: clamp(68px, 7vw, 124px); font-weight: 400; letter-spacing: -.06em; line-height: .83; }
html[data-language="ko"] .hero h1 { font-size: clamp(55px, 6vw, 104px); letter-spacing: -.07em; line-height: .94; }
.hero h1 em { color: var(--signal); font-weight: 400; }
.hero-lede { max-width: 620px; margin: 38px 0 0; color: rgba(255,255,255,.75); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.7; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 36px; min-height: 56px; padding: 0 24px; border: 0; border-radius: 0; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--signal); }
.button-primary:hover { background: #dcff84; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 13px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 5px; }
.text-link:hover { color: var(--white); border-color: var(--signal); }
.text-link.dark { margin-top: 32px; color: var(--ink); border-color: var(--line); }
.hero-stats { width: 100%; margin: auto 0 0; padding: 45px 0 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.hero-stats li { display: grid; gap: 7px; }
.hero-stats strong { font-family: var(--display); font-size: 28px; font-weight: 400; }
.hero-stats span { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .52; }

.film-stage { position: relative; min-height: 650px; overflow: hidden; border-left: 1px solid rgba(255,255,255,.18); background: #0b2230; perspective: 1000px; }
.film-stage::before { content: ""; position: absolute; width: 420px; height: 420px; left: 50%; top: 44%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--blue); filter: blur(120px); opacity: .45; }
.film-stage::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(119deg, transparent 0 63px, rgba(255,255,255,.045) 64px 65px); }
.film-orbit { position: absolute; left: 50%; top: 43%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translate(-50%,-50%) rotateX(68deg); }
.orbit-one { width: 620px; height: 620px; }
.orbit-two { width: 420px; height: 420px; border-color: rgba(200,255,56,.25); }
.film-roll { position: absolute; z-index: 2; left: 50%; top: 46%; width: 390px; height: 390px; transform: translate(-50%,-50%) rotate(-12deg); }
.roll-core { position: absolute; z-index: 4; width: 220px; height: 220px; left: 85px; top: 84px; border: 58px solid rgba(222,235,239,.84); border-radius: 50%; box-shadow: 0 40px 80px rgba(0,0,0,.4), inset 0 0 0 2px rgba(255,255,255,.5); }
.roll-core::after { content: ""; position: absolute; inset: -38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.48); box-shadow: 0 0 0 12px rgba(255,255,255,.04), 0 0 0 24px rgba(255,255,255,.03); }
.roll-sheet { position: absolute; right: -150px; top: 167px; width: 320px; height: 62px; transform-origin: left center; clip-path: polygon(0 0, 100% 17%, 100% 83%, 0 100%); border-right: 1px solid rgba(255,255,255,.45); }
.sheet-one { z-index: 3; background: rgba(221,237,255,.8); transform: rotate(-3deg) translateY(-18px); }
.sheet-two { z-index: 2; background: rgba(31,98,255,.58); transform: rotate(2deg); }
.sheet-three { z-index: 1; background: rgba(200,255,56,.55); transform: rotate(7deg) translateY(22px); }
.film-labels { position: absolute; z-index: 5; left: 9%; right: 9%; bottom: 13%; display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .16em; }
.film-labels i { flex: 1; height: 1px; background: rgba(255,255,255,.2); }
.film-caption { position: absolute; z-index: 5; top: 11%; right: 9%; display: grid; grid-template-columns: auto auto; align-items: start; }
.film-caption strong { font-family: var(--display); font-size: 66px; line-height: .8; font-weight: 400; }
.film-caption > span { color: var(--signal); font-family: var(--mono); }
.film-caption small { grid-column: 1 / -1; margin-top: 10px; font-family: var(--mono); font-size: 8px; line-height: 1.5; letter-spacing: .18em; opacity: .5; }

.signal-band { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr .8fr; gap: 60px; padding: 70px var(--pad); border-bottom: 1px solid var(--line); }
.signal-band h2 { max-width: 450px; margin: 0; font-family: var(--display); font-size: clamp(33px, 3vw, 50px); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.signal-copy { margin: 35px 0 0; color: var(--ink-soft); line-height: 1.8; }
.signal-list { margin: 35px 0 0; padding: 0; list-style: none; }
.signal-list li { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 10vw, 160px) var(--pad); }
.section-heading { display: grid; grid-template-columns: .65fr 1.6fr 1fr; gap: 40px; align-items: start; margin-bottom: 70px; }
.section-heading .section-kicker { margin-top: 12px; }
.section-heading h2, .process-intro h2, .trust h2, .inquiry h2, .legal-main h1 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 78px); font-weight: 400; line-height: 1; letter-spacing: -.055em; }
html[data-language="ko"] .section-heading h2, html[data-language="ko"] .process-intro h2, html[data-language="ko"] .trust h2, html[data-language="ko"] .inquiry h2 { line-height: 1.12; }
.section-heading > p:last-child { margin: 10px 0 0; color: #53626b; line-height: 1.8; }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.quality-card { min-height: 360px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease, color .3s ease; }
.quality-card:hover { color: var(--white); background: var(--ink); }
.quality-no { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.quality-card h3 { max-width: 430px; margin: auto 0 18px; font-family: var(--display); font-size: clamp(31px, 3vw, 48px); font-weight: 400; line-height: 1.05; }
.quality-card p { max-width: 560px; margin: 0; line-height: 1.65; color: #5a6870; }
.quality-card:hover p { color: rgba(255,255,255,.65); }
.quality-ask { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 9px; line-height: 1.5; letter-spacing: .07em; text-transform: uppercase; }
.quality-card:hover .quality-ask { border-color: rgba(255,255,255,.2); color: var(--signal); }

.applications { max-width: none; color: var(--white); background: var(--blue); }
.applications > * { max-width: calc(var(--max) - 2 * var(--pad)); margin-left: auto; margin-right: auto; }
.section-heading.inverse { grid-template-columns: .65fr 1.6fr .7fr; }
.section-heading.inverse .section-kicker { color: rgba(255,255,255,.65); }
.applications-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.55); }
.application-card { min-height: 210px; padding: 28px 0; display: grid; grid-template-columns: 60px 1fr 40px; gap: 24px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.32); }
.application-card:nth-child(odd) { padding-right: 44px; }
.application-card:nth-child(even) { padding-left: 44px; border-left: 1px solid rgba(255,255,255,.32); }
.app-index { align-self: start; font-family: var(--mono); font-size: 10px; }
.application-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(29px, 2.5vw, 42px); font-weight: 400; }
.application-card p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.65; }
.application-card svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 1; transition: transform .25s ease; }
.application-card:hover svg { transform: translateX(6px); }

.process { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-line { position: relative; height: 1px; margin-top: 70px; background: var(--line); }
.process-line i { position: absolute; width: 18%; height: 3px; top: -1px; background: var(--blue); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-list li { padding: 34px 0; display: grid; grid-template-columns: 64px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.process-list li > span { font-family: var(--mono); font-size: 10px; }
.process-list h3 { margin: 0 0 9px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.process-list p { margin: 0; color: #5d6971; line-height: 1.65; }

.trust { max-width: none; min-height: 760px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--signal); }
.trust-panel { padding: clamp(80px, 8vw, 130px) var(--pad); }
.trust-monogram { margin-bottom: 80px; font-family: var(--display); font-size: 34px; }
.trust-monogram span { color: var(--blue); }
.trust-copy { max-width: 720px; margin: 32px 0 0; color: #324039; line-height: 1.8; }
.trust-list { max-width: 680px; margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(7,23,34,.3); }
.trust-list li { padding: 20px 0; display: grid; grid-template-columns: 36px 1fr; border-bottom: 1px solid rgba(7,23,34,.3); }
.trust-check { width: 21px; height: 21px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 11px; }
.trust-list strong { font-size: 14px; }
.trust-list p { margin: 6px 0 0; color: #425047; font-size: 13px; }
.trust-specimen { position: relative; overflow: hidden; padding: 60px; color: var(--white); background: var(--ink); }
.trust-specimen::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; }
.specimen-top { position: relative; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .15em; }
.specimen-window { position: relative; width: min(430px, 72%); aspect-ratio: 1; margin: 90px auto 70px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; display: grid; place-items: center; }
.specimen-window::before { content: ""; width: 48%; height: 48%; border: 34px solid rgba(220,235,242,.72); border-radius: 50%; box-shadow: 0 0 80px rgba(31,98,255,.7); }
.specimen-window i { position: absolute; inset: 12%; border-radius: 50%; border: 1px solid rgba(200,255,56,.35); }
.specimen-window i:nth-child(2) { inset: 21%; }
.specimen-window i:nth-child(3) { inset: 31%; }
.specimen-axis { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; font-family: var(--mono); font-size: 9px; }
.specimen-axis b { height: 1px; background: rgba(255,255,255,.28); }
.specimen-data { position: relative; margin-top: 30px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 8px; color: rgba(255,255,255,.44); }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.faq .section-heading { display: block; margin: 0; }
.faq .section-heading h2 { max-width: 520px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 24px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--body); font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 55px 28px 0; color: #53626b; line-height: 1.7; }

.inquiry { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 9vw, 140px) var(--pad); display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 8vw, 130px); color: var(--white); background: var(--ink); }
.inquiry-copy > p:not(.section-kicker) { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.direct-contact { margin-top: 70px; display: grid; gap: 8px; }
.direct-contact span { margin-bottom: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; opacity: .45; }
.direct-contact a { width: fit-content; color: var(--signal); text-decoration: none; }
.lead-form { padding: clamp(28px, 4vw, 54px); color: var(--ink); background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 20px; }
.form-grid label { display: grid; gap: 9px; }
.form-grid label > span { font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 46px; padding: 11px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #aeb4b0; border-radius: 0; outline: none; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.form-grid [aria-invalid="true"] { border-color: #c83232; }
.form-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.cf-turnstile { margin-top: 24px; }
.consent { margin-top: 28px; display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #59646a; font-size: 11px; line-height: 1.6; }
.consent input { margin: 2px 0 0; accent-color: var(--blue); }
.consent a { color: var(--ink); }
.form-footer { margin-top: 26px; display: flex; align-items: center; gap: 22px; }
.button-submit { min-width: 210px; justify-content: space-between; color: var(--white); background: var(--blue); }
.button-submit:hover { background: #154bd0; }
.button-submit[disabled] { opacity: .55; cursor: wait; transform: none; }
.form-footer small { color: #6b7478; line-height: 1.5; }
.form-status { margin-top: 22px; padding: 18px; border-left: 3px solid var(--blue); background: #eef3ff; line-height: 1.5; }
.form-status.success { border-color: #2e7937; background: #eef8ed; }
.form-status.error { border-color: #bd3030; background: #fff0ee; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 45px var(--pad) 110px; display: grid; grid-template-columns: .8fr 1.3fr auto; gap: 35px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.65); background: var(--ink); font-size: 11px; }
.footer-brand { display: grid; gap: 8px; }
.footer-brand strong { color: var(--white); font-size: 18px; letter-spacing: .08em; }
.footer-brand span, .footer-meta { line-height: 1.7; }
.footer-meta { display: grid; }
.site-footer > a { color: var(--white); }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

.legal-page { min-height: 100vh; color: var(--ink); background: var(--paper); }
.legal-page .site-header { position: static; }
.legal-main { max-width: 900px; margin: 0 auto; padding: 100px var(--pad) 130px; }
.legal-main h1 { margin-bottom: 28px; }
.legal-intro { padding: 20px; border-left: 3px solid var(--blue); background: var(--white); line-height: 1.7; }
.legal-main section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-main section h2 { margin: 0 0 12px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.legal-main section p { margin: 0; color: #4d5c64; line-height: 1.8; }
.legal-contact { margin: 35px 0; display: grid; gap: 8px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr .85fr; }
  .film-roll { transform: translate(-50%,-50%) rotate(-12deg) scale(.82); }
  .signal-band { grid-template-columns: 1fr 1fr; }
  .signal-list { grid-column: 2; }
  .section-heading { grid-template-columns: .45fr 1.5fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .process { gap: 6vw; }
}

@media (max-width: 760px) {
  :root { --pad: 21px; }
  body { padding-bottom: 62px; }
  .site-header { min-height: 68px; }
  .header-cta { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { min-height: auto; display: block; }
  .hero-copy { min-height: 650px; padding-top: 80px; }
  .hero h1 { font-size: clamp(55px, 17vw, 79px); }
  html[data-language="ko"] .hero h1 { font-size: clamp(45px, 12vw, 65px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-stats { margin-top: 75px; }
  .hero-stats strong { font-size: 23px; }
  .film-stage { min-height: 500px; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .film-roll { transform: translate(-50%,-50%) rotate(-12deg) scale(.75); }
  .film-caption { right: 7%; }
  .film-labels { left: 7%; right: 7%; }
  .signal-band { display: block; padding-top: 62px; padding-bottom: 62px; }
  .signal-copy, .signal-list { margin-top: 35px; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading h2, .process-intro h2, .trust h2, .inquiry h2 { font-size: clamp(42px, 13vw, 58px); }
  .section-heading > p:last-child { margin-top: 24px; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-card { min-height: 330px; }
  .applications-grid { display: block; }
  .application-card:nth-child(n) { padding: 28px 0; border-left: 0; }
  .process { display: block; }
  .process-intro { position: static; margin-bottom: 55px; }
  .trust { display: block; }
  .trust-monogram { margin-bottom: 55px; }
  .trust-specimen { min-height: 620px; padding: 35px 22px; }
  .specimen-window { width: 85%; }
  .faq { display: block; }
  .faq-list { margin-top: 55px; }
  .inquiry { display: block; }
  .direct-contact { margin-top: 45px; }
  .lead-form { margin-top: 55px; padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .button-submit { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 55px; }
  .mobile-cta { position: fixed; z-index: 14; left: 0; right: 0; bottom: 0; height: 62px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--signal); text-decoration: none; font-weight: 800; }
}
