:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #d9e2ec;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --navy: #12355b;
  --purple: rgb(65, 86, 166);
  --purple-dark: rgb(50, 66, 138);
  --red: #c83f49;
  --blue: #2563a6;
  --green: #2b8a6e;
  --amber: #b7791f;
  --mint: #22b8cf;
  --shadow: 0 18px 40px rgba(18, 53, 91, 0.12);
  --deep-shadow: 0 26px 70px rgba(9, 29, 53, 0.28);
  --content-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  background: var(--surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  transition: opacity 180ms ease;
  mix-blend-mode: soft-light;
}

body.is-pointer-active .cursor-light {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(217, 226, 236, 0.78);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.top-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  max-width: var(--content-max);
  min-height: 82px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--purple);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.primary-nav > ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
}

.primary-nav > ul > li > a {
  display: block;
  padding: 28px 20px;
  font-size: 17px;
  font-weight: 800;
}

.primary-nav > ul > li:hover > a,
.primary-nav > ul > li:focus-within > a {
  color: var(--purple);
}

.submenu {
  position: absolute;
  left: 50%;
  display: grid;
  min-width: 220px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
}

.submenu.wide {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  min-width: 470px;
}

.primary-nav li:hover .submenu,
.primary-nav li:focus-within .submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.submenu a {
  padding: 10px 12px;
  color: #344054;
  border-radius: 6px;
  font-size: 14px;
}

.submenu a:hover,
.submenu a:focus {
  color: var(--ink);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.language-switcher {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(23, 32, 42, 0.05);
}

.lang-button {
  min-width: 39px;
  height: 38px;
  border: 0;
  color: var(--muted);
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  color: white;
  background: var(--purple);
}

.menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(65, 86, 166, 0.24);
  border-radius: 10px;
  background: var(--purple);
  box-shadow: 0 8px 18px rgba(65, 86, 166, 0.18);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: white;
}

.site-menu {
  position: fixed;
  inset: 82px 0 auto;
  z-index: 50;
  display: block;
  background: rgba(65, 86, 166, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-panel {
  width: 100%;
  max-height: calc(100vh - 82px);
  padding: 34px max(24px, calc((100vw - var(--content-max)) / 2 + 24px));
  background:
    linear-gradient(135deg, rgba(34, 184, 207, 0.12), rgba(255, 255, 255, 0) 36%),
    white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(-18px);
  transition: transform 220ms ease;
  overflow: auto;
}

.site-menu.is-open .site-menu-panel {
  transform: translateY(0);
}

.site-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.site-menu-head h2 {
  margin: 0;
  font-size: 38px;
}

.menu-close {
  width: 50px;
  height: 50px;
  border: 0;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

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

.site-menu-grid section {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.site-menu-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 21px;
}

.site-menu-grid a {
  display: block;
  padding: 7px 0;
  color: #344054;
  font-size: 14px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 46px;
  min-height: 680px;
  padding: 76px max(24px, calc((100vw - var(--content-max)) / 2 + 24px)) 70px;
  align-items: center;
  color: white;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover;
  opacity: 0;
  transform: scale(1.04) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: opacity 650ms ease, transform 280ms ease-out;
}

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

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f5c36f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: #b92335;
  box-shadow: 0 14px 34px rgba(185, 35, 53, 0.34);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button,
.interactive-card,
.hero-service-panel a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.interactive-card:hover,
.hero-service-panel a:hover {
  transform: translateY(-4px);
}

.hero-service-panel {
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero-service-panel a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 16px;
  min-height: 104px;
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(10, 18, 30, 0.58);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero-service-panel a:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(10, 18, 30, 0.72);
}

.hero-service-panel span {
  grid-row: span 2;
  color: #f5c36f;
  font-weight: 900;
}

.hero-service-panel strong {
  font-size: 19px;
}

.hero-service-panel small {
  color: rgba(255, 255, 255, 0.7);
}

.hero-dots {
  position: absolute;
  left: max(24px, calc((100vw - var(--content-max)) / 2 + 24px));
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: #f5c36f;
}

.quick-links,
.gallery-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 58px 24px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}

.section-heading.inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-heading.inline a {
  color: var(--blue);
  font-weight: 800;
}

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

.quick-card {
  position: relative;
  display: grid;
  min-height: 170px;
  padding: 22px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-top: 5px solid currentColor;
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 24px rgba(18, 53, 91, 0.06);
  will-change: transform;
  overflow: hidden;
}

.quick-card::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
  transition: transform 220ms ease;
}

.quick-card:hover::after {
  transform: scale(1.45);
}

.quick-card:hover,
.visa-links a:hover,
.gallery-card:hover {
  box-shadow: var(--shadow);
}

.quick-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.quick-card small {
  color: var(--muted);
}

.accent-red {
  color: var(--red);
}

.accent-blue {
  color: var(--blue);
}

.accent-green {
  color: var(--green);
}

.accent-amber {
  color: var(--amber);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  padding: 58px max(24px, calc((100vw - var(--content-max)) / 2 + 24px));
  background:
    linear-gradient(180deg, #ffffff, #f7f9fc);
}

.notice-area,
.visa-area {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(18, 53, 91, 0.06);
  overflow: hidden;
}

.notice-area::before,
.visa-area::before {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(18, 53, 91, 0.05);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.notice-area::before {
  content: "N";
}

.visa-area::before {
  content: "V";
}

.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: color 160ms ease, transform 160ms ease;
}

.notice-list li:hover {
  color: var(--blue);
  transform: translateX(6px);
}

.notice-list a {
  font-weight: 700;
}

.notice-list time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.visa-links {
  display: grid;
  gap: 12px;
}

.visa-links a {
  position: relative;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  overflow: hidden;
}

.visa-links a::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  place-items: center;
  color: white;
  content: "→";
  background: var(--purple);
  border-radius: 50%;
  font-size: 13px;
}

.support-flow {
  max-width: none;
  margin-top: 46px;
  padding: 70px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 184, 207, 0.2), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(185, 35, 53, 0.1), transparent 24%),
    linear-gradient(180deg, #eef8fb, #f8fbff);
  border-top: 1px solid rgba(37, 99, 166, 0.08);
  border-bottom: 1px solid rgba(37, 99, 166, 0.08);
}

