/* ============================================================
   SHIAN PARTNERS — Global Stylesheet
   Color Identity: Navy Dark + Gold (#C9A96E / #E8D5A3)
   Design: Premium, MZ-sensible, Clean White sections
   ============================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Navy / Dark */
  --navy:        #0D1B2A;
  --navy-2:      #112233;
  --navy-3:      #1a2d42;
  --dark:        #080E16;

  /* Gold */
  --gold:        #C9A96E;
  --gold-l:      #E8D5A3;
  --gold-d:      #A07840;
  --gold-grad:   linear-gradient(135deg, #C9A96E 0%, #E8D5A3 55%, #C9A96E 100%);
  --gold-glow:   0 6px 32px rgba(201,169,110,.35);

  /* Whites / Grays */
  --white:  #FFFFFF;
  --off:    #F9F8F6;
  --g50:    #FAFAFA;
  --g100:   #F4F4F2;
  --g200:   #E8E8E4;
  --g300:   #D4D4CE;
  --g400:   #B0B0A8;
  --g500:   #8A8A82;
  --g600:   #6A6A62;
  --g700:   #4A4A42;
  --g900:   #18181A;

  /* Typography */
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --sh-sm: 0 2px 12px rgba(0,0,0,.06);
  --sh-md: 0 6px 28px rgba(0,0,0,.09);
  --sh-lg: 0 12px 48px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--g900); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
em   { font-style: normal; }

/* ---- Shared wrapper ---- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Section Head ---- */
.sec-head  { text-align: center; margin-bottom: 64px; }
.sec-tag   {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.22); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 18px;
}
.sec-h2 {
  font-size: clamp(26px, 4vw, 44px); font-weight: 800;
  letter-spacing: -1.2px; color: var(--g900); margin-bottom: 14px; line-height: 1.18;
}
.sec-p { font-size: 16px; color: var(--g500); max-width: 480px; margin: 0 auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; inset: auto 0 auto 0; z-index: 900;
  padding: 18px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
#navbar.nb-scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img  { width: 72px; height: 72px; object-fit: contain; filter: none; }
#navbar.nb-scrolled .logo-img { filter: none; }
.logo-texts { display: flex; flex-direction: column; gap: 2px; }
.logo-kr { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -.3px; transition: color .3s; }
.logo-en { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
#navbar.nb-scrolled .logo-kr { color: var(--navy); }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 18px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85); border-radius: var(--r-sm);
  transition: all .22s;
}
.nav-link:hover { color: var(--gold-l) !important; background: rgba(201,169,110,.1); }
#navbar.nb-scrolled .nav-link { color: var(--g600); }
#navbar.nb-scrolled .nav-link:hover { color: var(--gold-d) !important; }

.nav-cta {
  padding: 10px 24px; font-size: 14px; font-weight: 700;
  color: var(--navy) !important; background: var(--gold-grad);
  border-radius: var(--r-sm); box-shadow: var(--gold-glow);
  transition: all .3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,169,110,.45); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
#navbar.nb-scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Nav mobile close button */
.nav-close-wrap { display: none; justify-content: flex-end; margin-bottom: 8px; }
.nav-close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; color: rgba(255,255,255,.6); font-size: 16px;
  width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.nav-close:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* Nav overlay (mobile backdrop) */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--dark) 55%, #0a1520 100%);
  display: flex; align-items: center;
  padding: 110px 28px 80px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .6;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.g1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,169,110,.14), transparent); top: -200px; right: -150px; animation: gf 9s ease-in-out infinite; }
.g2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(13,27,42,.9), transparent); bottom: -120px; left: -80px; animation: gf 11s ease-in-out infinite reverse; }
.g3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,213,163,.06), transparent); top: 45%; left: 38%; animation: gf 7s ease-in-out infinite; }

@keyframes gf {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(25px,-25px) scale(1.06); }
  70% { transform: translate(-15px,15px) scale(.94); }
}

.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 60px; width: 100%; max-width: 1200px; margin: 0 auto; }

/* Hero Left */
.hero-left { flex: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; margin-bottom: 28px;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.28);
  border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--gold-l);
  backdrop-filter: blur(8px);
}
.pill-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pdot 2s ease-in-out infinite; }
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(1.4)} }

