:root {
  --blue-900: #0b2e5f;
  --blue-800: #113f7d;
  --blue-700: #1455b8;
  --blue-600: #1d67d7;
  --blue-500: #2f80ed;
  --blue-100: #eaf3ff;
  --sky-100: #f4f9ff;
  --ink: #102033;
  --muted: #5d7188;
  --gold: #e4a72c;
  --coral: #e14f42;
  --line: #d7e5f7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(21, 86, 171, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(47, 128, 237, .08), transparent 34%),
    linear-gradient(280deg, rgba(29, 103, 215, .08), transparent 42%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(215, 229, 247, .8);
  backdrop-filter: blur(16px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 12px 30px rgba(16, 32, 51, .08);
}

.brand {
  display: flex;
  align-items: center;
  width: 178px;
  min-width: 178px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #304863;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--blue-700);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(20, 85, 184, .24);
}

.secondary-button {
  color: var(--blue-800);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(760px, calc(100svh - 126px));
  padding: clamp(44px, 6vw, 88px) clamp(20px, 5vw, 72px) 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 36px 0 0;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.trust-row dt {
  color: var(--blue-700);
  font-weight: 900;
}

.trust-row dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  max-width: 340px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(11, 46, 95, .9);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, .2);
}

.hero-card strong {
  font-size: 20px;
}

.hero-card span {
  color: #cfe4ff;
  font-size: 14px;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) 72px;
}

.quick-panel article,
.compare-cards article,
.proof-grid article,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(29, 103, 215, .08);
}

.quick-panel article {
  padding: 24px;
}

.quick-panel span,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
  background: var(--blue-100);
  border-radius: 8px;
}

.quick-panel h2 {
  margin-top: 16px;
  font-size: 22px;
}

.quick-panel p,
.compare-cards p,
.purchase-note,
.proof-grid p,
.process-list p,
.section-heading p,
.media-copy p,
.contact-section p,
.faq-list p {
  color: var(--muted);
}

.marquee-section {
  display: grid;
  gap: 20px;
  padding: 58px clamp(20px, 5vw, 72px) 68px;
  background: var(--sky-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-intro {
  max-width: 760px;
  margin-bottom: 14px;
}

.marquee-intro h2 {
  font-size: clamp(27px, 3vw, 40px);
}

.marquee-intro > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.marquee-row {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.marquee-row > strong {
  color: var(--blue-900);
  font-size: 15px;
}

.marquee-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.marquee-window::before,
.marquee-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 64px;
  pointer-events: none;
}

.marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--sky-100), transparent);
}

.marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--sky-100), transparent);
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: brand-roll 36s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 40s;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 23px;
  color: #283c55;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes brand-roll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 18px;
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.compare-visual {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.compare-cards {
  display: grid;
  gap: 16px;
}

.compare-cards article {
  padding: 24px;
}

.compare-cards ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compare-cards li {
  position: relative;
  padding-left: 20px;
  color: #304863;
}

.compare-cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  background: var(--blue-600);
  border-radius: 999px;
}

.purchase-note {
  margin: 0;
  padding: 18px 20px;
  font-size: 15px;
  background: var(--sky-100);
  border-left: 3px solid var(--blue-600);
}

.purchase-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.blue-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 32px;
  align-items: end;
  margin: 20px clamp(20px, 5vw, 72px);
  padding: clamp(32px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 12px;
}

.blue-band .eyebrow,
.blue-band p {
  color: #dbeafe;
}

.blue-band p {
  margin: 0;
  font-size: 18px;
}

.greeting-section {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: var(--sky-100);
}

.greeting-photo {
  width: min(100%, 478px);
  justify-self: center;
}

.greeting-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.greeting-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(29px, 3.3vw, 46px);
}

.greeting-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.signature {
  display: grid;
  gap: 5px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.signature span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
}

.signature strong {
  font-size: 21px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
}

.process-list h3 {
  margin-top: 20px;
}

.reviews-section {
  background: #fff;
}

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

.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px;
  color: var(--muted);
  font-weight: 800;
  background:
    linear-gradient(130deg, rgba(20, 85, 184, .07), rgba(11, 46, 95, .03)),
    repeating-linear-gradient(-45deg, #f7faff, #f7faff 14px, #f1f6fd 14px, #f1f6fd 28px);
}

.review-placeholder::before {
  content: "";
  width: 44px;
  height: 34px;
  margin-bottom: 42px;
  border: 2px solid #b5c9e1;
  border-radius: 6px;
}

