/* =====================================================
   Route9 — Premium Agency CSS  v3.0
   ===================================================== */

/* ── Variables ── */
:root {
  --bg:       #0a0a0a;
  --bg2:      #0f0f0f;
  --bg3:      #141414;
  --bg4:      #1c1c1c;
  --gold:     #F0AB00;
  --gold2:    #ffd54f;
  --sky:      #38BDF8;
  --sky2:     #7dd3fc;
  --white:    #ffffff;
  --gray1:    rgba(255,255,255,0.85);
  --gray2:    rgba(255,255,255,0.50);
  --gray3:    rgba(255,255,255,0.25);
  --gray4:    rgba(255,255,255,0.08);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);

  --font-en:  'Montserrat', sans-serif;
  --font-ko:  'Noto Sans KR', sans-serif;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --t3:       0.3s var(--ease);
  --t4:       0.4s var(--ease);
  --t6:       0.6s var(--ease);

  --r:   10px;
  --rl:  16px;
  --rxl: 24px;
  --cw:  1240px;
  --py:  130px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-ko);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--t3); }
ul  { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
input, textarea, select {
  font-family: var(--font-ko);
  font-size: 15px;
  color: var(--white);
}

/* ── Layout ── */
.container { max-width: var(--cw); margin: 0 auto; padding: 0 40px; }

/* ── Noise Texture ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────── */
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s, opacity 0.35s, background 0.35s;
  mix-blend-mode: normal;
}
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
body.cursor-hover #cursor-ring {
  width: 64px; height: 64px;
  background: rgba(240,171,0,0.08);
  border-color: rgba(240,171,0,0.5);
}
body.cursor-hover #cursor-dot { width: 4px; height: 4px; }

/* ─────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.sec-head {
  text-align: center;
  margin-bottom: 72px;
}
.sec-title {
  font-family: var(--font-en);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.sec-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray2);
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  transition: all var(--t4);
  position: relative;
  overflow: hidden;
  cursor: none;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240,171,0,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  transition: all var(--t4);
  cursor: none;
  white-space: nowrap;
}
.btn-ghost svg { transition: transform var(--t3); }
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}
.btn-ghost:hover svg { transform: translateX(5px); }

/* GSAP reveal base state */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo em {
  font-style: normal;
  color: var(--gold);
}
.nav-logo-img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nl {
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray2);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--t3);
  cursor: none;
}
.nl:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nl.nl-cta {
  background: var(--gold);
  color: #0a0a0a !important;
  font-weight: 800;
  margin-left: 8px;
  padding: 9px 22px;
}
.nl.nl-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,171,0,0.3);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t4);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.70) 100%),
    linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: 76px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  opacity: 0;
}
.badge-line {
  display: block;
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
}
.badge-text {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.h-line {
  display: block;
  font-family: var(--font-ko);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--white);
}
.h-line.gold { color: var(--gold); }
.h-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: .12em;
}
.h-word {
  display: inline-block;
  transform: translateY(110%);
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  cursor: none;
  text-decoration: none;
}
.scroll-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray3);
}
.scroll-bar {
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.5); opacity: .2; }
}

/* ─────────────────────────────────────
   MARQUEE
───────────────────────────────────── */
.marquee-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray3);
  padding: 0 24px;
  transition: color var(--t3);
}
.marquee-track .sep {
  color: var(--gold);
  font-weight: 900;
  padding: 0 4px;
}
.marquee-track span:not(.sep):hover { color: var(--white); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ─────────────────────────────────────
   STATS
───────────────────────────────────── */
.stats {
  background: var(--bg);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,171,0,0.4), transparent);
}

/* Decorative background text */
.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.stats-inner::before {
  content: 'RESULTS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(255,255,255,0.015);
  pointer-events: none;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 56px 0;
  align-self: stretch;
}
.stat-item {
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.stat-item:hover::before { width: 72px; }

.stat-num {
  font-family: var(--font-en);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suf {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: rgba(240,171,0,0.6);
}
.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray3);
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.svc-section {
  background: var(--bg2);
  padding: var(--py) 0;
  position: relative;
}

/* Tab nav */
.tab-nav {
  display: flex;
  gap: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 5px;
  margin-bottom: 48px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray3);
  transition: all var(--t3);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: none;
}
.tab-ico { width: 17px; height: 17px; flex-shrink: 0; }
.tab-btn:hover { color: var(--gray1); background: rgba(255,255,255,0.06); }
.tab-btn.active {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-weight: 700;
  border: 1px solid var(--border2);
}

/* Tab pane */
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: paneIn .4s var(--ease); }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Service card */
.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color var(--t4), transform var(--t4), box-shadow var(--t4);
  cursor: none;
}
.svc-card:hover {
  border-color: rgba(240,171,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,171,0,0.12);
}

