:root {
  --blue: #005bc8;
  --blue-dark: #00459d;
  --ink: #06172f;
  --muted: #506078;
  --line: #dfe7f1;
  --soft: #f4f9ff;
  --panel: #f2f8ff;
  --shadow: 0 12px 30px rgba(21, 74, 130, .08);
  --max: 1800px;
  --head: 100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--head);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background: #fff;
}

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

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--head);
  display: flex;
  align-items: center;
  padding: 0 60px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 385px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: 32px;
  line-height: .9;
}

.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-style: italic;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: #06152c;
  font-size: 12px;
  font-weight: 800;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 44px;
  height: 100%;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}

.nav a.active,
.nav a:hover,
.mobile-nav a.active {
  color: var(--blue);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--blue);
}

.header-actions {
  width: 462px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.phone {
  color: #0d1b31;
  font-size: 18px;
}

.top-cta,
.btn.solid,
.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  padding: 0 42px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #0068e7, #004fc2);
  box-shadow: 0 8px 18px rgba(0, 91, 211, .16);
  font-weight: 900;
}

.top-cta {
  min-height: 60px;
  padding: 0 28px;
  font-size: 18px;
}

.menu-btn,
.mobile-nav {
  display: none;
}

.page {
  max-width: 1920px;
  margin: 0 auto;
}

.hero {
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - min(50vw, 960px));
  margin-right: calc(50% - min(50vw, 960px));
  min-height: 465px;
  margin-top: var(--head);
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 36%, rgba(255,255,255,.93) 45%, rgba(255,255,255,.55) 57%, rgba(255,255,255,0) 72%),
    url("../images/hero-bg.png") center -125px / 1920px auto no-repeat;
}

.hero-copy {
  width: var(--max);
  margin: 0 auto;
  padding: 100px 0 0;
}

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

.hero h1 {
  max-width: 720px;
  font-size: 54px;
  line-height: 1.27;
  font-weight: 900;
}

strong {
  color: var(--blue);
}

.hero p,
.sub-copy p {
  margin-top: 27px;
  color: #1f2d42;
  font-size: 21px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  gap: 32px;
  margin-top: 37px;
}

.button-row .btn {
  font-size: 18px;
}

.hero .btn.solid {
  min-width: 342px;
}

.btn.line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 266px;
  min-height: 76px;
  padding: 0 38px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
}

.quick-services {
  max-width: var(--max);
  margin: 0 auto;
  height: 192px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid transparent;
}

.quick-card {
  height: 192px;
  min-height: 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 26px;
  padding: 50px 54px 20px 24px;
  border-right: 1px solid var(--line);
}

.quick-card:last-child {
  border-right: 0;
}

.icon,
.service-strip span,
.value span,
.process span {
  color: var(--blue);
  font-size: 48px;
  line-height: 1;
}

