:root {
  --navy: #0f2133;
  --blue: #1a5fb4;
  --blue-dark: #134a8f;
  --teal: #1f9eab;
  --gray: #f5f8fb;
  --gray-line: #dde6ef;
  --text: #1c2c3d;
  --muted: #5a6b7d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 33, 51, 0.12);
  --shadow-soft: 0 8px 24px rgba(15, 33, 51, 0.08);
  --radius: 18px;
  --container: 1180px;
  --header-h: 78px;
  --font-display: "Sora", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", "Sora", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 2.2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,230,239,.85);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo img, .logo svg { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.35rem; }

.nav-panel-head,
.nav-panel-foot,
.nav-backdrop {
  display: none;
}
.nav-links {
  display: contents;
}

.nav a {
  color: var(--navy); font-size: .93rem; font-weight: 600;
  position: relative; transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.55rem;
  height: 2px; background: var(--blue);
}
.header-actions { display: flex; align-items: center; gap: .7rem; }
.lang-switch {
  display: inline-flex; border: 1px solid var(--gray-line);
  border-radius: 999px; overflow: hidden; font-size: .76rem; font-weight: 700;
}
.lang-switch a { padding: .35rem .65rem; color: var(--muted); }
.lang-switch a.active { background: var(--navy); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .88rem 1.35rem; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; cursor: pointer; transition: .22s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(26,95,180,.28); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--gray-line); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--gray-line);
  border-radius: 10px; background: #fff; cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy); }

/* Hero home */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid; align-items: start;
  color: #fff; overflow: hidden; background: var(--navy);
}
body.is-home .hero {
  min-height: 100vh;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}
body.is-home .hero-content {
  padding-top: clamp(5.5rem, 14vh, 8.5rem);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.14);
  transform-origin: center center;
  will-change: transform;
}
.hero-slide.is-active img {
  animation: heroZoomOut 4.8s ease-out forwards;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,22,36,.55) 0%, rgba(10,22,36,.32) 42%, rgba(10,22,36,.12) 100%),
    linear-gradient(180deg, rgba(10,22,36,.08) 0%, rgba(10,22,36,.35) 100%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  left: clamp(1.2rem, 4vw, 2.5rem);
  bottom: 1.8rem;
  transform: none;
  z-index: 3;
  display: flex;
  gap: .45rem;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 999px;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.35);
  transition: width .25s ease, background .25s ease;
}
.hero-dots button.is-active {
  width: 22px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img,
  .hero-slide.is-active img {
    animation: none !important;
    transform: scale(1) !important;
  }
}
.hero-content {
  position: relative; z-index: 3;
  padding: clamp(4.5rem, 12vh, 7.5rem) 0 5.5rem;
  max-width: 920px;
}
.eyebrow {
  display: inline-block; margin-bottom: 1.1rem;
  color: #9fe0e7; font-size: .9rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; animation: fadeUp .7s .15s ease forwards;
}
.hero h1, .page-hero h1, .section-title {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.18;
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  min-height: 3.6em;
  line-height: 1.22;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
  -webkit-font-smoothing: antialiased;
}
.hero h1 .typed-cursor {
  display: inline-block; width: .08em; margin-left: .08em;
  background: #9fe0e7; animation: blink 1s step-end infinite;
  vertical-align: baseline;
}
.hero p {
  margin: 0 0 1.6rem; font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #fff; max-width: 40rem;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  opacity: 0; transform: translateY(12px);
}
.hero p.is-shown { opacity: 1; transform: none; transition: .6s ease; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .8rem;
  opacity: 0; transform: translateY(12px);
}
.hero-cta.is-shown { opacity: 1; transform: none; transition: .6s ease; }

/* Page hero with bg image */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 38vh; display: grid; align-items: center;
  color: #fff; padding: 0;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(10,22,36,.58) 8%, rgba(10,22,36,.34) 55%, rgba(10,22,36,.16) 100%);
}
.page-hero .container {
  position: relative; z-index: 3; padding: clamp(3.2rem, 8vh, 4.5rem) 0 clamp(2.4rem, 5vh, 3.2rem);
}
.page-hero h1 {
  margin: 0 0 .85rem;
  font-size: clamp(2.15rem, 4.2vw, 3.1rem);
  color: #fff;
  line-height: 1.22;
  min-height: 2.4em;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
}
.page-hero p {
  margin: 0; max-width: 40rem;
  color: #fff; font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
}
.breadcrumb { margin-bottom: .9rem; font-size: .84rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-gray { background: var(--gray); }

/* Alternating image background sections (readable frosted overlay) */
.section-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f3f7fb;
}
.section-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(.92) contrast(1.02);
}
.section-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(247, 250, 252, 0.86) 42%,
      rgba(255, 255, 255, 0.92) 100%
    );
  backdrop-filter: blur(1.5px);
}
.section-media > .container,
.section-media > * {
  position: relative;
  z-index: 1;
}
.section-media .section-head h2,
.section-media .section-title,
.section-media .kicker {
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.section-media .section-head p,
.section-media .lead {
  color: #3d4f61;
}
/* Optional stronger tint for denser text blocks */
.section-media.is-dense::after {
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(248, 251, 253, 0.92) 45%,
      rgba(255, 255, 255, 0.95) 100%
    );
}