.review-placeholder span {
  position: absolute;
  top: calc(50% + 20px);
}

.review-card > p,
.review-card h3 {
  margin-left: 22px;
  margin-right: 22px;
}

.review-card .review-stars {
  margin-top: 19px;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 19px;
}

.review-card h3 {
  font-size: 19px;
}

.review-card h3 + p {
  margin-top: 10px;
  margin-bottom: 25px;
  color: var(--muted);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: center;
  background: var(--sky-100);
}

.media-copy p {
  font-size: 18px;
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.video-card {
  display: block;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.video-card span {
  display: block;
  padding: 18px 8px 4px;
  color: var(--blue-800);
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.location-section {
  background: var(--sky-100);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, .9fr);
  gap: 22px;
}

.building-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 7px;
  min-height: 432px;
  padding: 34px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(7, 29, 61, .72), rgba(7, 29, 61, .08) 64%),
    linear-gradient(115deg, #bed5ed, #e5f0fb 45%, #91b7d9);
}

.building-placeholder strong {
  font-size: 24px;
}

.building-placeholder span {
  color: #d7e8fb;
}

.map-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.naver-map {
  width: 100%;
  min-height: 205px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #eaf0f3;
  border-radius: 6px;
}

.map-status {
  margin: -8px 0 18px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 13px;
  background: var(--sky-100);
  border-radius: 6px;
}

.map-panel address {
  margin: 12px 0 22px;
  color: var(--muted);
  font-style: normal;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr);
  gap: 42px;
  align-items: start;
  margin: 0 clamp(20px, 5vw, 72px) 88px;
  padding: clamp(32px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #304863;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.contact-form button {
  min-height: 50px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  background: var(--blue-700);
  border: 0;
  border-radius: 8px;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #071d3d;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: #bdd7f6;
}

.site-footer .small {
  color: #8fb2d9;
  font-size: 13px;
}

.mobile-contact-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .compare-layout,
  .media-section,
  .contact-section,
  .blue-band,
  .greeting-section,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quick-panel,
  .process-list,
  .proof-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marquee-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    height: auto;
    min-height: 70px;
    padding: 14px 18px;
  }

  .brand {
    width: 146px;
    min-width: 146px;
  }

  .header-cta {
    padding: 0 14px;
    min-height: 40px;
    font-size: 14px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-row,
  .quick-panel,
  .process-list,
  .proof-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .contact-section,
  .blue-band {
    margin-left: 18px;
    margin-right: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .marquee-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .marquee-window::before,
  .marquee-window::after {
    width: 36px;
  }

  .greeting-photo {
    width: 100%;
  }

  .building-placeholder {
    min-height: 310px;
    padding: 24px;
  }

  .map-actions a {
    flex: 1;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 62px;
    color: #fff;
    background: var(--blue-900);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    font-weight: 900;
  }

  .mobile-contact-bar a:first-child {
    background: var(--blue-700);
  }
}

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

  .marquee-track {
    animation-play-state: paused;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Refined marketing homepage */
body {
  line-height: 1.65;
}

.main-nav {
  font-size: 16px;
  gap: 27px;
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  height: clamp(540px, calc(100svh - 78px), 590px);
  min-height: 0;
  overflow: hidden;
  padding-top: clamp(38px, 4vw, 52px);
  padding-bottom: clamp(38px, 4vw, 52px);
  background: var(--blue-900);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 50, .86) 0%, rgba(7, 26, 50, .74) 32%, rgba(7, 26, 50, .18) 62%, rgba(7, 26, 50, .04) 100%);
}

.hero-slide {
  opacity: 0;
  transition: opacity .85s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-showcase .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
  color: #fff;
}

.hero-showcase .eyebrow {
  color: #8ec8ff;
  font-size: 15px;
}

.hero-showcase h1 {
  font-size: clamp(43px, 4.2vw, 60px);
  line-height: 1.12;
}

.hero-showcase .hero-lead {
  max-width: 560px;
  color: #e2eaf5;
  font-size: clamp(17px, 1.3vw, 19px);
}

.hero-showcase .secondary-button {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .48);
}

.hero-models {
  display: flex;
  gap: 10px;
  margin-top: 27px;
}

.hero-model-button {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 12px 15px;
  color: rgba(255, 255, 255, .7);
  text-align: left;
  font: inherit;
  background: rgba(5, 20, 40, .35);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  cursor: pointer;
}