.quick-icon {
  width: 64px;
  height: 64px;
  grid-row: 1 / 4;
  margin-top: 3px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card b {
  color: var(--blue);
  font-size: 25px;
  line-height: 1.2;
}

.quick-card p {
  grid-column: 2;
  margin-top: 12px;
  color: #243247;
  font-size: 16px;
  line-height: 1.62;
}

.quick-card em {
  grid-column: 2;
  margin-top: 12px;
  color: var(--blue);
  font-style: normal;
  font-size: 24px;
}

.stats-panel {
  max-width: var(--max);
  margin: 28px auto 0;
  min-height: 202px;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  align-items: center;
  padding: 30px 52px;
  border-radius: 8px;
  background: linear-gradient(105deg, #f4faff, #eef7ff);
}

.stats-title {
  padding-right: 42px;
}

.stats-title b {
  font-size: 29px;
  line-height: 1.35;
}

.stats-title p {
  margin-top: 25px;
  color: #334155;
  font-size: 17px;
  line-height: 1.7;
}

.stat {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #d8e2ee;
  text-align: center;
}

.stat strong {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 900;
}

.stat span {
  margin-top: 13px;
  color: #13243b;
  font-size: 17px;
  font-weight: 700;
}

.sub {
  min-height: 1080px;
  padding-bottom: 24px;
}

main > .sub:first-child {
  padding-top: var(--head);
}

.sub-hero {
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - min(50vw, 960px));
  margin-right: calc(50% - min(50vw, 960px));
  height: 286px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center -100px;
}

.sub-copy {
  width: var(--max);
  margin: 0 auto;
}

.crumb,
.sub-copy > span {
  display: inline-block;
  margin-bottom: 23px;
  color: #10213a;
  font-size: 14px;
}

.sub-copy h2 {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 900;
}

.about-hero {
  background-image: linear-gradient(90deg, #eff7ff 0%, rgba(244,250,255,.94) 42%, rgba(255,255,255,.18) 64%), url("../images/about-bg.png");
}

.arrival-hero {
  background-image: linear-gradient(90deg, #f5fbff 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.35) 63%), url("../images/arrival-bg.png");
}

.settlement-hero {
  background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.98) 39%, rgba(255,255,255,.58) 59%, rgba(255,255,255,.08) 76%), url("../images/settlement-bg.png");
  background-position: center -125px;
}

.cases-hero {
  background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.94) 40%, rgba(255,255,255,.22) 62%), url("../images/cases-bg.png");
}

.contact-hero {
  height: 350px;
  background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.97) 47%, rgba(255,255,255,.2) 70%), url("../images/contact-bg.png");
}

.two-col,
.bottom-grid,
.split-panels,
.contact-grid {
  max-width: var(--max);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 58px;
}

.section-heading {
  position: relative;
  margin-bottom: 26px;
  font-size: 25px;
  font-weight: 900;
}

.section-heading::after,
.center-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 13px;
  background: var(--blue);
}

.body-text {
  color: #13243b;
  font-size: 16px;
  line-height: 2;
}

.info-table {
  margin-top: 26px;
}

.info-table div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 8px 0;
  border-bottom: 1px solid #d9e2ec;
  font-size: 14px;
}

.info-table dt {
  font-weight: 900;
}