.hero-h1 {
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 900;
  line-height: 1.1; letter-spacing: -2px; color: var(--white);
  margin-bottom: 24px;
}
.hero-em {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-gold {
  padding: 17px 34px; font-size: 15px; font-weight: 700;
  color: var(--navy); background: var(--gold-grad); border-radius: var(--r-md);
  box-shadow: var(--gold-glow); transition: all .3s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(201,169,110,.5); }
.btn-ghost {
  padding: 17px 34px; font-size: 15px; font-weight: 600;
  color: var(--white); background: transparent;
  border: 1.5px solid rgba(255,255,255,.18); border-radius: var(--r-md);
  transition: all .3s; backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(201,169,110,.45); color: var(--gold-l); transform: translateY(-3px); }

.hero-kpis { display: flex; align-items: center; gap: 28px; }
.kpi { display: flex; flex-direction: column; gap: 3px; }
.kpi b { font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.kpi b span { font-size: 20px; color: var(--gold-l); }
.kpi > span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .5px; }
.kpi-sep { width: 1px; height: 42px; background: rgba(255,255,255,.12); }
.kpi.kpi-notice { justify-content: center; }
.kpi-notice-text { font-size: 12px; font-weight: 600; color: var(--gold); line-height: 1.6; text-align: left; letter-spacing: -.2px; }
.kpi-notice-text em { font-style: normal; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.55); }

/* Hero Right — Logo ring */
.hero-right { flex-shrink: 0; position: relative; width: 460px; height: 460px; }
.logo-ring-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.logo-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(201,169,110,.18);
  animation: rotate 24s linear infinite;
}
.r1 { width: 360px; height: 360px; animation-duration: 20s; }
.r2 { width: 420px; height: 420px; border-style: dashed; animation-duration: 30s; animation-direction: reverse; opacity: .5; }
.r3 { width: 460px; height: 460px; border-color: rgba(201,169,110,.08); animation-duration: 50s; }
@keyframes rotate { to { transform: rotate(360deg); } }

.logo-center-card {
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(13,27,42,.7); border: 1.5px solid rgba(201,169,110,.35);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(201,169,110,.2), inset 0 0 40px rgba(201,169,110,.06);
  overflow: hidden;
}
.hero-logo-img { width: 160px; height: 160px; object-fit: contain; filter: none; }

/* Float cards */
.float-card {
  position: absolute; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(16px); min-width: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.fc1 { top: 30px; right: -10px; animation: fc 4s ease-in-out infinite; }
.fc2 { bottom: 110px; left: -20px; animation: fc 4s ease-in-out infinite .8s; }
.fc3 { bottom: 20px; right: 10px; animation: fc 4s ease-in-out infinite 1.6s; }
@keyframes fc { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }

.fc-icon { font-size: 26px; }
.fc-t { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.fc-v { font-size: 15px; font-weight: 700; color: var(--white); }
.fc-v.gold { color: var(--gold-l); }
.fc-v.green { color: #4ade80; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(201,169,110,.6), transparent); animation: sl 2s ease-in-out infinite; }
@keyframes sl { 0%,100%{opacity:1}50%{opacity:.3} }
.scroll-hint span { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.25); }

/* ============================================================
   MOTTO
   ============================================================ */
.motto-section {
  position: relative; overflow: hidden;
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
}
.motto-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: clamp(80px, 14vw, 180px); font-weight: 900; letter-spacing: -4px;
  color: rgba(201,169,110,.04); white-space: nowrap; pointer-events: none;
  user-select: none;
}
.motto-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.22); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 28px;
}
.motto-h2 {
  font-size: clamp(30px, 5vw, 56px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 24px;
}
.mot-line { display: block; color: rgba(255,255,255,.7); }
.mot-line.accent {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.motto-desc { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.9; margin-bottom: 40px; }
.motto-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.mp {
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  color: var(--gold-l); background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.2); border-radius: 100px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 120px 0; background: var(--off); }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }

.svc-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px 30px; border: 1.5px solid var(--g100);
  position: relative; overflow: hidden;
  transition: all .38s ease;
  opacity: 0; transform: translateY(22px);
}
.svc-card.in-view { opacity: 1; transform: translateY(0); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(201,169,110,.22); }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); opacity: 0; transition: opacity .3s;
}
.svc-card:hover::after { opacity: 1; }

.svc-card.dark-card { background: var(--navy); border-color: rgba(201,169,110,.25); color: var(--white); }
.svc-card.dark-card p { color: rgba(255,255,255,.55); }
.svc-card.dark-card h3 { color: var(--white); }
.svc-card.dark-card strong { color: var(--gold-l); }
.svc-card.highlight { border-color: rgba(201,169,110,.3); }

.svc-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 4px 12px; background: var(--gold-grad);
  border-radius: 100px; font-size: 11px; font-weight: 700; color: var(--navy);
}

.svc-no { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); opacity: .65; margin-bottom: 18px; }
.svc-ico-wrap {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--g50); border: 1px solid var(--g100);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px; transition: all .3s;
}
.svc-ico-wrap.gold { background: rgba(201,169,110,.1); border-color: rgba(201,169,110,.22); }
.svc-card:hover .svc-ico-wrap { background: rgba(201,169,110,.1); border-color: rgba(201,169,110,.3); transform: scale(1.06); }

.svc-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--g500); line-height: 1.72; margin-bottom: 18px; }