.svc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 0;
}
.svc-ico {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: background var(--t3);
}
.svc-ico svg { width: 20px; height: 20px; color: var(--gray2); transition: color var(--t3); }
.svc-card:hover .svc-ico { background: rgba(240,171,0,0.10); }
.svc-card:hover .svc-ico svg { color: var(--gold); }

/* Channel icon tints */
.naver-ico { background: rgba(3,199,90,0.06) !important; }
.kakao-ico { background: rgba(254,229,0,0.06) !important; }
.meta-ico  { background: rgba(8,102,255,0.06) !important; }
.aeo-ico   { background: rgba(240,171,0,0.06) !important; }
.prod-ico  { background: rgba(56,189,248,0.06) !important; }
.svc-card:hover .naver-ico { background: rgba(3,199,90,0.12) !important; }
.svc-card:hover .kakao-ico { background: rgba(254,229,0,0.12) !important; }
.svc-card:hover .meta-ico  { background: rgba(8,102,255,0.12) !important; }

.svc-head h4 {
  flex: 1;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.svc-toggle {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--gray3);
  flex-shrink: 0;
  transition: all var(--t3);
  cursor: none;
}
.svc-toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
.svc-toggle svg { transition: transform var(--t3); }
.svc-toggle:hover { background: var(--gold); color: #0a0a0a; }

.svc-short {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.65;
  margin: 14px 22px 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Card body (expand) */
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease);
}
.svc-body.open { max-height: 700px; }

.svc-desc {
  font-size: 13.5px;
  color: var(--gray2);
  line-height: 1.8;
  padding: 0 22px 18px;
}
.svc-meta {
  margin: 0 22px 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r);
  border-left: 2px solid var(--gold);
}
.meta-k {
  display: block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.svc-meta p { font-size: 12.5px; color: var(--gray2); line-height: 1.5; }

.svc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 22px 22px;
  padding: 11px 16px;
  background: rgba(240,171,0,0.08);
  border: 1px solid rgba(240,171,0,0.2);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--t3);
  cursor: none;
}
.svc-cta:hover { background: var(--gold); color: #0a0a0a; }

/* AEO banner */
.aeo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  background: linear-gradient(120deg, rgba(240,171,0,0.06) 0%, rgba(56,189,248,0.04) 100%);
  border: 1px solid rgba(240,171,0,0.12);
  border-radius: var(--rl);
  margin-bottom: 28px;
}
.aeo-banner-copy h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.aeo-banner-copy p { font-size: 14px; color: var(--gray2); line-height: 1.7; }
.aeo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.aeo-tags span {
  padding: 6px 14px;
  background: rgba(240,171,0,0.08);
  border: 1px solid rgba(240,171,0,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* Prod group */
.prod-group { margin-bottom: 52px; }
.prod-group:last-child { margin-bottom: 0; }
.prod-group-title {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Service bottom CTA */
.svc-bottom {
  text-align: center;
  margin-top: 72px;
  padding: 64px 48px;
  background: linear-gradient(135deg, rgba(240,171,0,0.06) 0%, rgba(56,189,248,0.04) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--rxl);
  position: relative;
  overflow: hidden;
}
.svc-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
}
.svc-bottom p {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray1);
  margin-bottom: 28px;
}

/* ─────────────────────────────────────
   WHY ROUTE9
───────────────────────────────────── */
.why-section {
  background: var(--bg);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
.why-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -.07em;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: all var(--t4);
  cursor: default;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--sky));
  transition: height .5s var(--ease);
  border-radius: 2px;
}
.why-card:hover {
  border-color: var(--border2);
  background: var(--bg4);
  transform: translateY(-5px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.35);
}
.why-card:hover::before { height: 100%; }

.why-num {
  font-family: var(--font-en);
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -.05em;
  margin-bottom: -12px;
  transition: color var(--t4);
}
.why-card:hover .why-num { color: rgba(240,171,0,0.07); }

.why-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(240,171,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t4);
}
.why-ico svg { width: 24px; height: 24px; color: var(--gold); }
.why-card:hover .why-ico { background: rgba(240,171,0,0.14); }

.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-card p { font-size: 14.5px; color: var(--gray2); line-height: 1.85; }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact-section {
  background: var(--bg2);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left info */
.contact-info {}
.contact-title {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.contact-sub { font-size: 16px; color: var(--gray2); margin-bottom: 48px; line-height: 1.8; }

.ci-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
.ci-list li { display: flex; align-items: flex-start; gap: 18px; }
.ci-ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-ico svg { width: 18px; height: 18px; color: var(--gold); }
.ci-lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 4px;
}
.ci-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  transition: color var(--t3);
}
a.ci-val:hover { color: var(--gold); }

.ch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ch-tags span {
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray3);
  transition: all var(--t3);
}
.ch-tags span:hover {
  border-color: rgba(240,171,0,0.3);
  color: var(--gold);
  background: rgba(240,171,0,0.06);
}

