:root {
  --bg: #f7f8fb;
  --bg-soft: #eef1f7;
  --panel: #ffffff;
  --ink: #141820;
  --muted: #5c6578;
  --line: rgba(20, 24, 32, 0.1);
  --gold: #e11d2e;
  --gold-2: #b01020;
  --hot: #e11d2e;
  --hot-2: #b01020;
  --forest: #e11d2e;
  --forest-soft: rgba(225, 29, 46, 0.08);
  --danger: #c4473b;
  --radius: 16px;
  --font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --display: "Black Han Sans", "Noto Sans KR", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

/* —— Topbar —— */
.legal-top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: #fff5f5;
  border-bottom: 1px solid rgba(225, 29, 46, 0.35);
  font-size: 0.72rem;
  line-height: 1.45;
  color: #5c6578;
}
.legal-top-inner {
  padding: 6px 0;
  display: grid;
  gap: 2px;
}
.legal-top b { color: #b01020; font-weight: 800; }

.topbar {
  position: fixed;
  inset: 42px 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--hot); color: #fff; font-weight: 900; font-size: 0.95rem;
}
.logo { width: 28px; height: 28px; color: var(--hot); }

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}
.top-nav a { opacity: 0.85; }
.top-nav a:hover { opacity: 1; }

.top-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  opacity: 1 !important;
  font-weight: 800;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding-top: 96px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  transform: scale(1.08);
  object-position: center 40%;
  animation: kenburns 24s ease-out forwards;
  filter: saturate(0.95) contrast(1.02) brightness(1.05);
}

@keyframes kenburns {
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,248,251,0.35) 0%, rgba(247,248,251,0.55) 40%, rgba(247,248,251,0.92) 78%, #f7f8fb 100%),
    linear-gradient(100deg, rgba(247,248,251,0.88) 0%, rgba(247,248,251,0.45) 48%, transparent 72%);
}

.hero-glow { display: none; }

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.1);
  border: 1px solid rgba(225, 29, 46, 0.35);
  color: #b01020;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-brand {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 12em;
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #1a1f2a;
}

.hero-lead {
  margin: 0 0 16px;
  max-width: 30em;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-bullets {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #3a4356;
  font-size: 0.95rem;
}
.hero-bullets b { color: var(--ink); }

.hero-warn {
  margin: 14px 0 0;
  color: #c4473b;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-scroll { display: none; }

.urgency {
  background: linear-gradient(90deg, #e11d2e, #9a0f1c);
  padding: 14px 0;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-weight: 800;
}
.urgency p { margin: 0; font-size: 1.02rem; }

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

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #ff3b4e, var(--hot-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.35);
}
.btn-hot {
  background: linear-gradient(135deg, #ff3b4e, var(--hot-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.35);
}
.btn-hot.sm { min-height: 40px; padding: 0 16px; font-size: 0.92rem; }
.btn-line,
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20,24,32,0.18);
}
.btn-block { width: 100%; border-radius: 12px; min-height: 44px; font-size: 0.95rem; }

/* —— Sections —— */
.trust-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.strip-inner strong { color: var(--ink); font-weight: 800; }
.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--hot);
  opacity: 0.8;
}

.kw-strip {
  padding: 18px 0 8px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.kw-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.kw-inner span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 46, 0.28);
  background: rgba(225, 29, 46, 0.06);
  color: #b01020;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.product-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.products, .process { padding: 96px 0; background: var(--bg); }
.audience { padding: 96px 0; background: var(--bg-soft); }

/* Visual band — loan brokerage mood */
.viz-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 8px;
  padding: 8px 0 28px;
}
.viz-card {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a2a24;
  box-shadow: 0 18px 40px rgba(20, 36, 30, 0.12);
}
.viz-card img {
  transition: transform 7s ease;
  filter: saturate(0.95) contrast(1.03);
}
.viz-card:hover img { transform: scale(1.06); }
.viz-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 16px;
  display: grid;
  gap: 4px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(14, 28, 22, 0.78));
}
.viz-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.viz-card span {
  font-size: 0.86rem;
  opacity: 0.88;
}

.section-head { margin-bottom: 40px; max-width: 32em; }
.section-head h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}
.section-head p { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-block;
  color: var(--hot);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow.gold { color: var(--hot-2); }

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.product-list li { border-bottom: 1px solid var(--line); }
.product-list li:last-child { border-bottom: 0; }
.product-list a {
  display: grid;
  grid-template-columns: 64px 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.product-list a:hover {
  background: var(--forest-soft);
  padding-left: 26px;
}
.p-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.p-thumb img {
  transition: transform 0.5s ease;
}
.product-list a:hover .p-thumb img { transform: scale(1.08); }
.p-num {
  color: var(--hot);
  font-family: var(--display);
  font-size: 1.1rem;
}
.product-list strong {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.product-list em {
  color: var(--muted);
  font-style: normal;
  justify-self: end;
}

/* Feature split */
.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 560px;
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.feature-visual { min-height: 360px; overflow: hidden; position: relative; }
.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(255,255,255,0.55));
  pointer-events: none;
}
.feature-visual img {
  transition: transform 8s ease;
  filter: saturate(0.95) contrast(1.02) brightness(1.05);
  object-position: center 30%;
}
.feature:hover .feature-visual img { transform: scale(1.05); }
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: #fff;
  gap: 8px;
}
.feature-copy h2 {
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}
.feature-copy ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.feature-copy li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}
.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: var(--hot);
}
.feature-copy b { color: var(--ink); font-weight: 800; }
.deny {
  margin: 0 0 16px;
  color: #9a3a32;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-left: 2px solid var(--hot);
  background: #fff4f2;
}