.svc-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.svc-chips span {
  padding: 4px 11px; font-size: 11px; font-weight: 600;
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: 100px; color: var(--g600);
}
.dark-chips span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.65); }

.svc-price { display: flex; align-items: baseline; gap: 4px; padding-top: 16px; border-top: 1px solid var(--g100); font-size: 13px; color: var(--g400); }
.svc-price strong { font-size: 20px; font-weight: 800; color: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 120px 0; background: var(--g50); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plans-grid.plans-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
  padding-top: 24px;
}

/* Shared plan card */
.plan-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px 28px; border: 1.5px solid var(--g100);
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: visible;
  transition: all .4s ease;
  opacity: 0; transform: translateY(22px);
}
.plan-card.in-view { opacity: 1; transform: translateY(0); }
.plan-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }

/* Tier label */
.plan-tier {
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--g400); margin-bottom: 20px;
}
.gold-tier { color: var(--gold); }
.vip-tier  { color: var(--navy); }

/* Price */
.plan-price-wrap { margin-bottom: 16px; }
.plan-price-label { display: block; font-size: 12px; font-weight: 600; color: var(--g400); margin-bottom: 4px; }
.plan-price-main {
  font-size: 44px; font-weight: 900; letter-spacing: -2px;
  color: var(--g900); line-height: 1;
}
.gold-price { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-unit { font-size: 18px; font-weight: 600; letter-spacing: 0; }

/* Plan description */
.plan-desc { font-size: 13px; color: var(--g500); line-height: 1.65; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--g100); }
.plan-desc-light { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.12); }

/* Features */
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--g700); }
.plan-features-light li { color: rgba(255,255,255,.78); }

.pf-chk {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,222,128,.12); color: #22c55e;
  font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.gold-chk { background: rgba(201,169,110,.15); color: var(--gold); }
.vip-chk  { background: rgba(13,27,42,.08); color: var(--navy); }

.pf-dot { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--g300); font-size: 13px; }
.pf-dot-light { color: rgba(255,255,255,.2); }
.pf-grey { color: var(--g400) !important; }
.pf-grey-light { color: rgba(255,255,255,.3) !important; }

.tag-free {
  display: inline-block; padding: 1px 8px; margin-left: 4px;
  background: rgba(201,169,110,.18); color: var(--gold); border-radius: 100px;
  font-size: 11px; font-weight: 700;
}

/* Plan Buttons */
.plan-btn {
  display: block; width: 100%; padding: 15px; text-align: center;
  font-size: 14px; font-weight: 700; border-radius: var(--r-md);
  transition: all .3s; margin-top: auto;
}
.btn-outline { background: transparent; border: 1.5px solid var(--g200); color: var(--g600); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.05); }
.btn-basic { background: var(--g50); border: 1.5px solid var(--g200); color: var(--g800); }
.btn-basic:hover { background: var(--g100); transform: translateY(-2px); }
.btn-gold-solid {
  background: var(--gold-grad); color: var(--navy);
  border: none; box-shadow: var(--gold-glow);
}
.btn-gold-solid:hover { box-shadow: 0 10px 40px rgba(201,169,110,.5); transform: translateY(-2px); }
.btn-vip { background: var(--navy); color: var(--gold-l); border: none; }
.btn-vip:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(13,27,42,.35); }

/* Featured PREMIUM card */
.featured-plan {
  background: linear-gradient(160deg, var(--navy) 0%, #112233 100%);
  border-color: rgba(201,169,110,.35);
  box-shadow: 0 0 0 4px rgba(201,169,110,.08);
  transform: scaleY(1.025);
}
.featured-plan:hover { transform: scaleY(1.025) translateY(-6px); }
.featured-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 5px 22px; background: var(--gold-grad);
  border-radius: 100px; font-size: 12px; font-weight: 800; color: var(--navy); white-space: nowrap;
}

/* VIP card */
.plan-vip { border-color: rgba(13,27,42,.15); }
.plan-vip:hover { border-color: var(--navy); box-shadow: 0 16px 56px rgba(13,27,42,.18); }
.vip-crown { font-size: 28px; margin-bottom: 4px; }

/* Note */
.plan-note {
  margin-top: 40px; padding: 16px 24px;
  background: rgba(201,169,110,.06); border: 1px solid rgba(201,169,110,.18);
  border-radius: var(--r-md); display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--g600); line-height: 1.6;
}
.note-icon { font-size: 20px; flex-shrink: 0; }

/* ============================================================
   WHY
   ============================================================ */