/* Right form */
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray3);
}
.req { color: var(--gold); }
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--t3), box-shadow var(--t3), background var(--t3);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(240,171,0,0.04);
  box-shadow: 0 0 0 3px rgba(240,171,0,0.10);
}
.form-group input.error { border-color: #ef4444; }

/* Privacy checkbox */
.form-check {}
.chk-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  font-size: 13px;
  color: var(--gray2);
  user-select: none;
}
.chk-label input[type="checkbox"] { display: none; }
.chk-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t3);
  background: transparent;
}
.chk-label input:checked ~ .chk-box {
  background: var(--gold);
  border-color: var(--gold);
}
.chk-label input:checked ~ .chk-box::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2px solid #0a0a0a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}

.btn-form { width: 100%; padding: 16px; justify-content: center; font-size: 16px; }
.form-msg {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  text-align: center;
  font-weight: 600;
}
.form-msg.success { background: rgba(34,197,94,0.08); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.form-msg.error   { background: rgba(239,68,68,0.08);  color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer { background: var(--bg); }
.footer-top {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-logo-img { height: 26px; }
.footer-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray2);
  margin-bottom: 10px;
}
.footer-desc { font-size: 13px; color: var(--gray3); line-height: 1.75; }

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--gray3); transition: color var(--t3); cursor: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13.5px; color: var(--gray3); margin-bottom: 8px; }

.footer-bottom { padding: 24px 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.15); line-height: 1.9; }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color var(--t3); cursor: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.copy { margin-top: 8px; }

/* ─────────────────────────────────────
   MOBILE NAV
───────────────────────────────────── */
@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 76px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .nl {
    font-size: 18px;
    color: var(--gray1);
    padding: 14px 32px;
    width: 80%;
    text-align: center;
    border-radius: var(--r);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .nav-links.open .nl {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links.open .nl:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open .nl:nth-child(2) { transition-delay: 0.10s; }
  .nav-links.open .nl:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open .nl:nth-child(4) { transition-delay: 0.20s; }
  .nl.nl-cta { margin-left: 0; margin-top: 12px; }
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid     { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item    { padding: 52px 28px; }
}

@media (max-width: 768px) {
  :root { --py: 80px; }
  .container { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: 76px; }
  .h-line { font-size: clamp(40px, 10vw, 64px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .aeo-banner { flex-direction: column; }
  .why-card { padding: 36px 28px; }
  .contact-form-wrap { padding: 28px 24px; }
  .svc-bottom { padding: 40px 24px; }
}

/* ─────────────────────────────────────
   HIDE ACCORDION (replaced by modal)
───────────────────────────────────── */
.svc-toggle { display: none !important; }
.svc-body   { display: none !important; }
.svc-card   { cursor: none; }

/* ─────────────────────────────────────
   FULLSCREEN SERVICE MODAL
───────────────────────────────────── */
.svc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}
.svc-modal.open {
  opacity: 1;
  pointer-events: all;
}
.svc-modal-close {
  position: fixed;
  top: 28px; right: 32px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray2);
  transition: all 0.25s ease;
  z-index: 9502;
  cursor: none;
}
.svc-modal-close svg { width: 20px; height: 20px; }
.svc-modal-close:hover {
  background: rgba(240,171,0,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* Modal box (animated by GSAP) */
.svc-modal-box {
  width: 100%;
  max-width: 740px;
  margin: auto;
  will-change: transform, opacity;
}

.svc-modal-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.svc-modal-ico-wrap {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(240,171,0,0.08);
  border: 1px solid rgba(240,171,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-modal-ico-wrap svg { width: 32px; height: 32px; color: var(--gold); }
.svc-modal-label {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-modal-title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.svc-modal-short {
  font-size: 18px;
  color: var(--sky);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 36px;
}
.svc-modal-rule {
  height: 1px;
  background: var(--border2);
  margin-bottom: 32px;
  position: relative;
}
.svc-modal-rule::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  margin-top: -0.5px;
}
.svc-modal-desc {
  font-size: 16px;
  color: var(--gray2);
  line-height: 1.9;
  margin-bottom: 40px;
}
.svc-modal-metas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 52px;
}
.svc-modal-meta {
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  transition: background 0.25s;
}
.svc-modal-meta:hover { background: rgba(240,171,0,0.04); }
.svc-modal-meta-k {
  display: block;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.svc-modal-meta p {
  font-size: 13.5px;
  color: var(--gray2);
  line-height: 1.55;
}
.svc-modal-cta {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .svc-modal { padding: 80px 20px 40px; align-items: flex-start; }
  .svc-modal-close { top: 20px; right: 20px; width: 44px; height: 44px; }
  .svc-modal-title { font-size: clamp(24px, 7vw, 38px); }
  .svc-modal-short { font-size: 16px; }
  .svc-modal-desc  { font-size: 15px; }
  .svc-modal-metas { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .stat-item { padding: 36px 12px; }
  .tab-btn { padding: 9px 13px; font-size: 12.5px; }
  .tab-ico { width: 15px; height: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  #cursor-ring, #cursor-dot { display: none; }
}
