/* ==========================================================
   이장표 수출 파트너 — Portfolio Site
   Glassmorphism + Minimal
   ========================================================== */

:root {
  --color-primary: #0A0A0A;
  --color-accent: #1B365D;
  --color-accent-dark: #14294A;
  --color-bg: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-muted: #737373;
  --color-muted-strong: #525252;
  --color-border: #E5E5E5;
  --color-border-strong: #D4D4D4;
  --color-error: #D32F2F;
  --color-glass-bg: rgba(255, 255, 255, 0.5);
  --color-glass-border: rgba(255, 255, 255, 0.8);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.08),
                  inset 0 1px 0 rgba(255, 255, 255, 1);
  --shadow-glass-lg: 0 16px 48px rgba(31, 38, 135, 0.12),
                     inset 0 1px 0 rgba(255, 255, 255, 1);
  --shadow-focus: 0 0 0 3px rgba(27, 54, 93, 0.15);

  --transition: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1120px;
  --content-width: 880px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               system-ui, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(27, 54, 93, 0.20) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(100, 150, 200, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(27, 54, 93, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(150, 180, 220, 0.15) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ------- Layout ------- */

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

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container, .container--narrow { padding: 0 20px; }
}

/* ------- Typography ------- */

.eyebrow {
  display: inline-block;
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  padding-bottom: 10px;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted-strong);
  max-width: 780px;
  line-height: 1.65;
  word-break: keep-all;
  text-wrap: pretty;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ------- Glass Card ------- */

.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  padding: 32px;
}

@media (max-width: 600px) {
  .glass-card {
    border-radius: 12px;
    padding: 24px 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}

/* ------- Navigation ------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition-fast);
}

.nav.scrolled {
  background: rgba(250, 250, 250, 0.7);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 2px 16px rgba(31, 38, 135, 0.06);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1B365D 0%, #3A5A8F 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.2);
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 0.9125rem;
  color: var(--color-muted-strong);
}

.nav__links a {
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--color-primary); }

.nav__cta {
  padding: 10px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition-fast);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--color-accent); }

.nav__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .nav__inner { padding: 0 20px; }
}

/* ------- Hero ------- */

.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted-strong);
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.06);
}

.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero__title {
  font-size: clamp(2.125rem, 4.8vw, 3.375rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}
.hero__title > span { display: block; }

.hero__title em {
  font-style: normal;
  color: var(--color-accent);
  background: linear-gradient(180deg, transparent 62%, rgba(27, 54, 93, 0.14) 62%, rgba(27, 54, 93, 0.14) 92%, transparent 92%);
  padding: 0 2px;
}

.hero__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted-strong);
  margin-bottom: 40px;
  max-width: 460px;
  text-wrap: pretty;
  word-break: keep-all;
}

.hero__lead strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 48px;
  max-width: 100%;
}
.hc-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.005em;
  box-shadow: 0 2px 8px rgba(31,38,135,0.06);
  white-space: nowrap;
}
.hc-chip-arrow {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  padding: 14px 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--color-primary);
  border-color: var(--color-border-strong);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.9);
}

.btn--submit {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--submit:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}

