:root {
  --navy: #0b1730;
  --navy-light: #162445;
  --gold: #d4a967;
  --gold-hover: #b8934d;
  --text-main: #111827;
  --text-sub: #4b5563;
  --bg-page: #f3f5fb;
  --header-h: 70px;
  --kslaw-header-h: var(--header-h);
  --header-container: 1140px;
  --header-bg: #101a2a;
  --header-bg-2: #0b1322;
  --header-line: rgba(255, 255, 255, 0.14);
  --header-line-2: rgba(255, 255, 255, 0.08);
  --header-ink: rgba(255, 255, 255, 0.92);
  --header-ink-dim: rgba(255, 255, 255, 0.66);
  --header-underline-w: 180px;
  --max-width: 1140px;
  --radius: 16px;
  --radius-lg: 18px;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.06);
  --border: #e5e7eb;
  --nav-duration: .9s;
  --menu-duration: .25s;
  --header-bg-height: 360px;
  --cta-bar-h: 72px;

  /* Shared textures (used across home/header/footer) */
  --tex-paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  --tex-fiber: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23f)' opacity='.30'/%3E%3C/svg%3E");
  --tex-marble: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='620'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.012' numOctaves='3' seed='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='620' height='620' filter='url(%23m)' opacity='.55'/%3E%3C/svg%3E");
  --wm-columns: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg opacity='.10' stroke='%230f172a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 96h120'/%3E%3Cpath d='M64 96L120 60l56 36'/%3E%3Cpath d='M80 96v72m40-72v72m40-72v72'/%3E%3Cpath d='M70 168h100'/%3E%3C/g%3E%3C/svg%3E");
  --tex-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23g)' opacity='.28'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (max-width: 992px) {
  :root { --header-h: 66px; }
}

@media (max-width: 420px) {
  :root { --header-h: 62px; }
}

@media (max-width: 768px) {
  :root { --cta-bar-h: 58px; }
}

body {
  margin: 0;
  padding: var(--header-h) 0 calc(var(--cta-bar-h) + env(safe-area-inset-bottom, 0px));
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-size: clamp(17px, 1.15vw, 19px);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.72;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; }

.ks-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.ksDivider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 169, 103, 0.92) 50%, transparent 100%);
  opacity: 0.85;
}

.ksDivider--soft {
  opacity: 0.6;
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 169, 103, 0.55) 50%, transparent 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10));
}

.ksDivider--pattern {
  height: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(212, 169, 103, 0.85), transparent),
    repeating-linear-gradient(90deg, rgba(212, 169, 103, 0.0) 0 16px, rgba(212, 169, 103, 0.26) 16px 17px);
  opacity: 0.72;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100000;
  transform: translateY(-160%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 19, 34, 0.96);
  color: rgba(255, 255, 255, 0.96);
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.skip-link:focus {
  transform: translateY(0);
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

ul, li { list-style: none; padding: 0; margin: 0; }

button { cursor: pointer; border: none; font-family: inherit; }
[hidden] { display: none !important; }

/* WordPress a11y helper (used by search labels) */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-only { display: inline; }
.m-only { display: none; }

@media (max-width: 768px) {
  input, select, textarea { font-size: 16px; }
  .pc-only { display: none; }
  .m-only { display: inline; }
}

/* SEO longform section (rendered via the_content() in templates) */
.seoBody {
  padding: 46px 0 70px;
}

.seoBody__inner {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.8vw, 34px);
  overflow: hidden;
}

.seoBody__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 420px at 10% 0%, rgba(212, 169, 103, 0.10), transparent 60%),
    radial-gradient(900px 380px at 92% 10%, rgba(11, 23, 48, 0.06), transparent 55%),
    var(--tex-fiber),
    var(--tex-grain);
  opacity: 0.55;
  pointer-events: none;
}

.seoBody__inner > * {
  position: relative;
}

.seoBody h1,
.seoBody h2,
.seoBody h3 {
  margin: 0.25em 0 0.55em;
  letter-spacing: -0.02em;
  color: rgba(11, 23, 48, 0.98);
}

.seoBody h1 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
}

.seoBody h2 {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  margin-top: 1.45em;
}

.seoBody h3 {
  font-size: 17px;
  font-weight: 850;
  margin-top: 1.15em;
}

.seoBody p {
  margin: 0.65em 0;
  color: rgba(15, 23, 42, 0.84);
}

.seoBody ul,
.seoBody ol {
  margin: 0.7em 0;
  padding-left: 1.2em;
  color: rgba(15, 23, 42, 0.84);
}

.seoBody li {
  margin: 0.35em 0;
}

.seoBody a {
  color: rgba(11, 23, 48, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(212, 169, 103, 0.58);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.seoBody a:hover {
  color: rgba(11, 23, 48, 1);
  text-decoration-color: rgba(212, 169, 103, 0.92);
}

.seoBody table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.seoBody th,
.seoBody td {
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
  vertical-align: top;
}

.seoBody th {
  background: rgba(212, 169, 103, 0.12);
  font-weight: 900;
}

.seoBody blockquote {
  margin: 16px 0;
  padding: 12px 14px;
  border-left: 4px solid rgba(212, 169, 103, 0.88);
  background: rgba(11, 23, 48, 0.04);
  border-radius: 14px;
  color: rgba(15, 23, 42, 0.78);
}

.seoLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.seoLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(11, 23, 48, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74));
  color: rgba(11, 23, 48, 0.92);
  font-weight: 850;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.seoLinks a:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 169, 103, 0.55);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