.why-section { padding: 120px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  padding: 40px 26px; border-radius: var(--r-lg);
  background: var(--g50); border: 1.5px solid var(--g100);
  text-align: center; transition: all .35s;
  opacity: 0; transform: translateY(22px);
}
.why-card.in-view { opacity: 1; transform: translateY(0); }
.why-card:hover { background: var(--white); box-shadow: var(--sh-lg); border-color: rgba(201,169,110,.2); transform: translateY(-5px); }
.why-ico  { font-size: 38px; margin-bottom: 18px; }
.why-card h4 { font-size: 17px; font-weight: 700; color: var(--g900); margin-bottom: 10px; letter-spacing: -.3px; }
.why-card p  { font-size: 14px; color: var(--g500); line-height: 1.72; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--dark) 100%);
}
.contact-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.1), transparent);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-grid:has(.contact-left-full) { grid-template-columns: 1fr; max-width: 620px; }

.white-h2 { color: var(--white) !important; }
.contact-p { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.8; margin: 16px 0 36px; }
.contact-p strong { color: var(--gold); }

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.ci {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md);
  transition: all .3s;
  opacity: 0; transform: translateY(14px);
}
.ci.in-view { opacity: 1; transform: translateY(0); }
.ci:hover { background: rgba(201,169,110,.08); border-color: rgba(201,169,110,.2); }
.ci-ico {
  font-size: 24px; width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
}
.ci > div { display: flex; flex-direction: column; gap: 3px; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.3); text-transform: uppercase; }
.ci-val   { font-size: 16px; font-weight: 600; color: var(--white); }
.ci-link  { font-size: 20px; font-weight: 800; color: var(--gold); text-decoration: none; letter-spacing: -.5px; transition: color .2s; }
.ci-link:hover { color: var(--gold-l); }

.contact-notice {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(201,169,110,.07); border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r-md); display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7;
}
.cn-ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Form */
.contact-right {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: 44px 40px; backdrop-filter: blur(16px);
}
.cform { display: flex; flex-direction: column; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.38); text-transform: uppercase; }
.fi {
  padding: 14px 18px; background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--white);
  font-family: var(--font); transition: all .3s; outline: none; width: 100%;
}
.fi:focus { border-color: rgba(201,169,110,.5); background: rgba(201,169,110,.05); box-shadow: 0 0 0 4px rgba(201,169,110,.08); }
.fi::placeholder { color: rgba(255,255,255,.2); }
.fi-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.fi-select option { background: #1a2d42; color: var(--white); }
.fi-ta { min-height: 110px; resize: vertical; line-height: 1.6; }
.fsub {
  padding: 17px; background: var(--gold-grad); color: var(--navy);
  font-size: 15px; font-weight: 800; border: none; border-radius: var(--r-md);
  cursor: pointer; transition: all .3s; font-family: var(--font);
  box-shadow: var(--gold-glow);
}
.fsub:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(201,169,110,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 56px 0 36px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; opacity: .88; }
.footer-name  { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -.5px; }
.footer-en    { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin-top: 2px; }
.footer-motto { font-size: 12px; color: rgba(255,255,255,.28); margin-top: 6px; font-style: italic; }
.footer-links { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.footer-links a { padding: 8px 16px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.38); border-radius: var(--r-sm); transition: all .22s; }
.footer-links a:hover { color: var(--gold); background: rgba(201,169,110,.08); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.18); }

/* 관리자 링크 - 눈에 안 띄게, 하지만 찾을 수 있게 */
.footer-admin-link {
  color: rgba(255,255,255,.15) !important;
  font-size: 11px !important;
}
.footer-admin-link:hover {
  color: var(--gold) !important;
  background: rgba(201,169,110,.08) !important;
}

/* 플랜 비교 버튼 */
.compare-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; font-size: 15px; font-weight: 700;
  color: var(--navy); background: var(--gold-grad);
  border-radius: var(--r-md); box-shadow: var(--gold-glow);
  transition: all .3s;
}
.compare-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,169,110,.5); }

/* ============================================================
   SERVICE CARD EXTRAS
   ============================================================ */

/* Wide card (자동점프) */
.svc-wide { grid-column: span 2; }

/* Card header row */
.svc-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.svc-header .svc-ico-wrap { flex-shrink: 0; margin-bottom: 0; }
.svc-header h3 { margin-bottom: 4px; }
.svc-price-tag { font-size: 13px; color: var(--g500); }
.svc-price-tag strong { color: var(--gold); font-size: 16px; font-weight: 800; }

/* Two-col layout inside card */
.svc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.svc-info-box { padding: 14px 16px; border-radius: var(--r-sm); }
.active-box { background: rgba(74,222,128,.06); border: 1px solid rgba(74,222,128,.2); }
.coming-box  { background: rgba(201,169,110,.06); border: 1px solid rgba(201,169,110,.18); }
.svc-info-title { font-size: 11px; font-weight: 700; letter-spacing: .5px; margin-bottom: 10px; color: var(--g600); }