.who-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.who-grid li {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.who-grid li:hover {
  border-color: rgba(225, 29, 46, 0.45);
  transform: translateY(-3px);
}
.who-grid small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline li {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  min-height: 210px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.04);
}
.timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--hot);
  font-family: var(--display);
  font-size: 1.2rem;
}
.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Apply */
.apply {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(225, 29, 46, 0.08), transparent 50%),
    linear-gradient(180deg, #eef1f7, #f7f8fb);
}
.apply-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
}
.apply-side h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}
.apply-side p { color: var(--muted); margin: 0 0 12px; font-size: 0.92rem; }
.apply-side ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(20, 24, 32, 0.06);
  display: grid;
  gap: 10px;
}
.panel-head { margin-bottom: 0; }
.panel-head h3 {
  margin: 0 0 2px;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.field {
  display: grid;
  gap: 5px;
  margin: 0;
  border: 0;
  padding: 0;
}
.field > span,
.field legend {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2a3344;
}
.field legend i {
  margin-left: 6px;
  font-style: normal;
  color: var(--danger);
  font-weight: 600;
  font-size: 0.72rem;
}
.field input[type="text"],
.field input[type="tel"] {
  min-height: 40px;
  border: 1px solid #d5dae6;
  border-radius: 10px;
  padding: 0 12px;
  background: #f7f8fb;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(225,29,46,0.12);
}
.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid #d5dae6;
  font-weight: 700;
  font-size: 0.86rem;
  background: #fff;
  color: #3a4356;
  transition: 0.15s ease;
}
.seg input:checked + span {
  border-color: var(--hot);
  background: rgba(225,29,46,0.08);
  color: var(--hot-2);
}
.agree {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #3a4356;
}
.text-btn {
  border: 0;
  background: none;
  color: var(--hot);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.text-btn.light { color: #c5ccd8; }
.form-msg {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}
.form-msg.error { color: var(--danger); }
.form-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer — 대부중개 필수고지 */
.site-footer {
  padding: 56px 0 100px;
  background: #1a1f2a;
  color: rgba(243,246,244,0.72);
  font-size: 0.86rem;
  border-top: 1px solid rgba(225,29,46,0.35);
}
.f-head { margin-bottom: 22px; }
.f-brand {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.8rem;
}
.f-tag { margin: 0; color: #ff8f98; font-weight: 700; }
.f-company,
.f-rate,
.f-terms {
  margin-bottom: 22px;
}
.site-footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.f-company ul,
.f-rate ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.f-company li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}
.f-company li span { color: #8b94a7; }
.f-company li b,
.f-rate li b { color: #fff; font-weight: 800; }
.f-warn-box {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(225,29,46,0.55);
  background: rgba(225,29,46,0.12);
  border-radius: 12px;
}
.f-warn-title {
  margin: 0 0 8px;
  color: #ffb3ba;
  font-weight: 900;
  font-size: 0.95rem;
}
.f-warn-box p {
  margin: 0 0 4px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.5;
}
.f-terms p {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(243,246,244,0.48);
}
.f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.f-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(243,246,244,0.35);
}

.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3b4e, #b01020);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(225,29,46,0.45);
}

/* Modal */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 32px);
}
.modal::backdrop { background: rgba(20, 36, 30, 0.45); }
.modal-box {
  width: min(560px, 100%);
  margin: auto;
  background: #fff;
  color: #14201c;
  border-radius: 18px;
  overflow: hidden;
}
.modal-box header,
.modal-box footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e5ebe8;
}
.modal-box footer {
  border-bottom: 0;
  border-top: 1px solid #e5ebe8;
  justify-content: flex-end;
}
.modal-box header h3 { margin: 0; font-size: 1.05rem; }
.modal-box header button {
  border: 0;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal-body {
  padding: 16px 18px;
  max-height: 55vh;
  overflow: auto;
  font-size: 0.92rem;
  color: #40554c;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }

@media (max-width: 960px) {
  .legal-top { font-size: 0.64rem; }
  .topbar { inset: 52px 0 auto; }
  .feature { grid-template-columns: 1fr; }
  .feature-visual { min-height: 280px; }
  .feature-visual::after { background: linear-gradient(180deg, transparent 55%, rgba(11,14,20,0.75)); }
  .timeline, .who-grid { grid-template-columns: 1fr 1fr; }
  .apply-layout { grid-template-columns: 1fr; gap: 28px; }
  .viz-band { grid-template-columns: 1fr; width: min(1180px, calc(100% - 28px)); }
  .product-list a {
    grid-template-columns: 56px 44px 1fr;
  }
  .p-thumb { width: 56px; height: 56px; border-radius: 12px; }
  .product-list em {
    grid-column: 2 / -1;
    justify-self: start;
  }
  .top-nav a:not(.top-cta) { display: none; }
  .dot { display: none; }
  .f-company li { grid-template-columns: 1fr; gap: 2px; }
  .urgency-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrap { width: min(1180px, calc(100% - 28px)); }
  .hero-content { padding-bottom: 72px; }
  .timeline, .who-grid { grid-template-columns: 1fr; }
  .panel { padding: 24px 18px; border-radius: 22px; }
  .hero-scroll { display: none; }
  .products, .process, .audience, .apply { padding: 72px 0; }
}