/* ===== Design refresh (2026-01) ===== */
:root {
  --hdr-ink: var(--color-ink, #111827);
  --hdr-ink-dim: var(--color-ink-dim, #4b5563);
  --hdr-navy: var(--color-navy, #0b1730);
  --hdr-navy-2: var(--color-navy-2, #162445);
  --hdr-gold: var(--color-gold, #d4a967);
  --hdr-gold-2: var(--color-gold-2, #b8934d);
  --hdr-bg: linear-gradient(135deg, rgba(11, 23, 48, 0.98) 0%, #0f233f 48%, #0b1428 100%);
}

.ksHeader {
  background: var(--hdr-bg);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ksHeader .header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ksHeader .logo-area {
  gap: 12px;
  padding: 10px 0;
}

.ksHeader .logo-text .logo-main { color: #fff; letter-spacing: -0.02em; font-weight: 900; font-family: var(--font-heading, inherit); }
.ksHeader .logo-text .logo-sub { color: rgba(226, 232, 240, 0.78); }

.ksHeader .menu-toggle span { background: #fff; }

.gnb {
  background: transparent;
}

.gnb .nav-link {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: clamp(14px, 1.05vw, 16px);
  padding: 18px 12px;
}

.gnb .nav-link.is-active,
.gnb .nav-link:hover {
  color: #fff;
}

.gnb .nav-link.is-active::after,
.gnb .nav-link:hover::after {
  background: var(--hdr-gold, #d4a967);
}

.gnb .sub-menu {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.26);
}

.gnb .sub-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.gnb .sub-menu a:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }

.nav-cta {
  background: linear-gradient(135deg, var(--hdr-gold, #d4a967), var(--hdr-gold-2, #b8934d));
  color: #0b1428;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 950;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1024px) {
  .ksHeader { box-shadow: 0 12px 30px rgba(2, 6, 23, 0.16); }
  .gnb {
    background: rgba(7, 10, 20, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .gnb .nav-link { padding: 14px 0; }
  .nav-cta { width: 100%; text-align: center; min-height: 48px; }
}

@media (max-width: 640px) {
  .seoLinks a {
    width: 100%;
  }
}

/* Header (Reference) */
#header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#header.site-header.scrolled,
#header.site-header.scroll,
#header.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

#header .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-img {
  height: 34px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.logo-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.nav-list {
  display: flex;
  gap: 26px;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  padding: 0 2px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s, bottom 0.3s;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link.active::after {
  width: 100%;
  bottom: 0;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 150px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  padding: 8px 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1001;
}

.nav-item:hover .sub-menu,
.nav-item:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-sub);
}

.sub-menu a:hover {
  background: #f9fafb;
  color: var(--navy);
  font-weight: 700;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 99px;
  transition: 0.2s;
  box-shadow: 0 4px 10px rgba(11, 23, 48, 0.15);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #1a2d4f;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 26px;
  height: 20px;
  position: relative;
  z-index: 1100;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }

@media (max-width: 992px) {
  .gnb {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: calc(var(--header-h) + 10px);
    transition: 0.3s ease-in-out;
    z-index: 1000;
    align-items: flex-start;
    gap: 0;
    overflow-x: hidden;
  }

  .gnb.open { right: 0; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
  }

  .nav-link::after { display: none; }

  .sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: none;
    pointer-events: auto;
    overflow-x: hidden;
  }

  .nav-item.active .sub-menu {
    display: block;
    padding: 8px 0 12px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    box-shadow: inset 0 1px 0 #f1f5f9;
  }

  .nav-item.active > .nav-link { background: #f8fafc; }

  .sub-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px 12px 48px;
    font-size: 14px;
    border-top: 1px solid #e5e7eb;
    font-weight: 700;
    color: #0f172a;
  }

  .sub-menu a:first-child { border-top: none; }

  .nav-cta {
    margin: 30px auto;
    width: 90%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
  }

  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .nav-link { font-size: 15px; }
}

/* =========================================================

   Common UI Components (KS)
   - Shared across FAQ/Location/Selfcheck/Index templates
========================================================= */

/* Global layout helpers */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 640px) {
  .inner { padding: 0 18px; }
}

.section-py {
  padding: clamp(64px, 6vw, 92px) 0;
}

.ks-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.ks-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.ks-card--pad { padding: 18px 18px; }

/* =========================================================

   KS Hero (animated pattern + moving texture slot)
   - Used by: selfcheck / faq / contact / cases
========================================================= */

.ks-hero {
  --ks-hero-slot-top: 62%;
  --ks-hero-slot-h: 86px;
  --ks-hero-slot-w: min(1040px, 92vw);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, #0b1730 0%, #142a55 100%);
}

.ks-hero::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(1100px 520px at 50% -10%, rgba(212, 169, 103, 0.20), transparent 55%),
    radial-gradient(900px 520px at 20% 100%, rgba(255, 255, 255, 0.08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0 1px, rgba(255, 255, 255, 0.00) 1px 14px),
    var(--tex-grain);
  background-size: auto, auto, 14px 14px, 120px 120px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  filter: saturate(1.05) contrast(1.03);
}

@media (prefers-reduced-motion: no-preference) {
  .ks-hero::before { animation: ks-hero-pan 18s linear infinite; }
}

.ks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1200px 760px at 12% 10%, rgba(2, 6, 23, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.55) 44%, rgba(2, 6, 23, 0.38) 100%);
}

.ks-hero__in {
  position: relative;
  z-index: 3;
}

.ks-hero-slot {
  position: absolute;
  left: 50%;
  top: var(--ks-hero-slot-top);
  width: var(--ks-hero-slot-w);
  height: var(--ks-hero-slot-h);
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  pointer-events: none;
  opacity: 0.96;
}

.ks-hero-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.18) 50%, rgba(2, 6, 23, 0.74) 100%);
  opacity: 0.9;
}

.ks-hero-slot__tex {
  position: absolute;
  inset: -40%;
  opacity: 0.72;
  background-image:
    linear-gradient(90deg, rgba(241, 196, 83, 0.22) 0%, rgba(255, 255, 255, 0.06) 36%, rgba(241, 196, 83, 0.18) 72%, rgba(255, 255, 255, 0.06) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0 1px, rgba(255, 255, 255, 0.00) 1px 12px),
    var(--tex-grain);
  background-size: 240% 100%, 12px 12px, 120px 120px;
  background-position: 0% 50%, 0 0, 0 0;
  mix-blend-mode: overlay;
  will-change: transform;
}

@keyframes ks-slot-move {
  0% { transform: translate3d(-10%, 0, 0); }
  100% { transform: translate3d(10%, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .ks-hero-slot__tex { animation: ks-slot-move 10s ease-in-out infinite alternate; }
}

@media (max-width: 640px) {
  .ks-hero { --ks-hero-slot-h: 78px; }
}

/* Reveal (scroll-in) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity .7s ease,
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    transform .7s cubic-bezier(.21,.87,.31,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-in,
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; transition-delay: 0ms; }
}

/* Stamp (rate) */
.ksStamp {
  --stamp-red: rgba(220, 38, 38, 0.92);
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 3px solid var(--stamp-red);
  color: var(--stamp-red);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.78)),
    var(--tex-grain);
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-14deg);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0.96;
}

.ksStamp::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  border: 2px dashed rgba(220, 38, 38, 0.55);
  opacity: 0.9;
}

.ksStamp__label {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ksStamp__value {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ksStamp--tl { top: 14px; left: 14px; }
.ksStamp--tr { top: 14px; right: 14px; }

@media (max-width: 520px) {
  .ksStamp { width: 82px; height: 82px; }
  .ksStamp__value { font-size: 20px; }
}

/* Simple lightbox (image zoom) */
.ksLightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(2, 6, 23, 0.72);
}

.ksLightbox.is-open { display: grid; }

.ksLightboxDialog {
  width: min(980px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0b1220;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.ksLightboxMedia {
  width: 100%;
  height: auto;
  display: block;
  background: #0b1220;
}

.ksLightboxBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(226, 232, 240, 0.92);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.ksLightboxClose {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 950;
}

.ksLightboxClose:hover { filter: brightness(1.05); }

.ks-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.ks-divider { height: 1px; background: rgba(15, 23, 42, 0.08); }

.ks-sectionTitle {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.ks-sectionDesc {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  max-width: 760px;
}

.ks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 950;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
  user-select: none;
}

.ks-btn:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
}

.ks-btn--primary {
  background: var(--navy, #0b1730);
  border-color: var(--navy, #0b1730);
  color: #fff;
  box-shadow: var(--shadow);
}

.ks-btn--secondary {
  background: #fff;
  color: var(--navy, #0b1730);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: var(--shadow-soft);
}

.ks-btn--gold {
  background: linear-gradient(135deg, rgba(212, 169, 103, 1) 0%, rgba(241, 196, 83, 1) 100%);
  color: #0b1730;
  border-color: rgba(212, 169, 103, 0.75);
  box-shadow: var(--shadow);
}

.ks-btn--ghost {
  background: #fff;
  color: var(--navy, #0b1730);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: var(--shadow-soft);
}

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

/* Subtle texture layer for premium cards.
   - Disabled on long-form KS subpages to avoid "photo layer" artifacts and reduce compositing. */
.ks-card {
  position: relative;
}

.ks-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: var(--tex-fiber);
  background-size: 260px 260px;
}

body.is-ks-sub .ks-card::before {
  content: none;
}

/* =========================================================
   KS Subpages (ks-sub)
   - only used by pasan/rehab/corporate templates
========================================================= */

@keyframes ks-drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 140px 90px, -110px 80px, 90px -70px, -70px 60px; }
}

@keyframes ks-hero-pan {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 260px -260px, 120px 60px; }
}

@keyframes ks-grain {
  0% { transform: translate3d(0,0,0); opacity: .11; }
  50% { transform: translate3d(-1.5%, 1%, 0); opacity: .14; }
  100% { transform: translate3d(1.2%, -1.2%, 0); opacity: .11; }
}

@keyframes ks-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 120% 50%; }
}

@keyframes ks-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ks-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes ks-sheen {
  0% { transform: translate3d(-56%, 0, 0) rotate(8deg); opacity: 0; }
  18% { opacity: 0.9; }
  45% { transform: translate3d(56%, 0, 0) rotate(8deg); opacity: 0; }
  100% { transform: translate3d(56%, 0, 0) rotate(8deg); opacity: 0; }
}

@keyframes ks-ring {
  0%, 100% { transform: scale(0.92); opacity: 0.55; }
  55% { transform: scale(1.07); opacity: 0.95; }
}

.ks-sub{
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1200px 760px at 16% 10%, rgba(212,169,103,.18), transparent 60%),
    radial-gradient(980px 640px at 86% 14%, rgba(22,36,69,.12), transparent 62%),
    radial-gradient(1100px 720px at 56% 92%, rgba(11,23,48,.07), transparent 66%),
    linear-gradient(180deg, rgba(246,247,251,1) 0%, rgba(243,245,251,1) 34%, rgba(242,244,250,1) 100%);
}

.ks-sub::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    var(--tex-paper),
    var(--tex-fiber),
    var(--wm-columns),
    repeating-linear-gradient(135deg, rgba(15,23,42,.08) 0 1px, rgba(255,255,255,0) 1px 14px);
  background-size: 180px 180px, 260px 260px, 240px 240px, 14px 14px;
  background-position: 0 0, 0 0, 84% 10%, 0 0;
  mix-blend-mode: multiply;
  z-index: 0;
}

.ks-sub::after{
  content:"";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  opacity: .13;
  background-image: var(--tex-grain);
  background-size: 120px 120px;
  mix-blend-mode: overlay;
  z-index: 0;
}

.ks-sub > *{ position: relative; z-index: 1; }

@media (prefers-reduced-motion: no-preference){
  .ks-sub::after{ animation: ks-grain 10s ease-in-out infinite; }
}

/* ===== PAGE CSS (original) ===== */
/* ===== Front Page (test layout) ===== */
.homePage.homeTest,
.homePage.homeTest * {
  box-sizing: border-box;
}

.homePage.homeTest {
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(212, 169, 103, 0.08), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(30, 58, 95, 0.06), transparent 55%),
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 22px 22px, auto;
  background-position: 0 0, 0 0, 0 0, 0 0;
}