.chip-active { background: rgba(74,222,128,.12) !important; border-color: rgba(74,222,128,.25) !important; color: #16a34a !important; }
.chip-soon   { background: rgba(201,169,110,.1) !important; border-color: rgba(201,169,110,.22) !important; color: var(--gold-d) !important; }

/* Highlight note bar */
.svc-highlight-note {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(201,169,110,.07); border: 1px solid rgba(201,169,110,.18);
  border-radius: var(--r-sm); font-size: 13px; color: var(--g600);
  display: flex; align-items: center; gap: 8px;
}
.beta-note  { background: rgba(139,92,246,.07); border-color: rgba(139,92,246,.18); color: #7c3aed; }
.urgent-note { background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.18); color: #dc2626; }
.note-ico { font-size: 16px; }

/* Price table */
.price-table { margin: 16px 0; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--g100); }
.pt-row { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--g100); }
.pt-row:last-child { border-bottom: none; }
.pt-row-gold { background: rgba(201,169,110,.05); }
.pt-row-warn { background: rgba(239,68,68,.04); }
.pt-label { font-size: 12px; font-weight: 700; color: var(--g700); white-space: nowrap; }
.pt-desc  { font-size: 12px; color: var(--g500); line-height: 1.5; }
.pt-price { font-size: 15px; font-weight: 800; color: var(--gold); white-space: nowrap; text-align: right; }

/* Pass cards */
.pass-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.pass-card { padding: 16px; border-radius: var(--r-md); border: 1.5px solid; text-align: center; }
.pass-basic   { background: var(--g50); border-color: var(--g200); }
.pass-premium { background: rgba(201,169,110,.07); border-color: rgba(201,169,110,.25); }
.pass-name  { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--g500); text-transform: uppercase; margin-bottom: 8px; }
.pass-price { font-size: 20px; font-weight: 900; color: var(--g900); letter-spacing: -1px; margin-bottom: 6px; }
.pass-price strong { color: var(--gold); }
.pass-desc  { font-size: 11px; color: var(--g400); }

/* SEO stats */
.seo-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.seo-stat { padding: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); text-align: center; }
.ss-num   { display: block; font-size: 24px; font-weight: 900; color: var(--gold-l); letter-spacing: -1px; }
.ss-label { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 500; }

/* Price bottom bar */
.svc-price-bottom {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--g100);
  display: flex; align-items: baseline; gap: 6px;
}
.dark-card .svc-price-bottom { border-top-color: rgba(255,255,255,.1); }
.accent-price-bottom { border-top-color: rgba(201,169,110,.2); }
.spb-label { font-size: 12px; color: var(--g400); font-weight: 500; }
.spb-price { font-size: 22px; font-weight: 900; color: var(--gold); letter-spacing: -1px; }
.gold-price-txt { color: var(--gold) !important; }

/* Feature list */
.feature-list { margin: 12px 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--g700); font-weight: 500; }
.fl-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.gold-dot { background: rgba(201,169,110,.15); color: var(--gold); }

/* Accent card (매니저) */
.svc-accent { border-color: rgba(201,169,110,.25); background: linear-gradient(160deg, var(--white) 60%, rgba(201,169,110,.06) 100%); }
.svc-card.dark-card.svc-accent { background: var(--navy); }

/* gold text in dark card */
.gold-txt { color: var(--gold-l) !important; }

/* ============================================================
   PROFILE IMAGE UPLOAD (Service 02)
   ============================================================ */

.profile-card { display: flex; flex-direction: column; }

.profile-preview-wrap {
  margin: 16px 0 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--g100);
}

.profile-preview-label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--g50);
  border-bottom: 1px solid var(--g100);
}
.pp-badge {
  display: inline-block; padding: 2px 9px;
  background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2);
  border-radius: 100px; font-size: 10px; font-weight: 800;
  color: #7c3aed; letter-spacing: .5px;
}
.pp-title { font-size: 12px; font-weight: 700; color: var(--g600); letter-spacing: .5px; }

/* Drop area */
.profile-img-area {
  position: relative; width: 100%;
  min-height: 200px; cursor: pointer;
  transition: background .2s;
}
.profile-img-area.drag-over { background: rgba(201,169,110,.06); }

/* Placeholder */
.profile-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px; padding: 32px 20px; gap: 8px;
  background: var(--g50);
  transition: background .2s;
}
.profile-img-area:not(.drag-over) .profile-img-placeholder:hover { background: var(--g100); }

.pip-icon { font-size: 36px; margin-bottom: 4px; opacity: .5; }
.pip-main { font-size: 14px; font-weight: 700; color: var(--g600); }
.pip-sub  { font-size: 12px; color: var(--g400); text-align: center; line-height: 1.6; }
.pip-btn  {
  margin-top: 10px; padding: 8px 20px;
  background: var(--gold-grad); color: var(--navy);
  font-size: 12px; font-weight: 800; border-radius: 100px;
  box-shadow: 0 2px 12px rgba(201,169,110,.3);
  transition: all .2s;
}
.profile-img-placeholder:hover .pip-btn { box-shadow: 0 4px 20px rgba(201,169,110,.45); transform: translateY(-1px); }

