:root {
  --navy-950: #15212d;
  --navy-900: #1c2b3a;
  --navy-800: #26394b;
  --navy-700: #344c62;
  --navy-100: #e9eef2;
  --gray-950: #202428;
  --gray-800: #3c4248;
  --gray-650: #5e666d;
  --gray-500: #80888f;
  --gray-300: #d6dadd;
  --gray-200: #e7e9eb;
  --gray-100: #f3f4f4;
  --warm-100: #f5f2ed;
  --warm-200: #e8e1d7;
  --white: #ffffff;
  --danger: #b64040;
  --shadow: 0 20px 60px rgba(21, 33, 45, .10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --header-h: 82px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--gray-950);
  background: var(--white);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

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

.narrow {
  width: min(1100px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--navy-300);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,h2,h3,p {margin-top: 0;}

h1,h2,h3 {
  line-height: 1.28;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

.section-lead {
  margin-inline: auto;
  max-width: 760px;
  color: var(--gray-650);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading>p {
  margin: 0 0 7px;
  color: var(--gray-650);
}

.section-heading.light,
.section-heading.light>p {
  color: rgba(255, 255, 255, .73);
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light .eyebrow {
  color: #becbd6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, .50);
}

.btn-primary:hover {
  background: var(--navy-800);
}

.btn-outline {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .9);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--navy-800);
}

.btn-sm {
  min-height: 44px;
  padding-inline: 19px;
  font-size: .92rem;
}

.btn-lg {
  min-height: 58px;
  padding-inline: 28px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(28, 43, 58, .08);
  box-shadow: 0 8px 30px rgba(21, 33, 45, .06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -.04em;
}

.brand-copy strong {
  font-size: 1.35rem;
}

.brand-copy small {
  color: var(--gray-650);
  font-size: .9rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--gray-800);
  font-size: .94rem;
  font-weight: 650;
}

.desktop-nav a:hover {
  color: var(--navy-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--navy-900);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: var(--gray-100);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10, 18, 24, .48);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(84vw, 370px);
  height: 100dvh;
  padding: 24px;
  background: #fff;
  box-shadow: -30px 0 60px rgba(0, 0, 0, .14);
  overflow-y: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-title {
  color: var(--gray-500);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gray-950);
  background: var(--gray-100);
  font-size: 1.7rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  padding: 24px 0;
}

.mobile-nav a {
  padding: 14px 2px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1.15rem;
  font-weight: 750;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
}

.hero {
  min-height: 760px;
  padding: calc(var(--header-h) + 74px) 0 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #132453 0%, #06143a 68%, #000618 100%);
  overflow: hidden;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy media"
    "cta media";
  column-gap: 72px;
  row-gap: 30px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5.4vw, 5.15rem);
  font-weight: 780;
  letter-spacing: -.06em;
}

.hero h1 span {
  color: #5acbff;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--gray-300);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 13px;
  border: 1px solid rgba(52, 76, 98, .14);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, .70);
  font-size: .86rem;
  font-weight: 700;
}

.hero-cta {
  grid-area: cta;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-contact {
  margin: 18px 0 0;
  color: var(--gray-650);
  font-size: .92rem;
}

.hero-contact strong {
  margin-left: 8px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.hero-media {
  grid-area: media;
  align-self: center;
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -30px 38% 35% -45px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(52, 76, 98, .10);
  filter: blur(2px);
}

.hero-media img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.intro-section {
  background: #fff;
}

.situation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.situation-list span {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  color: var(--gray-800);
  background: var(--gray-100);
  font-size: .94rem;
}

.services-section {
  background: var(--gray-100);
}

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

.service-photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 40px rgba(21, 33, 45, .06);
}

.service-photo-card img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.service-card-copy {
  padding: 24px 24px 28px;
}

.service-card-copy>span {
  color: var(--navy-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-card-copy h3 {
  margin: 10px 0 9px;
}

.service-card-copy p {
  margin: 0;
  color: var(--gray-650);
  font-size: .94rem;
}

.benefits-section {
  color: #fff;
  background: var(--navy-950);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.benefit-grid article {
  min-height: 270px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 55px;
  color: #aab9c5;
  font-size: .8rem;
  letter-spacing: .14em;
}

.benefit-grid h3 {
  margin-bottom: 12px;
  color: #fff;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .93rem;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gray-300);
}

.process-list li {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--gray-200);
}

.process-list>li>span {
  color: var(--navy-700);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.process-list h3 {
  margin: 0 0 8px;
}

.process-list p {
  max-width: 760px;
  margin: 0;
  color: var(--gray-650);
}

.cases-section {
  background: var(--warm-100);
}

.case-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-compare figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 33, 45, .05);
}

.case-compare img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.case-compare figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}

.case-compare figcaption strong {
  color: var(--navy-800);
  letter-spacing: .08em;
}

.case-compare figcaption span {
  color: var(--gray-500);
  font-size: .87rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.faq-intro>p:last-child {
  color: var(--gray-650);
}

.faq-list {
  border-top: 1px solid var(--gray-300);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  text-align: left;
  color: var(--gray-950);
  background: transparent;
  font-weight: 740;
}

.faq-question i {
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--gray-100);
  font-size: 1.25rem;
  font-style: normal;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 48px 24px 2px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-650);
}

.contact-section {
  background: #edf1f3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.contact-copy>p:not(.eyebrow) {
  color: var(--gray-650);
}

.contact-direct {
  display: grid;
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid rgba(52, 76, 98, .12);
  border-radius: 16px;
  background: rgba(52, 76, 98, .12);
}