.homePage.homeTest a {
  color: inherit;
  text-decoration: none;
}

  .svc-section{
    padding: 104px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
  }
  .svc-inner{
    max-width: 1200px;
    margin: 0 auto;
  }
  .svc-head{
    text-align:center;
    margin-bottom: 62px;
  }
  .svc-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:28px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(11,23,48,.08);
    border:1px solid rgba(11,23,48,.14);
    color:rgba(11,23,48,.85);
    font-weight:700;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:18px;
  }
  .svc-title{
    margin:0 0 14px;
    font-size:clamp(30px, 3.2vw, 42px);
    font-weight:900;
    letter-spacing:-.025em;
    font-family:var(--font-heading, inherit);
    color:#0f172a;
    line-height:1.1;
  }
  .svc-sub{
    margin:0;
    color:#6b7280;
    font-size:clamp(15px, 1vw, 16px);
    font-weight:500;
    line-height:1.8;
    letter-spacing:0.2px;
    max-width:70ch;
    margin:0 auto;
  }
  .svc-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
  .svc-card{
    background:#fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .svc-card:hover{
    transform: translateY(-6px);
    border-color: rgba(212,169,103,.48);
    box-shadow: 0 22px 50px rgba(15,23,42,.12);
  }
  .svc-ico{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background:linear-gradient(135deg, rgba(212,169,103,.14), rgba(11,23,48,.06));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 20px;
  }
  .svc-ico svg{
    width: 24px;
    height: 24px;
    stroke:#0b1730;
  }
  .svc-h3{
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.01em;
    font-family: var(--font-heading, inherit);
    color:#0f172a;
  }
  .svc-desc{
    margin: 0 0 20px;
    color:#6b7280;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    min-height: 44px;
  }
  .svc-list{
    list-style:none;
    padding:0;
    margin: 0 0 24px;
    display:grid;
    gap: 12px;
  }
  .svc-li{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    color:#0f172a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
  }
  .svc-check{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top: 2px;
    flex: 0 0 20px;
    background:#fff;
  }
  .svc-check svg{
    width: 12px; height: 12px;
    stroke:#0b1730;
    stroke-width: 3;
    fill:none;
  }
  .svc-btn{
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    font-weight: 850;
    font-size: 14px;
    color:#0f172a;
    cursor:pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .svc-btn:hover{
    background:#f8fafc;
    border-color:#d1d5db;
    transform: translateY(-2px);
  }
  .svc-btn svg{
    width: 16px; height: 16px;
    stroke:#0b1730;
  }
  @media (max-width: 980px){
    .svc-grid{ grid-template-columns: 1fr; }
    .svc-section{ padding: 80px 18px; }
    .svc-card{ padding: 24px; }
    .svc-head{ margin-bottom: 48px; }
  }
  .hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    color:#fff;
    --gold:#d4a967;
    --navy:#0b1730;
    --mx:0;
    --my:0;

    /* Remove the visible gap between fixed header and hero background */
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    min-height: calc(100vh + var(--header-h));
  }
  .hero__photo{
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(11,23,48,.62) 0%, rgba(11,23,48,.82) 62%, rgba(11,23,48,.94) 100%),
      var(--hero-photo) center/cover no-repeat;
    transform: scale(1.06) translate3d(calc(var(--mx)*10px), calc(var(--my)*10px), 0);
    animation: kenburns 14s ease-in-out infinite alternate;
    filter:saturate(.95) contrast(1.05);
    will-change: transform;
  }
  @keyframes kenburns{
    0%{transform:scale(1.06) translate3d(calc(var(--mx)*10px), calc(var(--my)*10px), 0)}
    100%{transform:scale(1.12) translate3d(calc(var(--mx)*16px), calc(var(--my)*16px), 0)}
  }
  .hero__vignette{
    position:absolute; inset:-2px; pointer-events:none;
    background:
      radial-gradient(1100px 520px at 50% 8%, rgba(255,255,255,.10), transparent 58%),
      radial-gradient(900px 560px at 50% 88%, rgba(0,0,0,.38), transparent 64%),
      radial-gradient(70% 90% at 50% 50%, transparent 42%, rgba(0,0,0,.42) 100%);
    mix-blend-mode: normal;
  }
  .hero__grid{
    position:absolute; inset:0; pointer-events:none;
    opacity:.18;
    background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
    background-size: 26px 26px;
    transform: translate3d(calc(var(--mx)*10px), calc(var(--my)*10px), 0);
    animation: gridDrift 10s linear infinite;
  }
  @keyframes gridDrift{
    0%{background-position:0 0}
    100%{background-position:260px -260px}
  }
  .hero__noise{
    position:absolute; inset:0; pointer-events:none;
    opacity:.07;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    animation: noiseFlicker 1.6s steps(2) infinite;
  }
  @keyframes noiseFlicker{
    0%{opacity:.08}
    50%{opacity:.12}
    100%{opacity:.09}
  }
  .hero__orb{
    position:absolute; width:520px; height:520px; border-radius:999px;
    background: radial-gradient(circle at 30% 30%, rgba(212,169,103,.22), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,.10), transparent 62%);
    filter: blur(2px);
    opacity:.38;
    pointer-events:none;
    transform: translate3d(calc(var(--mx)*18px), calc(var(--my)*18px), 0);
    animation: orbFloat 9s ease-in-out infinite alternate;
  }
  .hero__orb.one{left:-220px; top:-160px; animation-duration: 10.5s}
  .hero__orb.two{right:-260px; bottom:-220px; animation-duration: 12.2s; opacity:.45}
  @keyframes orbFloat{
    0%{transform:translate3d(calc(var(--mx)*18px), calc(var(--my)*18px),0) scale(1)}
    100%{transform:translate3d(calc(var(--mx)*26px), calc(var(--my)*26px),0) scale(1.06)}
  }
  .hero__dust{
    position:absolute; inset:0; pointer-events:none;
    overflow:hidden;
  }
  .dust{
    position:absolute;
    width:4px; height:4px; border-radius:50%;
    background: rgba(255,255,255,.48);
    box-shadow: 0 0 10px rgba(255,255,255,.35);
    left: calc(var(--x) * 1%);
    top: calc(var(--y) * 1%);
    opacity: .0;
    animation: dustUp 7s linear infinite;
    animation-delay: calc(var(--d) * 1s);
    transform: translate3d(0,0,0);
  }
  @keyframes dustUp{
    0%{opacity:0; transform: translate3d(0, 30px, 0) scale(.8)}
    15%{opacity:.55}
    70%{opacity:.35}
    100%{opacity:0; transform: translate3d(calc(var(--mx)*18px), -220px, 0) scale(1.2)}
  }
  .hero__header{position:relative; z-index:2}
  .hero__headerin{
    max-width:1100px; margin:0 auto; padding:18px 20px;
    display:flex; align-items:center; justify-content:space-between; gap:18px;
  }
  .brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:-.02em}
  .brand__icon{
    width:30px;height:30px;border-radius:10px;
    display:inline-flex;align-items:center;justify-content:center;
    background:rgba(212,169,103,.16);
    border:1px solid rgba(212,169,103,.25);
  }
  .nav{display:flex; gap:22px; font-weight:800; color:rgba(255,255,255,.82)}
  .nav a{padding:10px 2px; font-size:15px; position:relative}
  .nav a:hover{color:#fff}
  .ctaTop{
    height:44px; padding:0 18px; border-radius:12px;
    display:inline-flex; align-items:center; justify-content:center;
    background:rgba(212,169,103,.92);
    color:#0b1730; font-weight:900;
    border:1px solid rgba(0,0,0,.12);
    box-shadow:0 18px 42px rgba(2,6,23,.25);
    transition:.18s ease;
    white-space:nowrap;
  }
  .ctaTop:hover{transform:translateY(-1px); background:rgba(212,169,103,1)}
  .hero__inner{
    position:relative; z-index:2;
    max-width:1100px; margin:0 auto;
    padding:86px 20px 88px;
    text-align:center;
  }
  .pill{
    display:inline-flex; align-items:center; justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(212,169,103,.12);
    border:1px solid rgba(212,169,103,.26);
    color:rgba(212,169,103,.98);
    font-weight:700;
    font-size:13px;
    letter-spacing:.1em;
    text-transform:uppercase;
    margin:0 0 22px;
  }
  .title{
    margin:0 0 24px;
    font-size:clamp(48px, 6vw, 72px);
    font-weight:900;
    letter-spacing:-.035em;
    line-height:1.1;
    font-family: var(--font-heading, inherit);
    text-shadow:0 20px 50px rgba(2,6,23,.28);
  }
  .title .em{color:rgba(212,169,103,.98); font-weight: 900; font-style: normal;}
  .desc{
    margin:0 auto 40px;
    max-width:72ch;
    color:rgba(255,255,255,.85);
    font-weight:450;
    font-size:clamp(16px, 1.1vw, 18px);
    line-height:1.85;
    letter-spacing:0.3px;
  }
  .actions{
    display:flex; justify-content:center; gap:16px; flex-wrap:wrap;
    margin-bottom:48px;
  }
  .btn{
    height:54px; padding:0 28px;
    border-radius:12px;
    display:inline-flex; align-items:center; justify-content:center;
    gap:8px;
    font-weight:700;
    letter-spacing:-.005em;
    font-size:15px;
    transition:.18s ease;
    min-width:200px;
    cursor:pointer;
    border:none;
  }
  .btn--primary{
    position:relative;
    background:linear-gradient(135deg, rgba(212,169,103,.95) 0%, rgba(241,196,83,.92) 100%);
    color:#0b1730;
    border:1px solid rgba(0,0,0,.12);
    box-shadow:0 20px 50px rgba(2,6,23,.32);
    overflow:hidden;
    font-weight:800;
  }
  .btn--primary::before{
    content:"";
    position:absolute; inset:-40px;
    background: conic-gradient(from 180deg, transparent, rgba(255,255,255,.32), transparent);
    opacity:.0;
    transform: translateX(-35%) rotate(0deg);
    transition: .28s ease;
  }
  .btn--primary:hover{transform:translateY(-3px); box-shadow: 0 24px 60px rgba(2,6,23,.36);}
  .btn--primary:hover::before{
    opacity:.8;
    transform: translateX(35%) rotate(22deg);
  }
  .btn--ghost{
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.94);
    border:1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(6px);
  }
  .btn--ghost:hover{transform:translateY(-3px); background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.42); box-shadow: 0 12px 30px rgba(2,6,23,.18)}
  .phone{
    width:22px;height:22px;border-radius:8px;
    display:inline-flex;align-items:center;justify-content:center;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    font-size:13px;
  }
  .metrics{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    max-width:760px;
    margin:0 auto;
  }
  .metric{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    border-radius:16px;
    padding:18px 14px 16px;
    box-shadow:0 18px 46px rgba(2,6,23,.28);
    backdrop-filter: blur(6px);
    transform: translate3d(calc(var(--mx)*6px), calc(var(--my)*6px), 0);
    transition: .18s ease;
  }
  .metric:hover{transform:translate3d(calc(var(--mx)*6px), calc(var(--my)*6px),0) translateY(-2px)}
  .metric__num{
    font-size:28px; font-weight:950;
    color:rgba(212,169,103,.95);
    letter-spacing:-.02em;
  }
  .metric__label{
    margin-top:6px;
    font-size:14px; font-weight:850;
    color:rgba(255,255,255,.78);
  }

  .trustbar{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin: -16px auto 34px;
    max-width: 980px;
  }
  .trustbar__item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -0.01em;
    backdrop-filter: blur(6px);
  }
  @media (max-width:980px){
    .nav{display:none}
    .hero__inner{padding:58px 20px 64px}
    .metrics{grid-template-columns:1fr; max-width:420px}
    .btn{width:100%; max-width:360px}
    .trustbar{ margin: -10px auto 32px; padding: 0 8px; }
    .trustbar__item{ width: 100%; max-width: 420px; }
  }
  @media (prefers-reduced-motion: reduce){
    .hero__photo,.hero__grid,.hero__noise,.hero__orb,.dust{animation:none!important}
  }