/* Preview image */
.profile-preview-img {
  width: 100%; max-height: 320px;
  object-fit: cover; display: block;
  border-radius: 0;
}

/* Remove button */
.profile-img-remove {
  position: absolute; top: 10px; right: 10px;
  padding: 5px 12px; background: rgba(0,0,0,.55);
  color: var(--white); font-size: 12px; font-weight: 700;
  border: none; border-radius: 100px; cursor: pointer;
  backdrop-filter: blur(8px); transition: background .2s;
}
.profile-img-remove:hover { background: rgba(220,38,38,.75); }

/* Hidden input */
.hidden-input { display: none; }
.hidden { display: none !important; }

/* Notice */
.pp-notice {
  padding: 8px 14px;
  background: var(--g50); border-top: 1px solid var(--g100);
  font-size: 11px; color: var(--g400);
}

/* ============================================================
   PROFILE EXAMPLE SLOTS (고객 페이지)
   ============================================================ */
.profile-examples-wrap { margin: 20px 0; display: flex; flex-direction: column; gap: 20px; }
.jump-examples-wrap { margin-top: 20px; }
.jump-examples-wrap .ex-slots-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }

.ex-section { }
.ex-section-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ex-badge { padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.ex-basic  { background: rgba(74,144,226,.1);  color: #1d4ed8; border: 1px solid rgba(74,144,226,.2); }
.ex-custom { background: rgba(201,169,110,.1); color: #92400e; border: 1px solid rgba(201,169,110,.2); }
.ex-beta   { background: rgba(139,92,246,.1);  color: #6d28d9; border: 1px solid rgba(139,92,246,.2); }
.ex-title  { font-size: 12px; font-weight: 700; color: var(--g600); letter-spacing: .3px; }

.ex-slots-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.ex-slots-row.three { grid-template-columns: repeat(3, 1fr); }

.ex-slot {
  position: relative; border-radius: var(--r-sm); overflow: hidden;
  background: var(--g50); border: 1px solid var(--g100);
  aspect-ratio: 3/4;
}
.ex-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.ex-empty span { font-size: 22px; opacity: .35; }
.ex-empty p    { font-size: 11px; color: var(--g400); font-weight: 500; }
.ex-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.ex-img:hover { transform: scale(1.04); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; backdrop-filter: blur(8px); animation: lbIn .2s ease; }
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-inner img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: -14px; right: -14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); border: none; color: var(--white); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section { padding: 120px 0; background: var(--navy); }
.partners-section .sec-h2 { color: var(--white); }
.partners-section .sec-p  { color: rgba(255,255,255,.45); }

.partner-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }

.partner-stat-card {
  padding: 48px 40px; border-radius: var(--r-xl);
  border: 1.5px solid; position: relative; overflow: hidden;
  transition: all .4s;
  opacity: 0; transform: translateY(22px);
}
.partner-stat-card.in-view { opacity: 1; transform: translateY(0); }

.vip-card {
  background: linear-gradient(145deg, #0D1B2A, #1a2d42);
  border-color: rgba(201,169,110,.35);
  box-shadow: 0 0 0 1px rgba(201,169,110,.1), 0 20px 60px rgba(0,0,0,.35);
}
.premium-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.1);
}
.partner-stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,0,0,.4); }

.psc-crown { font-size: 36px; margin-bottom: 12px; }
.psc-tier  { font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.psc-num   { font-size: 72px; font-weight: 900; letter-spacing: -4px; color: var(--white); line-height: 1; margin-bottom: 12px; }
.psc-num span { font-size: 36px; color: var(--gold-l); font-weight: 700; }
.psc-desc  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }

.psc-features { display: flex; flex-direction: column; gap: 12px; }
.psc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.psc-features li span { width: 20px; height: 20px; border-radius: 50%; background: rgba(201,169,110,.15); color: var(--gold); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Partner CTA box */
.partner-cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 36px 44px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2); border-radius: var(--r-xl);
  flex-wrap: wrap;
}
.pcb-left h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -.5px; }
.pcb-left p  { font-size: 14px; color: rgba(255,255,255,.45); }
.pcb-btn { flex-shrink: 0; padding: 16px 32px; font-size: 15px; }

/* ============================================================
   RESPONSIVE — UNIFIED MOBILE OVERHAUL
   ============================================================ */