.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.section-head.offset-right { margin-left: auto; text-align: right; }
.section-head h2, .section-title {
  margin: 0 0 .85rem;
  font-size: clamp(1.95rem, 3.1vw, 2.55rem);
  color: var(--navy);
  line-height: 1.25;
}
.section-head p, .lead { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-bottom: .7rem; color: var(--blue); font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--teal);
}

/* Asymmetric layouts */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split.uneven { grid-template-columns: 1.25fr .75fr; }
.split.uneven-left { grid-template-columns: .8fr 1.2fr; }

.visual-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.visual-frame::after {
  content: ""; position: absolute; inset: auto -8% -8% auto;
  width: 42%; height: 42%; border-radius: 18px;
  border: 2px solid rgba(26,95,180,.35); pointer-events: none;
}
.visual-frame.shift-up { transform: translateY(-18px) rotate(-1.2deg); }
.visual-frame.shift-down { transform: translateY(18px) rotate(1.2deg); }
.float-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--navy);
  padding: .7rem 1rem; border-radius: 12px; font-weight: 700; font-size: .88rem;
  box-shadow: var(--shadow-soft);
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.stat {
  background: #fff; border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 1.8rem 1.4rem;
  text-align: center; transition: .25s ease;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.25rem); color: var(--blue); margin-bottom: .35rem;
}
.stat span { color: var(--muted); font-size: .92rem; }

/* Process */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem;
}
.process-step {
  background: #fff; border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 1.4rem 1.05rem; min-height: 180px;
  transition: .25s ease;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: #c9daf0; }
.process-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,95,180,.1); color: var(--blue);
  font-size: .8rem; font-weight: 800; margin-bottom: .9rem;
}
.process-step h3 { margin: 0 0 .45rem; font-size: 1.05rem; color: var(--navy); }
.process-step p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.05rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: 1.35fr 1fr 1fr; }
.media-card, .info-card, .feature-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--gray-line); transition: .28s ease;
}
.media-card:hover, .info-card:hover, .feature-card:hover {
  transform: translateY(-7px); box-shadow: var(--shadow);
}
.media-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover img { transform: scale(1.05); }
.media-card .body, .info-card, .feature-card { padding: 1.3rem 1.2rem 1.45rem; }
.media-card h3, .info-card h3, .feature-card h3 {
  margin: 0 0 .5rem; font-size: 1.15rem; color: var(--navy); font-weight: 700;
}
.media-card p, .info-card p, .feature-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.feature-card .icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(26,95,180,.1); color: var(--blue); margin-bottom: 1rem; font-weight: 800;
}
.portfolio-main {
  background: linear-gradient(145deg, #0f2133 0%, #1a5fb4 100%);
  color: #fff; border: none; min-height: 220px;
}
.portfolio-main h3, .portfolio-main p { color: inherit; }
.portfolio-main p { opacity: .9; }

.table-wrap { overflow-x: auto; border: 1px solid var(--gray-line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; background: #fff; }
table.data th, table.data td {
  padding: 1rem 1.05rem; border-bottom: 1px solid var(--gray-line);
  text-align: left; vertical-align: top;
}
table.data th { width: 34%; background: var(--gray); color: var(--navy); font-weight: 700; }
table.data tr:last-child th, table.data tr:last-child td { border-bottom: none; }

.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.chip {
  border: 1px solid var(--gray-line); background: #fff; color: var(--muted);
  border-radius: 999px; padding: .5rem 1rem; font-size: .88rem; cursor: pointer; font-weight: 600;
}
.chip.active, .chip:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,95,180,.06); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.05rem; }
.product-card {
  border: 1px solid var(--gray-line); border-radius: var(--radius);
  padding: 1.45rem; background: #fff; transition: .25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-card .tag {
  display: inline-block; margin-bottom: .75rem; padding: .22rem .6rem;
  border-radius: 999px; background: rgba(31,158,171,.12); color: #167f8b;
  font-size: .76rem; font-weight: 700;
}
.product-card h3 { margin: 0 0 .5rem; color: var(--navy); font-size: 1.1rem; }
.product-card p { margin: 0 0 1rem; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.product-card ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--text); font-size: .88rem; }