.hero{
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-1px;
  height:260px;
  pointer-events:none;
  z-index:5;
  background:
    radial-gradient(120% 120% at 50% 115%,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.55) 35%,
      rgba(255,255,255,0) 70%),
    linear-gradient(to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 20%,
      rgba(255,255,255,.65) 60%,
      rgba(255,255,255,1) 100%);
  filter: blur(0.2px);
}
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:0;
  height:260px;
  pointer-events:none;
  z-index:6;
  opacity:.08;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size:120px 120px;
  mix-blend-mode: multiply;
}
.about4, .about4 * { box-sizing: border-box; }
.about4 img { max-width:100%; display:block; }
.about4 a { text-decoration:none; color:inherit; }
.about4{
  --navy:#0b1730;
  --gold:#d4a967;
  --bg:#ffffff;
  --border:#e5e7eb;
  --text:#0f172a;
  --muted:#64748b;
  --shadow-lg: 0 26px 60px rgba(2,6,23,.18);
  --shadow-md: 0 18px 36px rgba(2,6,23,.14);
  --shadow-sm: 0 12px 26px rgba(2,6,23,.06);
  padding: 96px 0;
  background: var(--bg);
  font-family: "Pretendard Variable", Pretendard, "SUIT", -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--text);
}
.about4-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.about4-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.about4-visual{ position:relative; }
.about4-photo{
  border-radius: 26px;
  overflow:hidden;
  background: #0b1730;
  box-shadow: var(--shadow-lg);
}
.about4-photo img{
  width:100%;
  height: 440px;
  object-fit: cover;
  transform: scale(1.01);
}
.about4-badge{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.about4-badge-ico{
  width: 46px; height: 46px;
  border-radius: 999px;
  background: rgba(212,169,103,.18);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  font-weight: 900;
}
.about4-badge-k{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.about4-badge-v{
  margin-top: 2px;
  font-size: 15px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.about4-pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212,169,103,.14);
  border: 1px solid rgba(212,169,103,.24);
  color: rgba(11,23,48,.92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .16em;
  margin: 0 0 14px;
}
.about4-title{
  margin: 0;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 950;
  color: var(--navy);
}
.about4-title span{ color: var(--gold); }
.about4-desc{
  margin: 16px 0 0;
  color: #475569;
  font-weight: 600;
  line-height: 1.85;
  font-size: 15px;
  max-width: 62ch;
}
.about4-features{
  margin-top: 26px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.about4-item{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  padding: 18px 18px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about4-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(2,6,23,.10);
  border-color: rgba(212,169,103,.35);
}
.about4-ico{
  width: 46px; height: 46px;
  border-radius: 16px;
  background: rgba(212,169,103,.16);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  flex: 0 0 46px;
}
.about4-item-title{
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.about4-item-desc{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.65;
}
.about4-cta{
  margin-top: 22px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(2,6,23,.22);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.about4-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(2,6,23,.28);
  background: #162445;
}
@media (max-width: 980px){
  .about4{ padding: 72px 0; }
  .about4-grid{ grid-template-columns: 1fr; gap: 26px; }
  .about4-photo img{ height: 360px; }
}
@media (max-width: 640px){
  .about4-inner{ padding: 0 18px; }
  .about4-photo img{ height: 300px; }
  .about4-badge{ left: 14px; right: 14px; bottom: 14px; padding: 14px 14px; }
}
@media (prefers-reduced-motion: reduce){
  .about4-item{ transition:none!important }
}
#testimonials{
  padding: 100px 0;
  background: #fff;
}
#testimonials .inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
#testimonials .tst-head{
  text-align: center;
  margin-bottom: 34px;
}
#testimonials .tst-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.12);
}
#testimonials .tst-title{
  margin: 14px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0f172a;
}
#testimonials .tst-sub{
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  color: #64748b;
  line-height: 1.7;
}
#testimonials .tst-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 18px 22px;
  margin-top: 28px;
}
#testimonials .tst-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 12px 26px rgba(2,6,23,0.06);
  overflow: hidden;
}
#testimonials .tst-stars{
  display: inline-flex;
  gap: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #f59e0b;
  margin-bottom: 12px;
}
#testimonials .tst-quote{
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.8;
  max-width: 60ch;
}
#testimonials .tst-mark{
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: rgba(37,99,235,0.18);
  user-select: none;
  pointer-events: none;
}
#testimonials .tst-hr{
  height: 1px;
  background: rgba(226,232,240,0.9);
  margin: 16px 0 14px;
}
#testimonials .tst-foot{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
#testimonials .tst-name{
  font-weight: 900;
  color: #0f172a;
  font-size: 14px;
  margin: 0 0 3px;
}
#testimonials .tst-case{
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}
#testimonials .tst-date{
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}
#testimonials .tst-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#testimonials .tst-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(2,6,23,0.10);
  border-color: rgba(203,213,225,1);
}
@media (max-width: 980px){
  #testimonials{ padding: 86px 0; }
  #testimonials .tst-grid{
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}
@media (max-width: 640px){
  #testimonials .inner{ padding: 0 18px; }
  #testimonials .tst-card{ padding: 20px 16px 16px; border-radius: 12px; }
  #testimonials .tst-mark{ font-size: 40px; }
}
    .ks-strengths{
      --navy:#0b1730;
      --navy2:#162445;
      --gold:#d4a967;
      --ink:#0f172a;
      --muted:#667085;
      --line:#e8edf6;
      --card:#ffffff;
      position:relative;
      padding:96px 20px;
      background:
        radial-gradient(900px 420px at 18% 18%, rgba(212,169,103,.14), transparent 55%),
        radial-gradient(860px 420px at 88% 26%, rgba(90,120,255,.10), transparent 56%),
        linear-gradient(#fff, #fff);
      overflow:hidden;
    }
    .ks-strengths::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 1px 1px, rgba(15,23,42,.10) 1px, transparent 1.6px);
      background-size:26px 26px;
      opacity:.20;
      mask-image: radial-gradient(closest-side, rgba(0,0,0,.9), transparent 72%);
      pointer-events:none;
    }
    .ks-strengths .ks-wrap{max-width:1120px; margin:0 auto; position:relative; z-index:1;}
    .ks-strengths .ks-top{ text-align:center; margin-bottom:44px; }
    .ks-strengths .ks-pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid rgba(11,23,48,.10);
      background:rgba(11,23,48,.04);
      color:var(--navy);
      font-weight:800;
      font-size:12px;
      letter-spacing:.14em;
      text-transform:uppercase;
    }
    .ks-strengths .ks-title{
      margin:14px 0 0;
      font-size:clamp(26px, 3vw, 36px);
      line-height:1.18;
      color:var(--ink);
      font-weight:900;
      letter-spacing:-.02em;
    }
    .ks-strengths .ks-sub{
      margin:10px auto 0;
      max-width:720px;
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
    }
    .ks-strengths .ks-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:18px;
      margin-top:32px;
    }
    .ks-strengths .ks-item{
      position:relative;
      padding:26px 22px 22px;
      border:1px solid var(--line);
      border-radius:18px;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
      box-shadow: 0 12px 30px rgba(15,23,42,.06);
      transform: translateY(10px);
      opacity:0;
      transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .55s ease, box-shadow .35s ease, border-color .35s ease;
      overflow:hidden;
    }
    .ks-strengths .ks-item::after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(420px 220px at 20% 0%, rgba(212,169,103,.18), transparent 60%);
      opacity:0;
      transition: opacity .35s ease;
      pointer-events:none;
    }
    .ks-strengths .ks-item:hover{
      transform: translateY(-6px);
      border-color: rgba(212,169,103,.35);
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
    }
    .ks-strengths .ks-item:hover::after{opacity:1;}
    .ks-strengths .ks-icon{
      width:54px; height:54px;
      border-radius:16px;
      display:grid; place-items:center;
      background: rgba(11,23,48,.06);
      border:1px solid rgba(11,23,48,.08);
      margin-bottom:14px;
      position:relative;
    }
    .ks-strengths .ks-icon svg{
      width:26px; height:26px;
      stroke: var(--navy);
      stroke-width:2.2;
      fill:none;
      opacity:.92;
    }
    .ks-strengths .ks-h{
      margin:2px 0 6px;
      font-weight:900;
      color:var(--ink);
      font-size:17px;
      letter-spacing:-.01em;
    }
    .ks-strengths .ks-d{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }
    .ks-strengths .ks-item.is-in{
      transform: translateY(0);
      opacity:1;
    }
    .ks-strengths .ks-item.is-in{ transition-delay: var(--d, 0ms); }
    @media (max-width: 980px){
      .ks-strengths{ padding:84px 18px; }
      .ks-strengths .ks-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px){
      .ks-strengths{ padding:76px 16px; }
      .ks-strengths .ks-grid{ grid-template-columns: 1fr; gap:14px; }
      .ks-strengths .ks-item{ padding:22px 18px; }
    }
    @media (prefers-reduced-motion: reduce){
      .ks-strengths .ks-item,
      .ks-strengths .ks-item:hover{ transition:none; transform:none; }
      .ks-strengths .ks-item{ opacity:1; }
    }
    .contactShot{
      padding: 78px 20px 90px;
    }
    .contactShot__inner{
      max-width: 980px;
      margin: 0 auto;
    }
    .contactShot__head{
      text-align:center;
      margin-bottom: 34px;
    }
    .contactShot__pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      color:#6b7280;
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 10px 26px rgba(2,6,23,.04);
    }
    .contactShot__title{
      margin: 12px 0 8px;
      font-size: clamp(28px, 3vw, 34px);
      letter-spacing: -0.02em;
      font-weight: 900;
      color:#0b1220;
    }
    .contactShot__sub{
      margin:0;
      font-size: 14px;
      color:#8a94a6;
    }
    .contactShot__grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: start;
    }
    .contactShot__card{
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(2,6,23,.07);
    }
    .contactShot__mapCard{
      padding: 18px;
      min-height: 420px;
      display:grid;
      place-items:center;
      position: relative;
      overflow: hidden;
    }
    .contactShot__mapCard::before{
      content:"";
      position:absolute; inset: 14px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(15,23,42,.06), rgba(15,23,42,.03));
    }
    .contactShot__mapBox{
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      min-height: 380px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      text-align:center;
      gap: 12px;
      color:#0f172a;
    }
    .contactShot__mapIcon{
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display:grid;
      place-items:center;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 14px 30px rgba(2,6,23,.08);
    }
    .contactShot__mapText strong{
      display:block;
      font-size: 15px;
      font-weight: 900;
      color:#0b1220;
      margin-bottom: 4px;
    }
    .contactShot__mapText span{
      display:block;
      font-size: 13px;
      color:#7b8799;
      font-weight: 600;
    }
    .contactShot__stack{
      display:grid;
      gap: 14px;
    }
    .contactShot__infoCard{
      padding: 18px 18px 16px;
    }
    .contactShot__infoHead{
      display:flex;
      align-items:center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .contactShot__label{
      font-size: 14px;
      font-weight: 900;
      color:#0b1220;
      letter-spacing: -0.01em;
    }
    .contactShot__infoBody{
      font-size: 14px;
      line-height: 1.65;
      color:#2b3442;
      font-weight: 700;
    }
    .contactShot__muted{
      color:#8a94a6;
      font-weight: 700;
    }
    .contactShot__ico{
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: rgba(212,169,103,.18);
      border: 1px solid rgba(212,169,103,.28);
      position: relative;
      flex: 0 0 auto;
    }
    .contactShot__ico::after{
      content:"";
      position:absolute;
      inset: 7px;
      border-radius: 999px;
      background: rgba(212,169,103,.75);
      mask-size: contain;
      mask-position: center;
      mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      -webkit-mask-position: center;
      -webkit-mask-repeat: no-repeat;
    }
    .contactShot__ico--pin::after{
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s7-4.4 7-12a7 7 0 1 0-14 0c0 7.6 7 12 7 12Zm0-8.7a3.3 3.3 0 1 0 0-6.6 3.3 3.3 0 0 0 0 6.6Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s7-4.4 7-12a7 7 0 1 0-14 0c0 7.6 7 12 7 12Zm0-8.7a3.3 3.3 0 1 0 0-6.6 3.3 3.3 0 0 0 0 6.6Z'/%3E%3C/svg%3E");
    }
    .contactShot__ico--clock::after{
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm.8-14.2a.8.8 0 0 0-1.6 0v5c0 .27.14.52.37.66l3.4 2.1a.8.8 0 1 0 .84-1.36l-3.01-1.86V7.8Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm.8-14.2a.8.8 0 0 0-1.6 0v5c0 .27.14.52.37.66l3.4 2.1a.8.8 0 1 0 .84-1.36l-3.01-1.86V7.8Z'/%3E%3C/svg%3E");
    }
    .contactShot__ico--phone::after{
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.9c.4-.4 1-.5 1.5-.2l2.5 1.5c.6.36.8 1.1.5 1.7l-1 1.9a1 1 0 0 0 .2 1.2l4.8 4.8a1 1 0 0 0 1.2.2l1.9-1c.6-.3 1.3-.1 1.7.5l1.5 2.5c.3.5.2 1.1-.2 1.5l-1.2 1.2c-1.1 1.1-2.8 1.5-4.3.9-3.5-1.3-6.9-3.9-9.6-6.6S2.8 8.9 1.5 5.4c-.6-1.5-.2-3.2.9-4.3L3.6 2.9Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.9c.4-.4 1-.5 1.5-.2l2.5 1.5c.6.36.8 1.1.5 1.7l-1 1.9a1 1 0 0 0 .2 1.2l4.8 4.8a1 1 0 0 0 1.2.2l1.9-1c.6-.3 1.3-.1 1.7.5l1.5 2.5c.3.5.2 1.1-.2 1.5l-1.2 1.2c-1.1 1.1-2.8 1.5-4.3.9-3.5-1.3-6.9-3.9-9.6-6.6S2.8 8.9 1.5 5.4c-.6-1.5-.2-3.2.9-4.3L3.6 2.9Z'/%3E%3C/svg%3E");
    }
    .contactShot__hours,
    .contactShot__phones{
      display:grid;
      gap: 8px;
      margin-top: 2px;
    }
    .contactShot__hoursRow,
    .contactShot__phonesRow{
      display:flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(15,23,42,.03);
      border: 1px solid rgba(15,23,42,.06);
      font-size: 12.5px;
    }
    .contactShot__hoursRow strong,
    .contactShot__phonesRow strong{
      font-size: 12.5px;
      font-weight: 900;
      color:#0b1220;
    }
    @media (max-width: 980px){
      .contactShot__grid{ grid-template-columns: 1fr; }
      .contactShot__mapCard{ min-height: 340px; }
      .contactShot__mapBox{ min-height: 300px; }
    }
    .latestCases{ padding: 64px 20px 84px; }
    .latestCases__inner{ max-width: 1120px; margin: 0 auto; }
    .latestCases__head{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap: 18px; margin-bottom: 22px;
    }
    .latestCases__pill{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 6px 10px;
      font-size: 11px; font-weight: 800; letter-spacing:.14em;
      color:#3b82f6;
      background: rgba(59,130,246,.10);
      border:1px solid rgba(59,130,246,.18);
      border-radius: 999px;
    }
    .latestCases__title{
      margin: 10px 0 6px;
      font-size: clamp(24px, 2.6vw, 32px); font-weight: 950; color:#0b1220;
      letter-spacing:-0.01em;
    }
    .latestCases__sub{
      margin:0;
      font-size: 15px;
      color:#6b7280;
      line-height:1.7;
    }
    .latestCases__more{
      display:inline-flex; align-items:center; gap: 8px;
      margin-top: 6px;
      font-size: 12.5px; font-weight: 800;
      color:#2563eb; text-decoration:none;
      padding: 10px 12px;
      border-radius: 10px;
    }
    .latestCases__more:hover{ background: rgba(37,99,235,.06); }
    .latestCases__grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .lcase{
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      border-radius: 12px;
      overflow:hidden;
      box-shadow: 0 10px 24px rgba(2,6,23,.08);
    }
    .lcase__top{
      position:relative;
      height: 130px;
      background: #0b1730;
      overflow:hidden;
    }
    .lcase__photo{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.05);
      opacity: .92;
    }
    .lcase__topOverlay{
      position:absolute; inset:0;
      background:
        radial-gradient(1200px 260px at 50% -40%, rgba(212,169,103,.30), transparent 60%),
        radial-gradient(900px 220px at 10% 120%, rgba(59,130,246,.22), transparent 60%),
        linear-gradient(180deg, rgba(11,23,48,.05), rgba(11,23,48,.78));
      pointer-events:none;
    }
    .lcase__top::after{
      content:"";
      position:absolute; inset:-40px;
      background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity:.22;
      transform: rotate(-2deg);
      pointer-events:none;
    }
    .lcase__badge{
      position:absolute; top: 12px; left: 12px;
      display:inline-flex; align-items:center; justify-content:center;
      height: 24px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 11px; font-weight: 900;
      color:#e6f0ff;
      background: rgba(37,99,235,.88);
      border:1px solid rgba(255,255,255,.18);
      z-index: 2;
    }
    .lcase__body{ padding: 14px 16px 14px; }
    .lcase__h3{
      margin: 2px 0 6px;
      font-size: 16px;
      font-weight: 900;
      color:#0b1220;
      letter-spacing:-0.01em;
    }
    .lcase__desc{
      margin: 0 0 12px;
      font-size: 14px;
      color:#6b7280;
      line-height:1.55;
    }
    .lcase__line{
      height:1px;
      background: rgba(15,23,42,.08);
      margin: 10px 0 10px;
    }
    .lcase__facts{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin: 0 0 10px;
    }
    .lcase__fact dt{
      font-size: 12px;
      color:#94a3b8;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .lcase__fact dd{
      margin:0;
      font-size: 13px;
      font-weight: 900;
      color:#0b1220;
    }
    .lcase__cta{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:8px;
      text-decoration:none;
      font-size: 12px;
      font-weight: 900;
      color:#2563eb;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(37,99,235,.06);
    }
    .lcase__cta:hover{ background: rgba(37,99,235,.10); }
    @media (max-width: 980px){
      .latestCases__grid{ grid-template-columns: 1fr; }
      .latestCases__head{ flex-direction: column; align-items:flex-start; }
    }
    .contactForm{ padding: 72px 20px 84px; }
    .contactForm__inner{ max-width: 1080px; margin: 0 auto; }
    .contactForm__head{ text-align:center; margin-bottom: 30px; }
    .contactForm__kicker{
      display:inline-flex; align-items:center; justify-content:center;
      font-size: 11px; font-weight: 800; letter-spacing: .18em;
      color:#b8924e;
      margin-bottom: 10px;
    }
    .contactForm__title{
      margin: 0 0 8px;
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 900;
      letter-spacing: -0.02em;
      color:#0b1220;
    }
    .contactForm__sub{
      margin: 0 auto;
      max-width: 560px;
      color:#6b7280;
      font-size: 15px;
      line-height: 1.7;
    }
    .contactForm__grid{
      display:grid;
      grid-template-columns: 1fr 420px;
      gap: 28px;
      align-items:start;
    }
    .cform{ padding: 8px 0 0; }
    .cform__field{ margin-bottom: 16px; }
    .cform__label{
      display:block;
      font-size: 13px;
      font-weight: 800;
      color:#111827;
      margin-bottom: 8px;
    }
    .cform__req{ color:#b91c1c; font-weight: 900; }
    .cform__input{
      width: 100%;
      box-sizing: border-box;
      height: 48px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(15,23,42,.16);
      background:#fff;
      color:#111827;
      font-size: 15px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .cform__input::placeholder{ color:#9ca3af; }
    .cform__input:focus{
      border-color: rgba(184,146,78,.75);
      box-shadow: 0 0 0 4px rgba(212,169,103,.18);
    }
    .cform__select{
      padding-right: 40px;
      background-image:
        linear-gradient(45deg, transparent 50%, #6b7280 50%),
        linear-gradient(135deg, #6b7280 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
      background-position:
        calc(100% - 18px) 18px,
        calc(100% - 12px) 18px,
        0 0;
      background-size: 6px 6px, 6px 6px, 100% 100%;
      background-repeat: no-repeat;
      appearance: none;
    }
    .cform__textarea{
      height: auto;
      padding: 12px 14px;
      border-radius: 12px;
      resize: vertical;
      min-height: 140px;
      line-height: 1.7;
    }
    .cform__submit{
      width: 100%;
      height: 48px;
      border: 0;
      border-radius: 14px;
      background: #caa84a;
      color: #111827;
      font-weight: 900;
      font-size: 16px;
      letter-spacing: -0.01em;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(202,168,74,.22);
      transition: transform .12s ease, filter .12s ease;
    }
    .cform__submit:hover{ filter: brightness(.98); }
    .cform__submit:active{ transform: translateY(1px); }
    .cform__note{
      margin: 10px 0 0;
      text-align:center;
      font-size: 12px;
      color:#9ca3af;
    }
    .cside{ display:flex; flex-direction:column; gap: 16px; }
    .csideCard{
      background: #171a2e;
      color:#fff;
      border-radius: 6px;
      padding: 22px 22px;
      box-shadow: 0 18px 40px rgba(2,6,23,.22);
    }
    .csideCard__title{
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing:-0.01em;
    }
    .csideRow{
      display:flex;
      gap: 12px;
      padding: 14px 0;
    }
    .csideDivider{
      height:1px;
      background: rgba(255,255,255,.10);
    }
    .csideIcon{
      width: 34px; height: 34px;
      border-radius: 10px;
      background: rgba(212,169,103,.16);
      display:flex; align-items:center; justify-content:center;
      color: #d4a967;
      flex: 0 0 auto;
    }
    .csideLbl{
      margin:0;
      font-size: 11px;
      color: rgba(255,255,255,.62);
      font-weight: 800;
    }
    .csideMain{
      margin: 4px 0 2px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color:#fff;
    }
    .csideSub{
      margin:0;
      font-size: 11px;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
    .csideUrgent{
      background: #caa84a;
      border-radius: 6px;
      padding: 18px 18px;
      box-shadow: 0 18px 40px rgba(202,168,74,.18);
    }
    .csideUrgent__title{
      margin: 0 0 6px;
      font-size: 13px;
      font-weight: 900;
      color:#111827;
    }
    .csideUrgent__sub{
      margin:0;
      font-size: 11.5px;
      color: rgba(17,24,39,.76);
      line-height: 1.6;
    }
    .csideUrgent__btn{
      margin-top: 12px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      height: 44px;
      background: #fff;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 4px;
      text-decoration:none;
      font-size: 13px;
      font-weight: 900;
      color:#111827;
    }
    .csideUrgent__btnIcon{
      display:inline-flex;
      color:#111827;
    }
    @media (max-width: 980px){
      .contactForm__grid{ grid-template-columns: 1fr; }
      .csideCard, .csideUrgent{ max-width: 520px; margin: 0 auto; }
      .cform{ max-width: 520px; margin: 0 auto; }
    }

.cform__input[aria-invalid="true"] {
  border-color: rgba(185, 28, 28, 0.75);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.cform__field--consent { margin-top: 6px; }

.cform__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #4b5563;
  font-weight: 600;
}

.cform__check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.cform__error {
  display: block;
  min-height: 14px;
  margin-top: 6px;
  font-size: 11px;
  color: #b91c1c;
  font-weight: 700;
}

.form-status {
  margin: 10px 0 4px;
  min-height: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
}

.form-status[data-tone="error"] { color: #b91c1c; }
.form-status[data-tone="success"] { color: #0f766e; }

/* ===== FOOTER CSS (duplicated) ===== */
/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0b1220 0%, #070a14 100%);
  color: #e5e7eb;
  padding: 68px clamp(16px, 3vw, 64px) 36px;
  border-top: 1px solid rgba(212, 169, 103, 0.20);
  font-family: "Pretendard Variable", "Pretendard", "SUIT", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  position: relative;
  overflow: hidden;
  line-height: 1.75;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background:
    radial-gradient(1000px 520px at 18% 10%, rgba(212, 169, 103, 0.28), transparent 60%),
    radial-gradient(900px 520px at 86% 90%, rgba(255, 255, 255, 0.12), transparent 64%),
    radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
  mix-blend-mode: normal;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, rgba(255, 255, 255, 0.00) 1px 16px);
  mix-blend-mode: overlay;
}

.site-footer > * { position: relative; z-index: 1; }

.footer-cta {
  margin: 0 auto 42px;
}

.footer-cta__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-cta__card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(900px 520px at 85% 30%, rgba(212, 169, 103, 0.20), transparent 55%),
    linear-gradient(135deg, #0b1730 0%, #142a55 100%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-cta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 70% at 22% 20%, #000 20%, transparent 75%);
}

.footer-cta__copy { min-width: 0; }

.footer-cta__kicker {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.70);
}

.footer-cta__title {
  margin: 10px 0 0;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.96);
}

.footer-cta__desc {
  margin: 10px 0 0;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.90);
}

.footer-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-cta__btn,
.footer-cta__tel {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.footer-cta__btn--gold {
  background: linear-gradient(135deg, rgba(212, 169, 103, 1) 0%, rgba(241, 196, 83, 1) 100%);
  color: #0b1730;
  border-color: rgba(212, 169, 103, 0.75);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
}

.footer-cta__tel {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta__btn:hover,
.footer-cta__tel:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 169, 103, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.footer-cta__btn--gold:hover {
  border-color: rgba(212, 169, 103, 0.85);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.26);
}

.footer-cta__btn:focus-visible,
.footer-cta__tel:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.footer-logo-img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }

.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }

.footer-logo-main { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }

.footer-logo-sub { font-size: 13px; color: #cbd5e1; letter-spacing: 0.04em; }

.footer-desc { font-size: 15px; line-height: 1.8; color: #cbd5e1; }

.footer-contact {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #e2e8f0;
}

.footer-contact__row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 6px 0;
}

.footer-contact__row dt {
  margin: 0;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-contact__row dd {
  margin: 0;
  min-width: 0;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 169, 103, 0.0);
}

.footer-contact a:hover {
  border-bottom-color: rgba(212, 169, 103, 0.55);
}

.footer-col h4 { font-size: 16px; font-weight: 900; margin: 2px 0 12px; color: #f8fafc; }

.footer-links { display: grid; gap: 10px; font-size: 15px; }

.footer-links a { color: #e2e8f0; text-decoration: none; opacity: 0.9; }

.footer-links a:hover { color: #f1c453; opacity: 1; }
.footer-links a:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
  border-radius: 10px;
}

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

.footer-quick a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.footer-quick a:hover { background: rgba(241,196,83,0.12); color: #f1c453; }
.footer-quick a:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
}


.footer-line { max-width: 1240px; margin: 26px auto 16px; height: 1px; background: rgba(255,255,255,0.08); }

.footer-notice { max-width: 1240px; margin: 0 auto; font-size: 14px; line-height: 1.9; color: #94a3b8; }

.footer-bottom {
  max-width: 1240px;
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #94a3b8;
}

/* ===== Design refresh (2026-01) ===== */
:root {
  --ftr-bg: linear-gradient(180deg, #0b1220 0%, #070a14 100%);
  --ftr-ink: #e5e7eb;
  --ftr-ink-dim: #94a3b8;
  --ftr-gold: var(--color-gold, #d4a967);
  --ftr-gold-2: var(--color-gold-2, #b8934d);
}

.site-footer {
  background: var(--ftr-bg);
  border-top: 1px solid rgba(212, 169, 103, 0.24);
  box-shadow: 0 -18px 36px rgba(2, 6, 23, 0.35);
}

.footer-cta__card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 520px at 82% 28%, rgba(212, 169, 103, 0.22), transparent 60%),
    linear-gradient(135deg, #0b1730 0%, #132a50 100%);
}

.footer-cta__btn--gold {
  background: linear-gradient(135deg, var(--ftr-gold), var(--ftr-gold-2));
  color: #0b1428;
}

.footer-logo-main { color: #f8fafc; }
.footer-logo-sub { color: rgba(226, 232, 240, 0.78); }
.footer-desc { color: rgba(226, 232, 240, 0.82); }

.footer-contact { color: rgba(226, 232, 240, 0.88); }
.footer-contact__row dt { color: rgba(148, 163, 184, 0.9); }
.footer-contact__row dd { color: rgba(226, 232, 240, 0.9); }

.footer-links a { color: rgba(226, 232, 240, 0.9); }
.footer-links a:hover { color: var(--ftr-gold); }

.footer-quick a {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.9);
}

.footer-quick a:hover { background: rgba(241, 196, 83, 0.14); color: var(--ftr-gold); }

.footer-notice { color: rgba(148, 163, 184, 0.9); }
.footer-bottom { color: rgba(148, 163, 184, 0.95); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-desc { max-width: none; }
}

@media (max-width: 640px) {
  .site-footer { padding: 52px 16px 28px; }
  .footer-cta__card { grid-template-columns: 1fr; padding: 18px 16px; }
  .footer-cta__actions {
    justify-content: flex-start;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .footer-cta__btn,
  .footer-cta__tel {
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }
  .footer-cta__tel { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-quick { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .footer-contact__row { grid-template-columns: 48px 1fr; }
}

@media (max-width: 520px) {
  .footer-quick { grid-template-columns: 1fr; }
}

/* Fixed CTA bar (mobile + desktop) */

.fixed-cta-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(11, 18, 32, 0.90);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 169, 103, 0.30);
  box-shadow: 0 -18px 50px rgba(2, 6, 23, 0.45);
}

.fixed-cta-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 18px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 950;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  min-width: 0;
  touch-action: manipulation;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(212, 169, 103, 0.30);
}

.cta-btn__text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-btn__ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.cta-btn__ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.cta-btn--gold {
  background: linear-gradient(135deg, rgba(212, 169, 103, 1) 0%, rgba(241, 196, 83, 1) 100%);
  color: #0b1730;
  border-color: rgba(212, 169, 103, 0.75);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.22);
}

.cta-btn--gold:hover { border-color: rgba(212, 169, 103, 0.92); }

.cta-btn--kakao {
  background: rgba(254, 229, 0, 0.14);
  border-color: rgba(254, 229, 0, 0.34);
  color: rgba(255, 255, 255, 0.96);
}

.cta-btn--kakao:hover {
  background: rgba(254, 229, 0, 0.20);
  border-color: rgba(254, 229, 0, 0.46);
}

.cta-btn--navy {
  background: rgba(11, 23, 48, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-btn--navy:hover { filter: brightness(1.08); }

.cta-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.cta-btn:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .fixed-cta-inner {
    max-width: 980px;
    gap: 10px;
    padding: 10px 12px;
  }

  .cta-btn {
    min-height: 50px;
    padding: 0 10px;
    border-radius: 16px;
    font-size: 13px;
  }

  .cta-btn__ico,
  .cta-btn__ico svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .fixed-cta-inner { gap: 8px; padding: 10px 10px; }
  .cta-btn { font-size: 13px; border-radius: 14px; min-height: 48px; }
  .cta-btn__ico { width: 18px; height: 18px; }
  .cta-btn__ico svg { width: 18px; height: 18px; }
  .cta-btn__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* Back to top */
.ksToTop {
  position: fixed;
  right: 18px;
  bottom: calc(var(--cta-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.86);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
}

.ksToTop svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.ksToTop.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.ksToTop:hover {
  background: rgba(11, 18, 32, 0.94);
  border-color: rgba(212, 169, 103, 0.36);
}

.ksToTop:focus-visible {
  outline: 3px solid rgba(212, 169, 103, 0.45);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .ksToTop {
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