.hero-model-button strong {
  font-size: 13px;
}

.hero-model-button span {
  font-size: 18px;
  font-weight: 800;
}

.hero-model-button.is-active {
  color: #fff;
  background: rgba(20, 85, 184, .82);
  border-color: #6fb4ff;
}

.quick-panel {
  padding-top: 44px;
}

.quick-panel article {
  padding: 29px 28px;
}

.quick-panel h2 {
  font-size: 25px;
}

.quick-panel p {
  font-size: 17px;
}

.reason-section {
  padding: 68px clamp(20px, 5vw, 72px) 72px;
}

.reason-section .section-heading {
  margin-bottom: 32px;
}

.reason-section .quick-panel {
  padding: 0;
}

.marquee-section,
.marquee-row.logo-only,
.marquee-row.logo-only .marquee-window {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.section-heading {
  max-width: 900px;
}

.section-heading p {
  font-size: clamp(18px, 1.55vw, 21px);
}

.marquee-intro {
  max-width: 900px;
}

.marquee-intro > p:last-child {
  font-size: 19px;
}

.marquee-row > strong {
  font-size: 17px;
}

.marquee-row.logo-only {
  display: block;
}

.marquee-row.logo-only .marquee-window {
  width: 100%;
}

.logo-track {
  gap: 13px;
}

.logo-track img {
  width: 150px;
  height: 76px;
  padding: 18px 25px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.finance-track img {
  width: 196px;
  padding: 16px 21px;
}

.logo-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.compare-layout {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.compare-photo {
  height: 655px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

#compare {
  padding-bottom: 46px;
}

#compare + .blue-band {
  margin-top: 0;
  margin-bottom: 0;
}

.compare-cards article {
  padding: 30px;
}

.compare-cards h3 {
  font-size: 27px;
}

.compare-cards p,
.compare-cards li {
  font-size: 18px;
}

.purchase-note {
  padding: 22px 24px;
  font-size: 17px;
}

.blue-band h2 {
  font-size: clamp(31px, 3.2vw, 47px);
}

.blue-band p {
  font-size: 20px;
}

.greeting-copy {
  max-width: 730px;
}

.greeting-section {
  padding-top: 62px;
}

.greeting-copy h2 {
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.23;
}

.greeting-copy > p:not(.eyebrow) {
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.82;
}

.greeting-copy .greeting-lead {
  color: var(--ink);
  font-weight: 700;
}

.process-list {
  gap: 18px;
}

.process-list li {
  overflow: hidden;
  padding: 0 0 27px;
}

.process-list li > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.process-list li:nth-child(1) > img {
  object-position: 62% center;
}

.process-list span {
  margin: -20px 0 0 22px;
  position: relative;
  box-shadow: 0 6px 14px rgba(20, 85, 184, .16);
}

.process-list h3,
.process-list p {
  margin-left: 22px;
  margin-right: 22px;
}

.process-list h3 {
  margin-top: 17px;
  font-size: 24px;
}

.process-list p {
  font-size: 16px;
}

.review-marquee {
  overflow: hidden;
  margin-left: calc(-1 * clamp(20px, 5vw, 72px));
  margin-right: calc(-1 * clamp(20px, 5vw, 72px));
  padding: 0 0 8px;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: review-roll 42s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 clamp(295px, 29vw, 390px);
  box-shadow: 0 12px 30px rgba(29, 103, 215, .07);
}

.review-card > img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.review-card .review-stars {
  font-size: 22px;
}

.review-card h3 {
  font-size: 22px;
}

.review-card h3 + p {
  font-size: 17px;
}

@keyframes review-roll {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.media-copy h2 {
  font-size: clamp(37px, 3.6vw, 52px);
}

.media-copy p {
  font-size: 21px;
}

.video-card.video-embed {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.building-photo {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
}

.building-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.building-photo div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(0deg, rgba(7, 29, 61, .82), transparent);
}

.building-photo strong {
  font-size: 27px;
}

.building-photo span,
.map-panel address {
  font-size: 18px;
}

.map-panel h3 {
  font-size: 26px;
}

.contact-section h2 {
  font-size: clamp(34px, 3vw, 47px);
}

.contact-section > div > p:last-child {
  font-size: 20px;
}

.contact-form label {
  font-size: 16px;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  font-size: 16px;
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 56px;
  font-size: 18px;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: .48;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-form .privacy-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
  font-size: 14px;
}

.contact-form .privacy-consent input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blue-700);
}

.contact-form .privacy-consent small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form .privacy-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-left: 8px;
  padding: 0 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  background: var(--blue-700);
  border: 1px solid var(--blue-700);
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .privacy-open:hover {
  background: var(--blue-800);
  border-color: var(--blue-800);
}

.privacy-dialog {
  width: min(560px, calc(100vw - 36px));
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(9, 27, 52, .28);
}

.privacy-dialog::backdrop {
  background: rgba(7, 22, 42, .56);
}

.privacy-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-dialog-head h3 {
  font-size: 21px;
}

.privacy-close {
  width: 36px;
  height: 36px;
  padding: 0;
  color: #597087;
  font-size: 29px;
  line-height: 1;
  background: #f4f7fb;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.privacy-dialog-body {
  padding: 22px 24px 18px;
}

.privacy-dialog-body > p:first-child {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 16px;
}

.privacy-dialog-body dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.privacy-dialog-body dt {
  margin-top: 11px;
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 900;
}

.privacy-dialog-body dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.privacy-dialog-body .privacy-caution {
  margin: 22px 0 0;
  padding: 13px 14px;
  color: #42576f;
  font-size: 13px;
  background: var(--sky-100);
  border-radius: 8px;
}

.privacy-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 24px 24px;
}