.contact-direct>* {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, .82);
}

.contact-direct span {
  color: var(--gray-500);
  font-size: .86rem;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: .92rem;
}

.contact-image {
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.contact-form-wrap {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 26px;
}

.form-head span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.form-head p {
  margin: 4px 0 0;
  color: var(--gray-500);
  font-size: .9rem;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .9rem;
  font-weight: 700;
}

.field label em {
  color: var(--danger);
  font-style: normal;
}

.field label span {
  color: var(--gray-500);
  font-weight: 500;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 11px;
  outline: none;
  color: var(--gray-950);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(52, 76, 98, .10);
}

.field.is-error input:not([type="checkbox"]),
.field.is-error select {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: .78rem;
  line-height: 1.4;
}

.field-check {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
}

.check-label {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  cursor: pointer;
}

.check-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--navy-900);
}

.terms-open {
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-800);
  color: var(--gray-800);
  background: transparent;
  font-size: .82rem;
}

.field-check .field-error {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 11px 0 0;
  color: var(--gray-650);
  font-size: .82rem;
  text-align: center;
}

.site-footer {
  padding: 36px 0 110px;
  color: rgba(255, 255, 255, .72);
  background: #101820;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-inner strong {
  color: #fff;
  font-size: 1.15rem;
}

.footer-inner p {
  margin: 5px 0 0;
  font-size: .88rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  max-width: 690px;
  font-size: .84rem;
}

.floating-cta {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 18, 24, .58);
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 2010;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
}

.terms-card {
  width: min(650px, 100%);
  max-height: min(80dvh, 760px);
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
  pointer-events: auto;
}

.terms-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, .96);
}

.terms-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.terms-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 1.55rem;
}

.terms-body {
  padding: 24px 22px 28px;
}

.terms-body>p:first-child {
  color: var(--gray-800);
}

.terms-body dl {
  margin: 20px 0;
  border-top: 1px solid var(--gray-200);
}

.terms-body dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.terms-body dt {
  font-weight: 750;
}

.terms-body dd {
  margin: 0;
  color: var(--gray-650);
}

.terms-note {
  padding: 14px;
  border-radius: 10px;
  color: var(--gray-650);
  background: var(--gray-100);
  font-size: .82rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1);
  transition-delay: var(--delay, 0ms);
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    gap: 46px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 74px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 60px);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 6vw, 4.25rem);
  }

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

  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .contact-grid {
    gap: 40px;
  }

  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading>p {
    max-width: 680px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "cta";
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero-media {
    max-width: 720px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-feature-grid article:first-child {
    grid-column: 1 / -1;
  }

  .service-feature-grid article:first-child img {
    aspect-ratio: 1.8 / 1;
  }

  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-image {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
    --radius-xl: 22px;
  }

  body {
    font-size: 15px;
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {padding: 3rem 0;}

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
  }
  .eyebrow {font-size:0.8rem;}
  .site-header {
    height: var(--header-h);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 1.18rem;
  }

  .hero {
    padding: calc(var(--header-h) + 45px) 0 62px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy,
  .hero-media,
  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.42rem, 11.3vw, 3.55rem);
  }

  .hero-lead {margin-bottom: 1rem;}

  .hero-tags {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1.2fr;
    width: 100%;
    gap: 5px;
  }

  .hero-tags li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 3px 4px;
    font-size: 0.7;
    text-align: center;
    white-space: nowrap;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-cta .btn-lg {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 8px;
    font-size: clamp(.76rem, 3.2vw, .95rem);
    white-space: nowrap;
  }

  .hero-media img {
    border-radius: 22px;
  }

  .situation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
    gap: 8px;
  }

  .situation-list span {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 10px 8px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }
  
  .section-heading {
    gap: 0;
    margin-bottom: 2rem;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-grid article:first-child {
    grid-column: auto;
  }

  .service-feature-grid article:first-child img,
  .service-photo-card img {
    aspect-ratio: 1.45 / 1;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-grid strong {
    margin-bottom: 32px;
  }

  .process-list li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

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

  .case-compare figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-answer {
    padding-right: 4px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .contact-direct>* {
    grid-template-columns: 90px minmax(0, 1fr);
    padding-inline: 13px;
  }

  .field-check {
    grid-template-columns: 1fr auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-info {
    justify-content: flex-start;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .floating-cta {
    position: fixed;
    z-index: 950;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .floating-cta a,
  .floating-cta button {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 0 8px env(safe-area-inset-bottom);
    border-radius: 0;
    font-weight: 800;
  }

  .floating-cta a {
    color: var(--navy-900);
    background: var(--gray-100);
  }

  .floating-cta button {
    margin-left: 0;
    color: #fff;
    background: var(--navy-900);
  }

  .terms-modal {
    padding: 14px;
  }

  .terms-card {
    max-height: 86dvh;
  }

  .terms-body dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.6vw, 3rem);
  }

  .hero-contact strong {
    display: inline-block;
  }

  .contact-direct>* {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .field-check {
    grid-template-columns: 1fr;
  }

  .terms-open {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 38px);
  }

  .hero-tags li {font-size: .8rem;}

  .contact-form-wrap {
    padding-inline: 15px;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-lead {
    font-size: .96rem;
  }

  .mobile-menu {
    width: 88vw;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-tags {
    grid-template-columns: .7fr .7fr 1.3fr 1.8fr;
  }

  .hero-tags li {
    text-align: center;
  }

  .contact-form-wrap {
    padding: 20px 13px;
  }

  .floating-cta {
    padding: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}