.btn__arrow {
  transition: transform var(--transition-fast);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 100%;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.hero__stat-num small {
  font-size: 0.8125rem;
  margin-left: 2px;
  color: var(--color-accent);
  font-weight: 600;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* Hero Visual */

.hero__visual {
  position: relative;
  height: 560px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass-lg);
  padding: 20px;
  animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-card--main {
  top: 40px;
  left: 0;
  right: 40px;
  padding: 28px;
  animation-delay: 0.1s;
  overflow: hidden;
}
.hc-rows {
  position: relative;
  max-height: 240px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.hc-rows__inner {
  transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.875rem;
  animation: hcRowIn 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hcRowIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-card--email {
  top: 280px;
  left: 40px;
  right: 0;
  padding: 20px;
  animation-delay: 0.3s;
}

.hero-card--chart {
  top: 20px;
  right: -20px;
  width: 200px;
  padding: 18px;
  animation-delay: 0.5s;
}

.hc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hc-row:last-child { border-bottom: none; }

.hc-email-body {
  min-height: 3.4em;
}
.hc-email-body::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.95em;
  background: var(--color-accent);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: hcCaret 900ms steps(1) infinite;
}
.hc-email-body.is-done::after { display: none; }
@keyframes hcCaret {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.hc-flag {
  width: 28px; height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1B365D 50%, #E5E5E5 50%);
}
.hc-flag--us { background: linear-gradient(180deg, #B22234 0 20%, #fff 20% 40%, #B22234 40% 60%, #fff 60% 80%, #B22234 80% 100%); position: relative; }
.hc-flag--us::before { content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 60%; background: #3C3B6E; }
.hc-flag--de { background: linear-gradient(180deg, #000 33%, #DD0000 33% 66%, #FFCE00 66%); }
.hc-flag--jp { background: #fff; position: relative; }
.hc-flag--jp::after { content: ''; position: absolute; inset: 0; margin: auto; width: 10px; height: 10px; border-radius: 50%; background: #BC002D; }
.hc-flag--ae { background: linear-gradient(180deg, #00732F 33%, #fff 33% 66%, #000 66%); position: relative; }
.hc-flag--ae::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 30%; background: #FF0000; }

.hc-row-name {
  flex: 1;
  font-weight: 500;
  color: var(--color-primary);
}
.hc-row-role {
  font-size: 0.75rem;
  color: var(--color-muted);
}
.hc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.hc-email-subject {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.hc-email-body {
  font-size: 0.8125rem;
  color: var(--color-muted-strong);
  line-height: 1.55;
}

.hc-email-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin: 10px 0 4px;
}
.hc-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #3A5A8F 0%, #1B365D 100%);
  border-radius: 3px 3px 0 0;
  min-height: 12%;
  transform-origin: bottom;
  transition: height 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-chart-bar:nth-child(6) {
  background: linear-gradient(180deg, #1B365D 0%, #0A0A0A 100%);
}

.hc-chart-caption {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: -0.005em;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 560px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 48px; }
}

@media (max-width: 640px) {
  .hero__chips { gap: 5px 6px; }
  .hc-chip { padding: 6px 10px; font-size: 0.7rem; }
  .hc-chip-arrow { font-size: 0.7rem; }
  .hero__visual {
    height: auto;
    min-height: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100%;
    animation-delay: 0s !important;
  }
  .hero-card--main { padding: 20px; }
  .hero-card--email { padding: 18px; }
  .hero-card--chart { padding: 16px; }
  .hc-row { font-size: 0.8125rem; gap: 10px; }
  .hc-row-name { font-size: 0.85rem; }
  .hc-row-role { font-size: 0.7rem; }
  .hc-email-subject { font-size: 0.875rem; }
  .hc-email-body { font-size: 0.78rem; }
  .hc-rows { max-height: 220px; }
}

@media (max-width: 520px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__stat-num { font-size: 1.375rem; }
  .hero__stat-num small { font-size: 0.875rem; }
  .hero__stat-label { font-size: 0.75rem; }
}

/* ------- Credentials Strip ------- */

.creds {
  padding: 14px 0 48px;
}

.creds__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cred-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.cred-medal {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.35),
              inset 0 2px 0 rgba(255,255,255,0.3);
  position: relative;
}
.cred-medal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.4);
}
.cred-medal svg { width: 22px; height: 22px; color: #fff; }

.cred-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.cred-desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .creds__inner { grid-template-columns: 1fr; }
}

/* ------- Why Section (6 차별점) ------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass-lg);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 54, 93, 0.3), transparent);
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,54,93,0.1) 0%, rgba(27,54,93,0.03) 100%);
  border: 1px solid rgba(27,54,93,0.12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.why-icon svg { width: 22px; height: 22px; }

.why-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  word-break: keep-all;
}

.why-desc {
  font-size: 0.9125rem;
  color: var(--color-muted-strong);
  line-height: 1.6;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ------- Approach (3 axes) ------- */

.approach {
  padding: 96px 0;
}

.approach__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pillar {
  padding: 36px 32px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  position: relative;
}

.pillar__kicker {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(27, 54, 93, 0.1);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-primary);
  margin-bottom: 14px;
  word-break: keep-all;
}

.pillar__desc {
  font-size: 0.9375rem;
  color: var(--color-muted-strong);
  line-height: 1.65;
  word-break: keep-all;
}

.approach__pullquote {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(27,54,93,0.06) 0%, rgba(27,54,93,0.02) 100%);
  border: 1px solid rgba(27,54,93,0.12);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.approach__pullquote strong { color: var(--color-accent); font-weight: 700; }

@media (max-width: 860px) {
  .approach__pillars { grid-template-columns: 1fr; }
}

/* ------- Target (이런 기업) ------- */

.target {
  padding: 96px 0;
}

.target__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

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

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: default;
}

.target-item:hover {
  border-color: rgba(27, 54, 93, 0.3);
  background: rgba(27, 54, 93, 0.04);
  transform: translateX(4px);
}

.target-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.target-check svg { width: 12px; height: 12px; color: #fff; stroke-width: 3; }

.target-text {
  font-size: 0.9375rem;
  color: var(--color-primary);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

@media (max-width: 860px) {
  .target__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ------- Pricing ------- */

.pricing {
  padding: 96px 0;
}

.pricing__tabs {
  display: inline-flex;
  padding: 6px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  box-shadow: var(--shadow-glass);
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  isolation: isolate;
}
.pricing__tabs::-webkit-scrollbar { display: none; }

/* Sliding pill — moves behind the active tab */
.pricing__tabs-indicator {
  position: absolute;
  top: 6px;
  left: 0;
  height: calc(100% - 12px);
  width: 0;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transform: translateX(0);
  transition: transform 480ms cubic-bezier(0.4, 0.0, 0.2, 1),
              width 480ms cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, width;
}
.pricing__tabs-indicator.is-ready {
  opacity: 1;
}

.pricing__tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-strong);
  letter-spacing: -0.005em;
  transition: color 300ms ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  background: transparent;
}

.pricing__tab:hover { color: var(--color-primary); }

.pricing__tab.active {
  color: #fff;
}

/* Fallback: if JS fails to position the indicator (stays at width:0),
   fall back to showing the active tab with a solid pill background.
   When JS runs, it adds .is-ready to the indicator — that signal
   also hides this fallback via the parent's data state. */
.pricing__tabs:not(:has(.pricing__tabs-indicator.is-ready)) .pricing__tab.active {
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing__tab-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #F59E0B;
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1.3;
}

.pricing__card-wrap {
  position: relative;
  min-height: 540px;
}

.pricing-card {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass-lg);
  overflow: hidden;
  animation: cardFade 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active { display: grid; }

@keyframes cardFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-card--featured {
  border: 1px solid rgba(27, 54, 93, 0.25);
  box-shadow: 0 20px 60px rgba(27, 54, 93, 0.18),
              inset 0 1px 0 rgba(255,255,255,1);
}

.pc-left {
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(27,54,93,0.06) 0%, rgba(27,54,93,0.02) 100%);
  border-right: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.pc-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-best {
  display: inline-block;
  padding: 3px 10px;
  background: #F59E0B;
  color: #fff;
  border-radius: 4px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.pc-name {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-wrap: balance;
}

.pc-summary {
  font-size: 0.9375rem;
  color: var(--color-muted-strong);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pc-meta {
  display: grid;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
.pc-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.pc-meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pc-meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.pc-meta-value--price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pc-meta-value--price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-left: 4px;
}

.pc-right {
  padding: 48px 44px;
}

.pc-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.pc-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-primary);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.pc-features li strong { font-weight: 700; color: var(--color-accent); }

.pc-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(27, 54, 93, 0.1);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.pc-check svg { width: 10px; height: 10px; color: var(--color-accent); stroke-width: 3; }

.pc-notes {
  padding: 14px 16px;
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: #7A5A00;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pc-notes-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.6875rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #8B6914;
}

.pc-cta {
  width: 100%;
  padding: 16px;
  font-size: 0.9375rem;
}

/* Custom pricing — items table */
.pc-items {
  display: grid;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.5);
}
.pc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.875rem;
  gap: 16px;
}
.pc-item:last-child { border-bottom: none; }
.pc-item-name {
  color: var(--color-primary);
  font-weight: 500;
}
.pc-item-unit {
  color: var(--color-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pc-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 36px 28px; }
  .pc-right { padding: 36px 28px; }
}

/* ------- Process Timeline ------- */

.process {
  padding: 96px 0;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(27,54,93,0.3), rgba(27,54,93,0.3), transparent);
  z-index: 0;
}

.pstep {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pstep__num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 6px 20px rgba(31, 38, 135, 0.1),
              inset 0 1px 0 rgba(255,255,255,1);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  transition: all var(--transition);
}

.pstep:hover .pstep__num {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.08);
}

.pstep__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pstep__desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
  padding: 0 8px;
}

@media (max-width: 860px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .process__steps::before { display: none; }
  .pstep { text-align: left; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
  .pstep__num { margin: 0; width: 44px; height: 44px; font-size: 1rem; }
  .pstep__title { margin-top: 10px; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ------- Differentiators ------- */

.diff {
  padding: 96px 0;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.diff-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition);
}
.diff-card:hover { transform: translateY(-2px); }

.diff-card__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(27,54,93,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.diff-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted-strong);
  line-height: 1.65;
}

.report-card {
  padding: 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a1a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(27, 54, 93, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.report-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  position: relative;
}

.report-card__rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.report-card__rows > div {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.report-row-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.report-row-val {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .diff__grid { grid-template-columns: 1fr; }
  .report-card__rows { grid-template-columns: 1fr; gap: 20px; }
}

/* ------- FAQ ------- */

.faq {
  padding: 96px 0;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.05);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(27, 54, 93, 0.2);
  box-shadow: 0 8px 28px rgba(31, 38, 135, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.015em;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-q-prefix {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-right: 10px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(27, 54, 93, 0.08);
  display: grid;
  place-items: center;
  transition: all var(--transition);
  color: var(--color-accent);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform var(--transition); }
.faq-item[open] .faq-icon {
  background: var(--color-accent);
  color: #fff;
}
.faq-item[open] .faq-icon svg { transform: rotate(180deg); }

.faq-a {
  padding: 0 28px 24px 28px;
  font-size: 0.9375rem;
  color: var(--color-muted-strong);
  line-height: 1.7;
  animation: fadeInDown 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-q { padding: 18px 20px; font-size: 0.9375rem; }
  .faq-a { padding: 0 20px 20px; }
}

/* ------- Contact CTA ------- */

.contact {
  padding: 96px 0 120px;
}

.contact__card {
  padding: 64px 56px;
  background: linear-gradient(135deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.45) 100%);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(31, 38, 135, 0.12),
              inset 0 1px 0 rgba(255,255,255,1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact__card::before,
.contact__card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.contact__card::before {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,54,93,0.15), transparent 70%);
  top: -120px; left: -80px;
}
.contact__card::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(100,150,200,0.15), transparent 70%);
  bottom: -160px; right: -100px;
}

.contact__inner { position: relative; z-index: 1; }

.contact__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}

.contact__desc {
  font-size: 1.0625rem;
  color: var(--color-muted-strong);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.contact-channel {
  padding: 24px 20px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: left;
  display: block;
}

.contact-channel:hover {
  border-color: rgba(27,54,93,0.3);
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.contact-channel__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(27,54,93,0.08);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.contact-channel__icon svg { width: 18px; height: 18px; }

.contact-channel__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.contact-channel__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.005em;
  word-break: break-all;
}

@media (max-width: 720px) {
  .contact__card { padding: 44px 28px; }
  .contact__channels { grid-template-columns: 1fr; }
}

/* ------- Footer ------- */

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(250,250,250,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.footer__brand { font-weight: 600; color: var(--color-muted-strong); }

/* ------- Scroll reveal ------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 420ms; }

/* ------- Process steps: emphasized one-by-one reveal ------- */
.process__steps.reveal-stagger > .pstep {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.process__steps.reveal-stagger.in-view > .pstep { opacity: 1; transform: translateY(0) scale(1); }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(1) { transition-delay: 0ms; }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(2) { transition-delay: 220ms; }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(3) { transition-delay: 440ms; }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(4) { transition-delay: 660ms; }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(5) { transition-delay: 880ms; }
.process__steps.reveal-stagger.in-view > .pstep:nth-child(6) { transition-delay: 1100ms; }

/* Number counter pops in with a delay relative to its step */
.process__steps.reveal-stagger > .pstep .pstep__num {
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1) 200ms,
              background-color 400ms ease;
  transform: scale(0.6);
}
.process__steps.reveal-stagger.in-view > .pstep .pstep__num {
  transform: scale(1);
}

/* ------- Accessibility ------- */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