/* ── Tablet (≤1080px) ── */
@media (max-width: 1080px) {
  .svc-wide  { grid-column: span 1; }
  .svc-full  { grid-column: span 1; }
  .svc-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-right { display: none; }
  .hero-left  { max-width: 100%; }
  .partner-stats-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid.plans-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .featured-plan { transform: none; }
  .featured-plan:hover { transform: translateY(-6px); }
  .consult-stats { grid-template-columns: repeat(2, 1fr); }
  .motto-exp     { grid-template-columns: repeat(4, 1fr); }
  .ex-slots-row.five-col { grid-template-columns: repeat(3, 1fr); }
  .slot-cards-row.five-col { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .hamburger { display: flex; }
  .nav-container { padding: 0 16px; }
  .logo-img { width: 52px; height: 52px; }
  .logo-kr  { font-size: 16px; }
  .logo-en  { display: none; }

  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 78vw; max-width: 290px; height: 100vh;
    background: rgba(8,14,22,.98); backdrop-filter: blur(24px);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    padding: 80px 20px 40px; gap: 4px;
    transition: right .38s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid rgba(255,255,255,.07);
    z-index: 901; overflow-y: auto;
  }
  .nav-menu.nm-open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav-close-wrap { display: flex; }
  .nav-link { color: rgba(255,255,255,.85) !important; font-size: 16px; padding: 14px 18px; border-radius: 10px; }
  .nav-cta  { text-align: center; margin-top: 12px; padding: 15px 20px; font-size: 15px; }
  .nav-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity .38s; }
  .nav-overlay.nav-overlay-open { opacity: 1; pointer-events: all; }

  /* --- Hero --- */
  .hero { padding: 88px 16px 52px; min-height: auto; }
  .hero-inner { flex-direction: column; gap: 0; }
  .hero-right { display: none; }
  .hero-pill { font-size: 12px; padding: 7px 14px; margin-bottom: 18px; }
  .hero-h1 { font-size: clamp(28px, 8vw, 46px); margin-bottom: 14px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 14px; line-height: 1.75; margin-bottom: 26px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .btn-gold, .btn-ghost { text-align: center; padding: 15px 20px; font-size: 15px; width: 100%; display: block; }
  .hero-kpis {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 16px 14px;
  }
  .kpi-sep { display: none; }
  .kpi { align-items: flex-start; }
  .kpi b { font-size: 24px; }
  .kpi b span { font-size: 16px; }
  .kpi > span { font-size: 11px; }
  .scroll-hint { display: none; }

  /* --- Sections --- */
  .motto-section, .services-section, .why-section,
  .pricing-section, .contact-section, .partners-section { padding: 60px 0; }
  .wrap { padding: 0 16px; }
  .sec-head { margin-bottom: 32px; }
  .sec-h2   { font-size: clamp(20px, 6vw, 30px); }
  .sec-p    { font-size: 14px; }

  /* --- Motto --- */
  .motto-bg-text { font-size: 52px; }
  .motto-h2 { font-size: clamp(20px, 7vw, 32px); }
  .motto-desc { font-size: 14px; }
  .motto-exp { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
  .mec-num   { font-size: 22px; }
  .motto-pills { gap: 6px; }
  .mp { font-size: 12px; padding: 7px 12px; }

  /* --- Services --- */
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-wide, .svc-full { grid-column: span 1; }
  .svc-two-col { grid-template-columns: 1fr; gap: 8px; }
  .svc-card { padding: 22px 18px; border-radius: 18px; }
  .svc-card h3 { font-size: 16px; }
  .svc-card p  { font-size: 13px; }
  .svc-header  { gap: 12px; margin-bottom: 10px; }
  .svc-ico-wrap { width: 44px; height: 44px; font-size: 20px; flex-shrink: 0; }
  .svc-no { font-size: 11px; }
  .consult-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 14px 0; }
  .cs-item { padding: 10px 12px; gap: 8px; }
  .cs-ico  { font-size: 20px; }
  .cs-num  { font-size: 16px; }
  .cs-sub  { font-size: 11px; }
  .pass-wrap { grid-template-columns: 1fr; gap: 8px; }
  .seo-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ss-num    { font-size: 20px; }
  .price-table { font-size: 12px; }
  .pt-row { grid-template-columns: 68px 1fr auto; gap: 6px; padding: 9px 10px; }
  .pt-price { font-size: 12px; }
  .pt-label { font-size: 12px; }
  .pt-desc  { font-size: 11px; }
  .ex-slots-row.three { grid-template-columns: repeat(3, 1fr); }
  .ex-slots-row.five-col { grid-template-columns: repeat(3, 1fr); }
  .ex-slots-row.two-col  { grid-template-columns: repeat(2, 1fr); }
  .slot-cards-row.five-col { grid-template-columns: repeat(2, 1fr); }
  .svc-chips { gap: 6px; flex-wrap: wrap; }
  .svc-chips span { font-size: 11px; padding: 5px 10px; }
  .svc-highlight-note { font-size: 12px; padding: 10px 12px; }
  .svc-badge { font-size: 10px; padding: 4px 10px; }

  /* --- Pricing --- */
  .plans-grid, .plans-grid.plans-grid-3 { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .featured-plan { transform: none; box-shadow: 0 0 0 3px rgba(201,169,110,.2), 0 12px 40px rgba(0,0,0,.2); }
  .plan-card { padding: 28px 20px; border-radius: 20px; }
  .plan-price-main { font-size: 42px; }
  .plan-features li { font-size: 13px; }
  .compare-btn { width: 100%; justify-content: center; padding: 13px 18px; font-size: 14px; }
  .plan-btn { padding: 14px; font-size: 14px; }

  /* --- Partners --- */
  .partner-stats-grid { grid-template-columns: 1fr; }
  .partner-stat-card  { padding: 30px 22px; }
  .psc-num { font-size: 52px; }
  .psc-crown { font-size: 28px; }
  .psc-desc  { font-size: 13px; }
  .partner-cta-box { flex-direction: column; text-align: center; padding: 24px 18px; gap: 16px; }
  .pcb-btn { width: 100%; text-align: center; padding: 14px 18px; }
  .pcb-left h3 { font-size: 18px; }
  .pcb-left p  { font-size: 13px; }

  /* --- Why --- */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-card { padding: 20px 14px; }
  .why-ico  { font-size: 28px; margin-bottom: 12px; }
  .why-card h4 { font-size: 14px; }
  .why-card p  { font-size: 12px; }

  /* --- Contact --- */
  .contact-grid  { grid-template-columns: 1fr; gap: 28px; }
  .contact-right { padding: 24px 18px; border-radius: 18px; }
  .contact-p     { font-size: 14px; margin: 10px 0 28px; }
  .contact-items { gap: 12px; }
  .ci { padding: 12px 14px; gap: 12px; border-radius: 14px; }
  .ci-ico { font-size: 20px; }
  .ci-label { font-size: 11px; }
  .ci-val { font-size: 14px; }
  .fg label { font-size: 13px; }

  /* --- Footer --- */
  .footer { padding: 36px 0 24px; }
  .footer-inner { gap: 20px; }
  .footer-brand { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .footer-logo  { width: 36px; height: 36px; }
  .footer-name  { font-size: 15px; }
  .footer-en    { font-size: 10px; }
  .footer-motto { font-size: 12px; }
  .footer-links { gap: 2px; justify-content: center; flex-wrap: wrap; }
  .footer-links a { padding: 6px 10px; font-size: 12px; }
  .footer-copy  { font-size: 11px; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* --- Hero --- */
  .hero { padding: 80px 14px 44px; }
  .hero-h1 { font-size: 26px; letter-spacing: -1px; }
  .hero-pill { font-size: 11px; padding: 6px 12px; }
  .hero-sub  { font-size: 13px; }
  .hero-kpis { padding: 12px 10px; gap: 8px; }
  .kpi b { font-size: 20px; }
  .kpi b span { font-size: 14px; }

  /* --- Sections --- */
  .wrap { padding: 0 14px; }
  .motto-section, .services-section, .why-section,
  .pricing-section, .contact-section, .partners-section { padding: 52px 0; }

  /* --- Motto --- */
  .motto-bg-text { font-size: 42px; }
  .motto-h2 { font-size: 20px; }
  .motto-exp { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mec-num   { font-size: 18px; }
  .mec-label { font-size: 11px; }
  .motto-pills { gap: 5px; }
  .mp { font-size: 11px; padding: 6px 10px; }

  /* --- Services --- */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 20px 16px; }
  .svc-card h3 { font-size: 15px; }
  .consult-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cs-item { padding: 10px 10px; }
  .cs-num  { font-size: 15px; }
  .svc-cta-btn { width: 100%; justify-content: center; font-size: 14px; }
  .ex-slots-row.three { grid-template-columns: 1fr 1fr; }
  .ex-slots-row.five-col { grid-template-columns: 1fr 1fr; }
  .ex-slots-row.two-col  { grid-template-columns: 1fr 1fr; }
  .profile-examples-wrap { gap: 14px; }

  /* --- Pricing --- */
  .plan-price-main { font-size: 34px; }
  .plan-card { padding: 24px 16px; }
  .plan-features li { font-size: 12px; gap: 6px; }
  .featured-ribbon { font-size: 10px; }

  /* --- Why --- */
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .why-card {
    padding: 16px 14px; text-align: left;
    display: flex; flex-direction: row; align-items: flex-start; gap: 12px;
  }
  .why-ico  { font-size: 26px; margin-bottom: 0; flex-shrink: 0; margin-top: 2px; }
  .why-card h4 { font-size: 14px; margin-bottom: 4px; }
  .why-card p  { font-size: 12px; }

  /* --- Contact --- */
  .fi { padding: 12px 12px; font-size: 14px; }
  .fsub { font-size: 14px; padding: 14px; }
  .contact-right { padding: 20px 14px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--g200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