.support-flow .section-heading {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px 12px;
}

.flow-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.flow-track {
  display: flex;
  width: max-content;
  animation: flowSlide 58s linear infinite;
}

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

.flow-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.flow-set a {
  position: relative;
  display: grid;
  width: 184px;
  min-height: 176px;
  padding: 22px;
  align-content: end;
  gap: 6px;
  border: 1px solid rgba(37, 99, 166, 0.18);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(18, 53, 91, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.flow-set a:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 166, 0.38);
  box-shadow: var(--shadow);
}

.flow-track strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.flow-track small {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--muted);
  line-height: 1.35;
}

.flow-set a::before {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 126px;
  height: 126px;
  content: "";
  border-radius: 50%;
  background: rgba(34, 184, 207, 0.1);
}

.flow-set img {
  position: absolute;
  right: -20px;
  top: 16px;
  z-index: 0;
  width: 138px;
  height: 96px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transition: transform 220ms ease;
}

.flow-set a:hover img {
  transform: translateY(-4px) scale(1.05);
}

.flow-set .has-character {
  padding-top: 112px;
  background:
    linear-gradient(180deg, rgba(238, 248, 251, 0.7), rgba(255, 255, 255, 0) 58%),
    white;
}

.flow-set .character-machine img {
  right: -10px;
  top: 10px;
  width: 124px;
  height: 104px;
}

@keyframes flowSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery-section {
  position: relative;
}

.gallery-section::before {
  position: absolute;
  right: 24px;
  top: 30px;
  z-index: -1;
  color: rgba(65, 86, 166, 0.06);
  content: "GALLERY";
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 900;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 250px);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: white;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 53, 91, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-card span,
.gallery-card strong {
  position: absolute;
  left: 24px;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gallery-card span {
  bottom: 62px;
  color: #f5c36f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card strong {
  right: 24px;
  bottom: 24px;
  font-size: 24px;
  line-height: 1.25;
}

.site-footer {
  color: rgba(255, 255, 255, 0.94);
  background: #474b53;
}

.footer-main {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) 140px;
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 20px;
  align-items: center;
  padding: 32px 24px;
}

.footer-logo {
  width: 165px;
  height: auto;
  opacity: 0.88;
  flex: 0 0 auto;
}