.cta-band {
  background: linear-gradient(120deg, var(--navy), #1a4f96 55%, #1a8f9c);
  color: #fff; border-radius: 28px; padding: 2.8rem;
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
  overflow: hidden; position: relative;
}
.cta-band::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band h2 {
  margin: 0 0 .55rem; font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem); position: relative; line-height: 1.3;
}
.cta-band p { margin: 0; opacity: .92; position: relative; }

.form {
  display: grid; gap: 1rem; background: #fff;
  border: 1px solid var(--gray-line); border-radius: 22px; padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--gray-line); border-radius: 12px;
  padding: .85rem .95rem; background: #fcfdff; color: var(--text);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(26,95,180,.22); border-color: var(--blue);
}
.check { display: flex; gap: .55rem; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.form-msg { display: none; padding: .85rem 1rem; border-radius: 10px; font-size: .9rem; }
.form-msg.ok { display: block; background: rgba(31,158,171,.12); color: #0f6d77; }
.form-msg.err { display: block; background: rgba(180,50,50,.08); color: #9b2c2c; }

.site-footer {
  background: var(--navy); color: rgba(255,255,255,.82);
  padding: 3.2rem 0 1.6rem; margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.site-footer h3 { margin: 0 0 .9rem; color: #fff; font-size: 1rem; }
.site-footer a:hover { color: #9fe0e7; }
.footer-links { display: grid; gap: .45rem; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem;
}
.mobile-cta {
  display: none; position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90; box-shadow: var(--shadow);
}

/* Animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: .85s ease; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: .85s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: .8s ease; }
.reveal-scale.visible { opacity: 1; transform: none; }
.stagger > *.reveal { transition-delay: calc(var(--i, 0) * 80ms); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes blink {
  50% { opacity: 0; }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes heroZoomOut {
  from { transform: scale(1.14); }
  to { transform: scale(1); }
}

@media (max-width: 1100px) {
  .process { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(15, 33, 51, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 33, 51, 0.18);
    padding: 0;
    gap: 0;
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.22, .8, .28, 1);
    pointer-events: none;
  }
  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .nav-panel-title {
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--muted);
  }
  .nav-close {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: .35rem;
    padding: 1.5rem 1.2rem;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: .95rem .6rem;
    text-align: center;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    border-radius: 12px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--blue);
    background: rgba(26, 95, 180, 0.07);
  }
  .nav a.active::after { display: none; }
  .nav-panel-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.4rem 1.2rem 2rem;
    border-top: 1px solid var(--gray-line);
  }
  .nav-panel-logo img {
    height: 30px;
    width: auto;
    animation: none;
  }
  .menu-toggle { display: inline-block; }
  .header-actions .btn { display: none; }

  .process, .card-grid, .card-grid-3, .card-grid-2, .stats,
  .product-grid, .split, .footer-grid, .form-row {
    grid-template-columns: 1fr !important;
  }
  .split.reverse > :first-child { order: 0; }
  .section-head, .section-head.offset-right,
  .hero-content, .page-hero .container, .cta-band, .stat,
  .process-step, .feature-card, .info-card, .media-card .body,
  .product-card, .lead {
    text-align: center !important;
    margin-left: auto; margin-right: auto;
  }
  .section-head { max-width: 36rem; }
  .hero p, .page-hero p { margin-inline: auto; }
  .hero-cta, .filters, .cta-band { justify-content: center; }
  .kicker { justify-content: center; }
  .kicker::before { display: none; }
  .visual-frame.shift-up, .visual-frame.shift-down { transform: none; }
  .visual-frame::after { display: none; }
  .cta-band { flex-direction: column; align-items: center; }
  .mobile-cta { display: inline-flex; }
  .hero { min-height: 78vh; align-items: start; }
  .hero-content { padding: 3.8rem 0 2.5rem; }
  .page-hero { min-height: 34vh; align-items: center; }
  .page-hero .container { padding: 2.8rem 0 2.2rem; }
  .float-badge { left: 50%; bottom: 1rem; transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2rem, 7.5vw, 2.6rem); }
  .process { grid-template-columns: 1fr; }
}

.page-hero h1 .typed-cursor {
  display: inline-block; width: .08em; margin-left: .08em;
  background: #9fe0e7; animation: blink 1s step-end infinite;
}
.page-hero .hero-lead, .page-hero .hero-cta {
  opacity: 0; transform: translateY(12px);
}
.page-hero .hero-lead.is-shown, .page-hero .hero-cta.is-shown {
  opacity: 1; transform: none; transition: .6s ease;
}
.info-card .visual-frame::after { display: none; }

.page-hero .eyebrow {
  display: inline-block;
  margin-bottom: .85rem;
  color: #9fe0e7;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 1;
  animation: none;
}
.page-hero .breadcrumb + .eyebrow,
.page-hero .eyebrow {
  margin-top: .15rem;
}

/* Home transparent header overlay */
body.is-home .site-header {
  position: sticky;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
body.is-home .site-header.is-solid {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(221,230,239,.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(15,33,51,.06);
}
@media (min-width: 981px) {
  body.is-home .site-header:not(.is-solid) .nav a {
    color: rgba(255,255,255,.92);
  }
  body.is-home .site-header:not(.is-solid) .nav a:hover,
  body.is-home .site-header:not(.is-solid) .nav a.active {
    color: #fff;
  }
  body.is-home .site-header:not(.is-solid) .nav a.active::after {
    background: #7FE0E8;
  }
}
body.is-home .site-header:not(.is-solid) .lang-switch {
  border-color: rgba(255,255,255,.35);
}
body.is-home .site-header:not(.is-solid) .lang-switch a {
  color: rgba(255,255,255,.8);
}
body.is-home .site-header:not(.is-solid) .lang-switch a.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}
body.is-home .site-header:not(.is-solid) .header-actions .btn-primary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
body.is-home .site-header:not(.is-solid) .header-actions .btn-primary:hover {
  background: rgba(255,255,255,.12);
}
body.is-home .site-header:not(.is-solid) .menu-toggle {
  background: transparent;
  border-color: rgba(255,255,255,.4);
}
body.is-home .site-header:not(.is-solid) .menu-toggle span {
  background: #fff;
}
body.is-home .site-header:not(.is-solid) .logo-dark { display: none !important; }
body.is-home .site-header:not(.is-solid) .logo-light { display: block !important; }
body.is-home .site-header.is-solid .logo-dark { display: block !important; }
body.is-home .site-header.is-solid .logo-light { display: none !important; }
.logo-light { display: none; }
.logo { position: relative; display: inline-flex; align-items: center; }
.logo img {
  height: 36px; width: auto;
  animation: logoFloat 2.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  .logo img { animation: none; }
}



/* Line breaks: mobile-only vs always (PC natural wrapping) */
br.m-only {
  display: none;
}
br.always-br {
  display: block;
  content: "";
}
@media (max-width: 980px) {
  br.m-only {
    display: block;
    content: "";
  }
}


/* ===== PC Quick menu (right rail) ===== */
.quick-menu {
  display: none;
}
@media (min-width: 981px) {
  .quick-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    z-index: 95;
    width: 64px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(221, 230, 239, 0.95);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 33, 51, 0.12);
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  .quick-label {
    padding: .7rem .35rem .55rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    color: #fff;
    background: var(--navy);
  }
  .quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    padding: .85rem .3rem;
    color: var(--navy);
    border-top: 1px solid var(--gray-line);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
  }
  .quick-item:hover {
    background: rgba(26, 95, 180, 0.08);
    color: var(--blue);
  }
  .quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26, 95, 180, 0.08);
    color: var(--blue);
  }
  .quick-item:hover .quick-icon {
    background: var(--blue);
    color: #fff;
  }
  .quick-text {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    text-align: center;
  }
}

/* ===== Hero SCROLL cue ===== */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}
.hero-scroll-label {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
}
.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,.15), rgba(255,255,255,.95));
  animation: scrollLine 1.6s ease-in-out infinite;
  transform-origin: top center;
}
.hero-scroll-arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-top: -.35rem;
  animation: scrollArrow 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .35; transform: scaleY(.55); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes scrollArrow {
  0%, 100% { opacity: .4; transform: translateY(-2px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(3px) rotate(45deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line,
  .hero-scroll-arrow { animation: none; }
}
@media (max-width: 980px) {
  .hero-scroll {
    bottom: 1.1rem;
  }
  .hero-scroll-line { height: 22px; }
}