.info-table dd {
  margin: 0;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value {
  min-height: 170px;
  padding: 15px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.value:last-child {
  border-right: 0;
}

.value b {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 18px;
}

.value p {
  margin-top: 18px;
  color: #26364b;
  font-size: 14px;
  line-height: 1.7;
}

.mini-stats {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  padding: 22px 18px;
  border-radius: 5px;
  background: var(--panel);
}

.mini-stats div {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-right: 1px solid #d8e2ee;
  text-align: center;
}

.mini-stats div:last-child {
  border-right: 0;
}

.mini-stats strong {
  font-size: 30px;
  font-weight: 900;
}

.mini-stats span {
  font-size: 13px;
  font-weight: 700;
}

.bottom-grid {
  grid-template-columns: 1.2fr .85fr;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #c8d7e8;
}

.timeline div {
  position: relative;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
}

.timeline b {
  color: var(--blue);
  font-size: 16px;
}

.timeline b::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 17px auto 16px;
  border-radius: 50%;
  background: var(--blue);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.partner-row span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #13243b;
  font-size: 13px;
  background: #fff;
}

.service-strip {
  max-width: var(--max);
  margin: 0 auto 37px;
  display: grid;
  gap: 0;
}

.service-strip.five {
  grid-template-columns: repeat(5, 1fr);
}

.service-strip div {
  min-height: 160px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip b {
  display: block;
  margin-top: 20px;
  font-size: 18px;
}

.service-strip p {
  margin-top: 14px;
  color: #26364b;
  font-size: 14px;
  line-height: 1.7;
}

#arrival > .section-heading,
#settlement > .section-heading {
  max-width: var(--max);
  margin: 25px auto 24px;
}

.split-panels {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.process-card,
.feature-card,
.contact-form,
.contact-side,
.result-row,
.review-row {
  border-radius: 5px;
  background: linear-gradient(120deg, #f8fcff, #f1f8ff);
  box-shadow: var(--shadow);
  padding: 28px 38px;
}

.process-card h3,
.feature-card h3,
.contact-form h3,
.contact-side h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.process i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 22px;
  margin-bottom: 25px;
  border-radius: 99px;
  color: #fff;
  background: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.process span {
  display: block;
  font-size: 35px;
}

.process b {
  display: block;
  margin-top: 19px;
  font-size: 15px;
}

.process p {
  margin-top: 12px;
  color: #26364b;
  font-size: 13px;
  line-height: 1.6;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 302px;
  column-gap: 28px;
}

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

.feature-card h3 {
  grid-column: 1 / -1;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrival-feature ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card li {
  margin-bottom: 15px;
  color: #25354b;
  font-size: 15px;
}

.arrival-feature li {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  border: 1px solid #d8e6f4;
  border-radius: 5px;
  background: #fff;
  font-weight: 800;
}

.arrival-feature li:last-child {
  grid-column: 1 / -1;
}

.feature-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
}

.photo,
.feature-card .photo {
  border-radius: 4px;
  min-height: 214px;
  background-size: 1536px auto;
  background-repeat: no-repeat;
}

.arrival-photo {
  background-image: url("../images/arrival-bg.png");
  background-position: right -470px top -525px;
}

.compact {
  min-height: 112px;
  grid-template-columns: repeat(5, 1fr);
  padding: 16px 30px;
}

.compact h3 {
  grid-column: 1 / -1;
  margin: 0 0 10px;
}

.compact .stat {
  min-height: 74px;
}

.compact .stat strong {
  font-size: 28px;
}

.compact .stat span {
  font-size: 13px;
}

.split-panels > .stats-panel.compact {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  align-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  padding: 28px 38px;
}

.split-panels > .stats-panel.compact h3 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.25;
}

.split-panels > .stats-panel.compact .stat {
  min-height: 84px;
  border-left: 0;
  border-top: 1px solid #d8e2ee;
}

.split-panels > .stats-panel.compact .stat:nth-of-type(odd) {
  border-right: 1px solid #d8e2ee;
}

.split-panels > .stats-panel.compact .stat strong {
  font-size: 32px;
}

.split-panels > .stats-panel.compact .stat span {
  font-size: 14px;
}

.image-card-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.image-card-grid > div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  background: #fff;
}

.image-card-grid span {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 38px;
}

.image-card-grid b {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.image-card-grid p {
  min-height: 74px;
  margin: 13px 32px 10px;
  color: #26364b;
  font-size: 14px;
  line-height: 1.6;
}

.image-card-grid i,
.case-grid i {
  display: block;
  height: 154px;
  background-image: url("../images/settlement-bg.png");
  background-size: 2050px auto;
  background-repeat: no-repeat;
}

.room { background-position: -119px -720px; }
.bedding { background-position: -575px -720px; }
.culture { background-position: -1025px -720px; }
.docs { background-position: -1474px -720px; }

.notice-row {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.notice-row > div,
.notice-row > a {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 34px;
  border-radius: 5px;
  background: var(--panel);
}

.notice-row span {
  color: var(--blue);
  font-size: 44px;
}

.notice-row b {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.notice-row p {
  margin-top: 5px;
  font-size: 13px;
}

.notice-row a {
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #005bd3, #0046a7);
  font-weight: 900;
}

.student-page {
  padding-top: var(--head);
}

.student-hero-layout {
  min-height: 505px;
  display: grid;
  grid-template-columns: .75fr 1.15fr;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  gap: 35px;
}

.student-copy > span {
  color: var(--blue);
  font-weight: 900;
}

.student-copy h2 {
  margin-top: 23px;
  font-size: 43px;
  line-height: 1.35;
}

.student-copy p {
  margin-top: 24px;
  color: #13243b;
  font-size: 18px;
  line-height: 1.7;
}

.feature-icons {
  margin: 40px 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.feature-icons div {
  color: var(--blue);
  font-size: 28px;
}

.feature-icons b,
.feature-icons small {
  display: block;
  color: #13243b;
}

.feature-icons b {
  margin-top: 9px;
  font-size: 14px;
}

.feature-icons small {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.5;
}

.device-mock {
  position: relative;
  height: 430px;
}

.laptop {
  position: absolute;
  left: 5px;
  top: 20px;
  width: 620px;
  height: 380px;
  padding: 18px;
  border: 14px solid #111;
  border-radius: 18px;
  background: #f9fbff;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.dash {
  height: 100%;
  display: grid;
  grid-template-columns: 105px 1fr;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  background: #fff;
}

.dash aside {
  padding: 16px 12px;
  border-right: 1px solid #e2e8f0;
  font-size: 12px;
}

.dash aside span,
.dash aside b {
  display: block;
  margin-bottom: 15px;
}

.dash main {
  padding: 22px;
}

.dash h4 {
  margin: 0 0 18px;
  font-size: 22px;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-cards i {
  padding: 18px 8px;
  border-radius: 6px;
  background: #f8fafc;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.dash section {
  margin-top: 22px;
  padding: 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(0,0,0,.08);
}

.dash section p {
  margin: 12px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
  font-size: 13px;
}

.phone-mock {
  position: absolute;
  right: 10px;
  top: 80px;
  width: 170px;
  height: 315px;
  padding: 28px 14px;
  border: 10px solid #111;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(160deg, #005bd3, #123fb8);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.phone-mock b {
  display: block;
  margin-bottom: 38px;
  font-size: 14px;
}

.phone-mock span {
  display: inline-block;
  width: 45%;
  margin: 0 3px 8px 0;
  padding: 8px 3px;
  border-radius: 8px;
  color: #123;
  background: #fff;
  font-size: 10px;
  text-align: center;
}

.phone-mock p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 10px;
}

.center-title {
  margin: 18px 0 30px;
  text-align: center;
  font-size: 28px;
}

.center-title::after {
  margin: 12px auto 0;
}

.advantage-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.advantage-grid div {
  min-height: 228px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.advantage-grid span {
  font-size: 46px;
}

.advantage-grid b {
  display: block;
  margin-top: 16px;
  font-size: 18px;
}

.advantage-grid p {
  margin-top: 12px;
  color: #26364b;
  font-size: 14px;
  line-height: 1.7;
}

.dark-stats {
  max-width: var(--max);
  margin: 20px auto 0;
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #061a37, #082753);
}

.dark-stats div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.24);
}

.dark-stats div:last-child {
  border-right: 0;
}

.dark-stats strong,
.dark-stats span {
  display: block;
}

.dark-stats strong {
  font-size: 27px;
}

.dark-stats span {
  margin-top: 8px;
  font-size: 14px;
}

.case-head {
  max-width: var(--max);
  margin: 28px auto 14px;
  display: flex;
  justify-content: space-between;
}

.case-head select {
  width: 142px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
}

.case-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.case-grid article {
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 6px;
  background: #fff;
}

.case-grid i {
  height: 132px;
  background-image: url("../images/cases-bg.png");
  background-size: 2050px auto;
}

.case-a { background-position: -82px -653px; }
.case-b { background-position: -563px -653px; }
.case-c { background-position: -1026px -653px; }
.case-d { background-position: -1492px -653px; }

.case-grid b,
.case-grid p,
.case-grid small,
.case-grid footer {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
}

.case-grid b {
  margin-top: 13px;
  font-size: 17px;
}

.case-grid p,
.case-grid small {
  margin-top: 14px;
  color: #26364b;
  font-size: 13px;
  line-height: 1.6;
}

.case-grid p span {
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.case-grid footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--blue);
}

.case-grid footer em {
  font-style: normal;
  text-align: right;
  font-size: 23px;
}

.review-row {
  max-width: var(--max);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr repeat(4, 1.3fr);
  gap: 20px;
  align-items: center;
}

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

.review-row p {
  color: #26364b;
  font-size: 14px;
  line-height: 1.7;
}

.cases-v2-page {
  background: #fff;
}

.cases-v2-hero {
  width: 100vw;
  max-width: 1920px;
  min-height: 610px;
  margin-left: calc(50% - min(50vw, 960px));
  margin-right: calc(50% - min(50vw, 960px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255,255,255,.94) 48%, rgba(255,255,255,.35) 65%, rgba(255,255,255,0) 78%),
    url("../images/cases-v2/hero.jpg") right center / 1920px auto no-repeat;
}

.cases-v2-hero-copy {
  width: var(--max);
  margin: 0 auto;
}

.cases-v2-hero h1 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.35;
  font-weight: 900;
}

.cases-v2-hero p {
  margin-top: 30px;
  color: #1f2d42;
  font-size: 20px;
  line-height: 1.75;
}

.cases-v2-mobile-break {
  display: none;
}

.cases-v2-stats {
  max-width: 760px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cases-v2-stats div {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid #d9e2ee;
  text-align: center;
}

.cases-v2-stats div:last-child {
  border-right: 0;
}

.cases-v2-stats span {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.cases-v2-stats strong {
  margin-top: 12px;
  color: var(--blue);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.cases-v2-stats em {
  margin-top: 9px;
  color: #13243b;
  font-size: 13px;
  font-style: normal;
}

.cases-v2-tabs {
  max-width: var(--max);
  margin: 36px auto 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cases-v2-tabs button {
  min-width: 130px;
  height: 58px;
  padding: 0 24px;
  border: 1px solid #d5dfeb;
  border-radius: 6px;
  color: #14243a;
  background: #fff;
  font-weight: 800;
}

.cases-v2-tabs button.active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.cases-v2-card-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cases-v2-card-grid article {
  overflow: hidden;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #fff;
}

.cases-v2-card-grid img {
  width: 100%;
  aspect-ratio: 1.218 / 1;
  display: block;
  object-fit: cover;
}

.cases-v2-card-grid span {
  display: inline-flex;
  margin: 18px 18px 0;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 13px;
  font-weight: 900;
}

.cases-v2-card-grid span.green {
  color: #138346;
  background: #e9f8ef;
}

.cases-v2-card-grid h2 {
  margin: 15px 18px 0;
  font-size: 21px;
  line-height: 1.45;
}

.cases-v2-card-grid p {
  min-height: 58px;
  margin: 13px 18px 0;
  color: #344258;
  font-size: 14px;
  line-height: 1.75;
}

.cases-v2-card-grid footer {
  display: flex;
  gap: 28px;
  margin: 22px 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: #22324a;
  font-size: 13px;
}

.cases-v2-card-grid footer b {
  font-weight: 700;
}

.cases-v2-mosaic {
  position: relative;
  max-width: var(--max);
  margin: 48px auto 0;
  overflow: hidden;
  border-radius: 8px;
}

.cases-v2-mosaic img {
  width: 100%;
  display: block;
}

.cases-v2-mosaic a {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  min-width: 340px;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(0, 91, 200, .25);
  font-size: 19px;
  font-weight: 900;
}

.cases-v2-bottom {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr 456px;
  gap: 44px;
  padding: 36px 36px 38px;
  border: 1px solid #dde7f2;
  border-radius: 8px;
}

.cases-v2-info h2,
.cases-v2-cta h2 {
  font-size: 26px;
  line-height: 1.45;
}

.cases-v2-partners {
  margin: 26px 0 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 18px;
  text-align: center;
}

.cases-v2-partners span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: #26364b;
  font-size: 13px;
  font-weight: 800;
}

.cases-v2-services {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.cases-v2-services div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 12px;
}

.cases-v2-services span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.cases-v2-services b {
  color: var(--blue);
  font-size: 16px;
}

.cases-v2-services p {
  margin-top: 7px;
  color: #344258;
  font-size: 12px;
  line-height: 1.55;
}

.cases-v2-cta {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 54px 70px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5faff, #edf5ff);
}

.cases-v2-cta p {
  margin-top: 28px;
  color: #344258;
  font-size: 17px;
  line-height: 1.8;
}

.cases-v2-cta a {
  width: 246px;
  min-height: 68px;
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.promise-row {
  display: flex;
  gap: 0;
  margin-top: 34px;
  color: #13243b;
  font-size: 18px;
  font-weight: 900;
}

.promise-row span {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 42px;
  margin-right: 42px;
  border-right: 1px solid #cfd9e6;
  color: #13243b;
}

.promise-row span:last-child {
  border-right: 0;
  margin-right: 0;
}

.promise-row svg {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.contact-form h3,
.contact-form > p,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #13243b;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9e4ef;
  border-radius: 5px;
  padding: 0 14px;
  color: #13243b;
  background: #fff;
}

.contact-form input {
  height: 38px;
}

.contact-form textarea {
  height: 42px;
  padding-top: 10px;
  resize: vertical;
}

.agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
}

.agree input {
  width: 19px;
  height: 19px;
  margin: 0;
}

.agree a {
  color: var(--blue);
}

.submit {
  grid-column: 2;
  width: 100%;
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

.contact-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.contact-list div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-list div:last-child {
  border-bottom: 0;
}

.contact-list a {
  color: var(--blue);
  font-weight: 900;
}

.contact-list span {
  color: #5f6d80;
  text-align: right;
}

.trust-box {
  margin-top: 18px;
  min-height: 107px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--panel);
}

.trust-box span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 58px;
}

.trust-box b {
  grid-column: 2;
  color: var(--blue);
  font-size: 18px;
}

.trust-box p {
  grid-column: 2;
  margin-top: 9px;
  color: #26364b;
  font-size: 14px;
}

.result-row {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.result-row h3 {
  font-size: 22px;
}

.result-row span {
  color: var(--blue);
  font-size: 44px;
}

.result-row b {
  display: block;
  margin-top: 7px;
}

.result-row p {
  margin-top: 8px;
  color: #26364b;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  :root {
    --head: 74px;
  }

  .header {
    padding: 0 18px;
  }

  .brand {
    width: auto;
    gap: 9px;
    font-size: 23px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .brand-text small {
    margin-top: 3px;
    font-size: 9px;
    white-space: nowrap;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }

  .nav,
  .header-actions .phone,
  .top-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 1px solid #9aa5b4;
    border-radius: 4px;
  }

  .menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-nav.open {
    position: fixed;
    top: var(--head);
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 15px 24px;
    border-top: 1px solid var(--line);
    font-weight: 800;
  }

  .page,
  .hero-copy,
  .sub-copy,
  .quick-services,
  .stats-panel,
  .two-col,
  .bottom-grid,
  .split-panels,
  .service-strip,
  .image-card-grid,
  .notice-row,
  .student-hero-layout,
  .advantage-grid,
  .dark-stats,
  .case-head,
  .case-grid,
  .review-row,
  .contact-grid,
  .result-row {
    width: calc(100% - 32px);
    max-width: none;
  }

  .hero,
  .sub-hero {
    background-size: 1920px auto;
    background-position: 72% -100px;
  }

  .hero {
    width: 100vw;
    max-width: 1920px;
    margin-left: calc(50% - min(50vw, 960px));
    margin-right: calc(50% - min(50vw, 960px));
    min-height: 465px;
    background: linear-gradient(90deg, #fff 0%, #fff 36%, rgba(255,255,255,.93) 45%, rgba(255,255,255,.55) 57%, rgba(255,255,255,0) 72%),
      url("../images/hero-bg.png") 75% -125px / 1920px auto no-repeat;
  }

  .sub-hero,
  .contact-hero {
    height: auto;
    min-height: 0;
    padding: 44px 0 38px;
    align-items: flex-start;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  }

  .hero h1,
  .sub-copy h2,
  .student-copy h2 {
    font-size: 34px;
  }

  .quick-services,
  .stats-panel,
  .two-col,
  .bottom-grid,
  .split-panels,
  .service-strip.five,
  .image-card-grid,
  .student-hero-layout,
  .advantage-grid,
  .dark-stats,
  .case-grid,
  .review-row,
  .contact-grid,
  .result-row {
    grid-template-columns: 1fr;
  }

  .quick-services {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .quick-card {
    height: auto;
    min-height: 188px;
    padding: 36px 28px;
  }

  .quick-card,
  .stat,
  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .value-row,
  .mini-stats,
  .timeline,
  .process,
  .feature-icons {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-strip.five,
  .image-card-grid,
  .case-grid,
  .advantage-grid,
  .review-row,
  .result-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip div:nth-child(even) {
    border-right: 0;
  }

  .service-strip.five div:last-child {
    grid-column: 1 / -1;
  }

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

  .arrival-feature li:last-child {
    grid-column: auto;
  }

  .split-panels > .stats-panel.compact {
    width: 100%;
    padding: 28px 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-v2-hero-copy,
  .cases-v2-tabs,
  .cases-v2-card-grid,
  .cases-v2-mosaic,
  .cases-v2-bottom {
    width: calc(100% - 32px);
    max-width: none;
  }

  .cases-v2-hero {
    min-height: 520px;
    background-position: 72% center;
    background-size: 1920px auto;
  }

  .cases-v2-hero h1 {
    max-width: 560px;
    font-size: 38px;
  }

  .cases-v2-hero p {
    font-size: 18px;
  }

  .cases-v2-stats {
    max-width: 580px;
  }

  .cases-v2-stats strong {
    font-size: 26px;
  }

  .cases-v2-tabs {
    flex-wrap: wrap;
  }

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

  .cases-v2-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cases-v2-partners {
    grid-template-columns: repeat(5, 1fr);
  }

  .cases-v2-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-v2-cta {
    padding: 36px;
  }

  .device-mock {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .sub-hero {
    height: 286px;
    min-height: 286px;
    padding: 0;
    align-items: center;
    background-size: 1920px auto;
    background-position: 72% -100px;
  }

  .about-hero {
    background-image: linear-gradient(90deg, #eff7ff 0%, rgba(244,250,255,.94) 42%, rgba(255,255,255,.18) 64%), url("../images/about-bg.png");
  }

  .arrival-hero {
    background-image: linear-gradient(90deg, #f5fbff 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.35) 63%), url("../images/arrival-bg.png");
  }

  .settlement-hero {
    background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.98) 39%, rgba(255,255,255,.58) 59%, rgba(255,255,255,.08) 76%), url("../images/settlement-bg.png");
    background-position: 72% -125px;
  }

  .cases-hero {
    background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.94) 40%, rgba(255,255,255,.22) 62%), url("../images/cases-bg.png");
  }

  .contact-hero {
    height: 350px;
    min-height: 350px;
    padding: 0;
    background-image: linear-gradient(90deg, #f7fbff 0%, rgba(255,255,255,.97) 47%, rgba(255,255,255,.2) 70%), url("../images/contact-bg.png");
    background-position: 72% -100px;
  }

  .sub-copy p {
    max-width: 680px;
  }

  .cases-hero .sub-copy p {
    max-width: 600px;
  }

  .contact-hero .sub-copy h2 {
    max-width: 760px;
  }

  .contact-hero .promise-row {
    max-width: 760px;
  }

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

  .timeline::before {
    display: none;
  }

  .timeline div {
    min-height: 118px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .timeline b::after {
    margin: 12px auto 14px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .header {
    height: var(--head);
    padding: 0 16px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .page,
  .hero-copy,
  .sub-copy,
  .quick-services,
  .stats-panel,
  .two-col,
  .bottom-grid,
  .split-panels,
  .service-strip,
  .image-card-grid,
  .notice-row,
  .student-hero-layout,
  .advantage-grid,
  .dark-stats,
  .case-head,
  .case-grid,
  .review-row,
  .contact-grid,
  .result-row {
    width: calc(100% - 32px);
  }

  .hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 0;
    margin-top: var(--head);
    padding: 44px 0 34px;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 74%);
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.22;
  }

  .hero p,
  .sub-copy p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.75;
  }

  .button-row {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .hero .btn.solid,
  .btn.line {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    font-size: 17px;
  }

  .quick-services {
    height: auto;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .quick-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 72px 1fr;
    column-gap: 18px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-icon {
    width: 56px;
    height: 56px;
  }

  .quick-card b {
    font-size: 25px;
  }

  .quick-card p {
    font-size: 17px;
    line-height: 1.65;
  }

  .stats-panel {
    min-height: 0;
    margin-top: 24px;
    padding: 26px 24px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-title {
    padding-right: 0;
    padding-bottom: 18px;
  }

  .stats-title b {
    font-size: 24px;
  }

  .stats-title p {
    font-size: 15px;
  }

  .stat {
    min-height: 84px;
    border-left: 0;
    border-top: 1px solid #d8e2ee;
  }

  .stat strong {
    font-size: 34px;
  }

  .stat span {
    font-size: 15px;
  }

  .sub {
    min-height: 0;
    padding-bottom: 42px;
  }

  .sub-hero,
  .contact-hero {
    height: auto;
    min-height: 0;
    padding: 44px 0 38px;
    align-items: flex-start;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  }

  .sub-copy h2,
  .student-copy h2 {
    font-size: 30px;
    line-height: 1.26;
  }

  .crumb,
  .sub-copy > span {
    margin-bottom: 16px;
  }

  .service-strip.five,
  .image-card-grid,
  .case-grid,
  .advantage-grid,
  .contact-grid,
  .result-row,
  .review-row,
  .notice-row,
  .split-panels,
  .bottom-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .image-card-grid > div,
  .case-grid article,
  .process-card,
  .feature-card,
  .contact-form,
  .contact-side,
  .result-row,
  .review-row {
    padding: 22px;
  }

  .image-card-grid i {
    height: 160px;
    margin: 18px -22px -22px;
    background-size: 2050px auto;
  }

  .room { background-position: -119px -720px; }
  .bedding { background-position: -575px -720px; }
  .culture { background-position: -1025px -720px; }
  .docs { background-position: -1474px -720px; }

  .process,
  .mini-stats,
  .value-row,
  .feature-icons,
  .dark-stats {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline div {
    min-height: 0;
    padding: 18px 18px 18px 58px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: left;
    background: #fff;
  }

  .timeline b {
    display: block;
    font-size: 18px;
  }

  .timeline b::after {
    position: absolute;
    left: 24px;
    top: 24px;
    margin: 0;
  }

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

  .submit {
    grid-column: 1;
  }

  .promise-row {
    display: grid;
    gap: 14px;
  }

  .promise-row span {
    min-width: 0;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 18px;
  }

  .contact-list span {
    text-align: left;
  }

  .split-panels > .stats-panel.compact {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .split-panels > .stats-panel.compact .stat:nth-of-type(odd) {
    border-right: 0;
  }

  .cases-v2-hero {
    min-height: 0;
    padding: 44px 0 38px;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  }

  .cases-v2-hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.28;
  }

  .cases-v2-mobile-break {
    display: block;
  }

  .cases-v2-hero p {
    margin-top: 20px;
    font-size: 16px;
  }

  .cases-v2-stats {
    max-width: none;
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-v2-stats div {
    min-height: 112px;
    border-right: 0;
    border-top: 1px solid #d9e2ee;
  }

  .cases-v2-tabs {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 26px;
  }

  .cases-v2-tabs button {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cases-v2-card-grid {
    grid-template-columns: 1fr;
  }

  .cases-v2-card-grid h2 {
    font-size: 19px;
  }

  .cases-v2-mosaic a {
    min-width: 0;
    width: calc(100% - 32px);
    min-height: 58px;
    font-size: 16px;
  }

  .cases-v2-bottom {
    padding: 24px 18px;
  }

  .cases-v2-partners,
  .cases-v2-services {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cases-v2-services div {
    grid-template-columns: 1fr;
  }

  .cases-v2-cta {
    padding: 28px 22px;
  }

  .cases-v2-cta a {
    width: 100%;
  }

  .trust-box {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .result-row {
    display: grid;
  }
}