.footer-info {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.footer-info p {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  white-space: nowrap;
}

.footer-info p:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.footer-extra {
  display: grid;
  gap: 14px;
  justify-items: end;
  align-self: start;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-sns a {
  display: grid;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  place-items: center;
  color: white;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
}

.footer-site-select {
  position: relative;
  width: 140px;
}

.site-select-toggle {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: white;
  border: 0;
  background: #3b3d42;
  font-weight: 800;
  cursor: pointer;
}

.site-select-toggle > span:last-child {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg) translateY(-3px);
}

.site-select-toggle > span[data-i18n] {
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  transform: none;
}

.footer-site-select.is-open .site-select-toggle > span:last-child {
  transform: rotate(225deg) translate(-2px, -1px);
}

.site-select-list {
  position: absolute;
  right: 0;
  bottom: 44px;
  z-index: 5;
  display: none;
  width: 220px;
  max-height: 270px;
  padding: 8px 0;
  overflow: auto;
  background: #3b3d42;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.22);
}

.footer-site-select.is-open .site-select-list {
  display: grid;
}

.site-select-list a {
  padding: 7px 16px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.site-select-list a:hover {
  background: var(--purple);
}

html:not([lang="ko"]) .top-bar {
  gap: 18px;
}

html:not([lang="ko"]) .brand {
  min-width: 210px;
  gap: 10px;
}

html:not([lang="ko"]) .brand-logo {
  width: 170px;
}

html:not([lang="ko"]) .brand strong {
  max-width: 170px;
  font-size: 18px;
  line-height: 1.2;
  word-break: keep-all;
}

html[lang="en"] .brand strong {
  max-width: none;
  white-space: nowrap;
}

html:not([lang="ko"]) .primary-nav > ul > li > a {
  display: flex;
  min-height: 82px;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  font-size: 15px;
  line-height: 1.28;
  text-align: center;
  overflow-wrap: normal;
  word-break: keep-all;
}

html[lang="en"] .primary-nav > ul > li > a {
  white-space: nowrap;
  font-size: 14px;
}

html[lang="ru"] .primary-nav > ul > li > a {
  max-width: 128px;
  font-size: 14px;
  white-space: normal;
}

html[lang="vi"] .primary-nav > ul > li > a {
  max-width: 132px;
  font-size: 14px;
  white-space: normal;
}

html:not([lang="ko"]) .submenu a {
  font-size: 13px;
  line-height: 1.35;
}

html:not([lang="ko"]) .footer-main {
  grid-template-columns: 155px minmax(0, 1fr) minmax(190px, auto);
  align-items: start;
}

html:not([lang="ko"]) .footer-info p {
  flex-wrap: wrap;
  row-gap: 4px;
  white-space: normal;
}

html:not([lang="ko"]) .footer-info p:first-child span:first-child {
  flex-basis: 100%;
  max-width: 100%;
}

html:not([lang="ko"]) .footer-site-select {
  width: 190px;
}

html:not([lang="ko"]) .site-select-toggle {
  gap: 10px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.2;
}

html:not([lang="ko"]) .site-select-list {
  width: 260px;
}

html:not([lang="ko"]) .site-select-list a {
  line-height: 1.35;
  white-space: normal;
}

@media (max-width: 1100px) {
  .top-bar {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }
}

@media (max-width: 980px) {
  .hero,
  .content-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 46px;
  }

  .hero-service-panel {
    max-width: 560px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-large {
    grid-row: auto;
  }

  .gallery-card {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand small,
  .language-switcher {
    display: none;
  }

  .brand-logo {
    width: 130px;
  }

  .menu-toggle {
    width: 40px;
    height: 38px;
  }

  .cursor-light {
    display: none;
  }

  .site-menu-panel {
    padding: 24px 18px;
  }

  .site-menu-grid,
  .quick-grid,
  .content-band {
    grid-template-columns: 1fr;
  }

  .hero,
  .quick-links,
  .gallery-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flow-track {
    animation-duration: 66s;
  }

  .support-flow .section-heading {
    padding: 0 16px;
  }

  .flow-set a {
    width: 168px;
    min-height: 166px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-service-panel a {
    min-height: 88px;
    padding: 18px;
  }

  .notice-list li,
  .footer-main {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-info,
  .footer-extra {
    width: 100%;
    min-width: 0;
  }

  .footer-info p {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-extra {
    justify-items: start;
  }
}