.privacy-dialog-actions button {
  min-height: 46px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
}

.privacy-decline {
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--line);
}

.privacy-agree {
  color: #fff;
  background: var(--blue-700);
  border: 1px solid var(--blue-700);
}

.contact-form .form-note {
  grid-column: 1 / -1;
}

.site-footer {
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-info strong {
  font-size: 25px;
}

.site-footer p {
  font-size: 16px;
}

@media (max-width: 980px) {
  .compare-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    display: flex;
    height: clamp(540px, calc(100svh - 70px), 590px);
    min-height: 0;
  }

  .hero-slides::after {
    background: linear-gradient(0deg, rgba(7, 26, 50, .9), rgba(7, 26, 50, .22) 75%);
  }

  .hero-showcase .hero-copy {
    align-self: center;
  }

  .hero-slide img {
    object-position: 60% center;
  }

  .compare-photo {
    height: 460px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .site-header {
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    width: 136px;
    min-width: 136px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .reason-section {
    padding: 50px 18px 54px;
  }

  .marquee-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .compare-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    display: block;
    height: auto;
    min-height: 0;
    padding-top: 318px;
    padding-bottom: 28px;
    background: #081b35;
  }

  .hero-slides {
    bottom: auto;
    height: 300px;
  }

  .hero-slides::after {
    background: linear-gradient(0deg, #081b35 0%, rgba(8, 27, 53, .32) 34%, rgba(8, 27, 53, .06) 100%);
  }

  .hero-slide img {
    object-position: right center;
  }

  .hero-showcase h1 {
    font-size: 38px;
  }

  .hero-showcase .hero-lead {
    font-size: 17px;
  }

  .hero-models {
    margin-top: 25px;
  }

  .hero-model-button {
    min-width: 0;
    min-height: 70px;
    flex: 1;
    padding: 12px;
  }

  .hero-model-button strong {
    font-size: 10px;
  }

  .hero-model-button span {
    font-size: 15px;
  }

  .compare-photo {
    height: 360px;
  }

  #compare {
    padding-bottom: 28px;
  }

  #compare + .blue-band {
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px 20px;
    border-radius: 8px;
  }

  .greeting-section {
    gap: 26px;
    padding-top: 40px;
  }

  .greeting-copy h2 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .greeting-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.68;
  }

  .process-list li > img {
    height: 212px;
  }

  .review-marquee {
    margin-left: -18px;
    margin-right: -18px;
  }

  .review-card {
    flex-basis: 290px;
  }

  .building-photo,
  .building-photo img {
    min-height: 285px;
  }

  .media-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .media-actions a {
    width: 100%;
  }

  .contact-section {
    gap: 25px;
    margin-right: 12px;
    margin-bottom: 78px;
    margin-left: 12px;
    padding: 26px 18px;
    border-radius: 8px;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .privacy-consent span {
    display: grid;
    gap: 8px;
  }

  .contact-form .privacy-open {
    width: fit-content;
    margin-left: 0;
  }

  .privacy-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy-agree {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .review-track {
    animation-play-state: paused;
  }
}
