:root {
  --red:     #C41E3A;
  --red2:    #E02A4A;
  --gold:    #D4AF37;
  --gold2:   #F0C94A;
  --dark:    #0F172A;
  --dark2:   #1E293B;
  --dark3:   #334155;
  --mid:     #64748B;
  --light:   #F1F5F9;
  --white:   #FFFFFF;
  --border:  #E2E8F0;
  --grad1:   linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  --grad2:   linear-gradient(135deg, #D4AF37 0%, #C41E3A 100%);
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow2: 0 8px 48px rgba(196,30,58,0.15);
  --radius:  12px;
  --radius2: 20px;
  --nav-h:   72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── 유틸 ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
}
.badge-red { background: rgba(196,30,58,0.1); color: var(--red); }
.badge-gold { background: rgba(212,175,55,0.15); color: #9a7a10; }

/* ── Language Selector (Combobox) ─────────────────────────── */
.lang-select {
  position: relative;
  display: inline-block;
}
.lang-select-box {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 7px 32px 7px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--dark2);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.lang-select-box:hover {
  border-color: var(--red);
  color: var(--red);
}
.lang-select-box:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}
.lang-select-box option {
  background: #fff;
  color: var(--dark2);
  padding: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.25;
  color: var(--dark);
}
.section-sub {
  font-size: 16px; color: var(--mid);
  margin-top: 14px; max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 14px auto 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .25s; border: none;
}
.btn-primary {
  background: var(--grad1); color: var(--white);
  box-shadow: 0 4px 20px rgba(196,30,58,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,30,58,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-dark { background: var(--dark2); color: var(--white); }
.btn-dark:hover { background: var(--dark3); transform: translateY(-2px); }
.btn-gold { background: var(--grad2); color: var(--white); box-shadow: 0 4px 20px rgba(212,175,55,0.35); }
.btn-gold:hover { transform: translateY(-2px); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .25s; border: none;
  background: var(--grad1); color: var(--white);
  box-shadow: 0 4px 16px rgba(196,30,58,0.3);
  text-decoration: none;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,58,0.4); }
.button-secondary {
  background: var(--white); color: var(--dark3);
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--light); border-color: var(--mid);
  transform: translateY(-2px); box-shadow: none;
}
.button.ghost {
  background: transparent; color: var(--dark3);
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.button.ghost:hover { background: var(--light); }

/* 애니메이션 */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all .3s;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: none;
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.5px;
}

.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); font-family: 'Noto Serif SC', serif;
  font-weight: 700;
}

.brand-word {
  font-size: 20px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}

.brand-word span { color: var(--gold2); }

nav { display: flex; align-items: center; gap: 32px; }

nav a, .nav-button {
  color: rgba(255,255,255,0.8);
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color .2s; position: relative;
}

nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold2); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}

nav a:hover { color: var(--white); }

nav a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
#mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(15,23,42,0.98); backdrop-filter: blur(12px);
  padding: 24px; z-index: 999; flex-direction: column; gap: 16px;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu > a {
  color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
#mobile-menu .btn { width: 100%; justify-content: center; }

/* Mobile language section (collapsible) */
#mobile-lang-section { border-bottom: 1px solid rgba(255,255,255,0.08); }
#mobile-lang-header {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600;
  padding: 10px 0; text-align: left;
}
#mobile-lang-header:hover { color: #fff; }
.mobile-lang-arrow {
  margin-left: auto; font-size: 11px; opacity: 0.7;
  transition: transform .2s;
}
#mobile-lang-list {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2px; padding-bottom: 8px;
  max-height: 200px; overflow-y: auto;
}
#mobile-lang-list.open { display: grid; }
.mobile-lang-item {
  color: rgba(255,255,255,0.7); font-size: 13px;
  padding: 6px 8px; cursor: pointer; border-radius: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mobile-lang-item:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mobile-lang-item.active { color: var(--gold2); font-weight: 700; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E1035 40%, #3B0A14 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; width: 800px; height: 800px;
  border-radius: 50%; pointer-events: none;
  filter: blur(120px); opacity: 0.25;
}
.hero-glow-1 { background: var(--red); top: -200px; right: -200px; }
.hero-glow-2 { background: var(--gold); bottom: -200px; left: -100px; }

.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: var(--nav-h) 0 60px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold2); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900; line-height: 1.15; color: var(--white);
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--gold2); }
.hero-title.hero-title-sm {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
}
.hero-line-sm {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.3px;
  display: block;
  margin-bottom: 6px;
}
.hero-line-accent {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--gold2);
  display: block;
  line-height: 1.1;
  font-family: 'Noto Serif SC', serif;
}
.hero-line-sub {
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* Data center illustration */
.datacenter-illust {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(196,30,58,0.25));
}
.hero-scene {
  position: relative;
  animation: floatScene 7s ease-in-out infinite;
}
@keyframes floatScene {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.6);
  margin: 24px 0 36px; line-height: 1.8; max-width: 500px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 28px; font-weight: 900; color: var(--white);
}
.hero-stat-num span { color: var(--gold2); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Hero Right - Phone Mockup */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-phone {
  width: 280px; background: var(--dark2);
  border-radius: 40px; border: 6px solid #334155;
  padding: 24px 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
}
.hero-phone::before {
  content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px; background: #475569; border-radius: 3px;
}
.phone-screen {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 28px; padding: 20px 16px; min-height: 420px;
}
.phone-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.phone-logo { font-size: 14px; font-weight: 800; color: var(--white); }
.phone-logo span { color: var(--gold2); }
.phone-level {
  background: rgba(212,175,55,0.2); color: var(--gold2);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.hero-badge {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 12px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 13px; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.hero-badge-icon { font-size: 20px; }
.hero-badge-1 { top: 40px; right: -20px; }
.hero-badge-2 { bottom: 60px; left: -30px; }
.hero-badge-sub { font-size: 11px; font-weight: 400; color: var(--mid); }

main { max-width: 1180px; margin: 0 auto; padding: 0; position: relative; }

/* ── FEATURES ──────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 32px;
  transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad1); transform: scaleX(0); transition: transform .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  background: rgba(196,30,58,0.08);
}
.feature-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--mid); line-height: 1.8; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px; align-items: start;
}
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius2);
  padding: 36px 28px; transition: all .3s; position: relative;
}
.pricing-card.popular {
  border-color: var(--red); transform: scale(1.04);
  box-shadow: var(--shadow2);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad1); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 4px 18px; border-radius: 100px;
}
.pricing-name { font-size: 15px; font-weight: 700; color: var(--mid); margin-bottom: 12px; }
.pricing-price { font-size: 44px; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--mid); }
.pricing-period { font-size: 13px; color: var(--mid); margin: 8px 0 24px; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--dark3);
}
.pricing-feat .check { color: var(--red); font-size: 16px; font-weight: 700; }
.pricing-feat .cross { color: #CBD5E1; }
.pricing-btn { width: 100%; margin-top: 28px; justify-content: center; }

/* ── APP DOWNLOAD ──────────────────────────────────────────── */
.app-section {
  background: linear-gradient(135deg, #0F172A, #1E1035);
  color: var(--white);
}
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin: 16px 0 20px; }
.app-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 36px; }
.app-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
a.app-btn { text-decoration: none; }
.app-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px 12px 16px;
  transition: all .3s; cursor: pointer;
  text-align: center;
}
.app-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 32px rgba(196,30,58,0.15);
}
.app-btn-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.app-btn-icon svg {
  width: 100%; height: 100%;
  display: block;
}
.app-btn-store { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.3px; }
.app-btn-name { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; word-break: break-all; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.testimonial {
  background: var(--white); border-radius: var(--radius2); padding: 32px;
  box-shadow: var(--shadow); transition: all .3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: var(--dark3); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad1); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--white);
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-level { font-size: 12px; color: var(--mid); }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-section {
  background: var(--grad2); padding: 100px 0; text-align: center;
}
.cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; }
.footer-sns { display: flex; gap: 12px; margin-top: 24px; }
.footer-sns a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 16px; transition: all .2s;
}
.footer-sns a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--white); }

/* ── LANGUAGE SELECTOR ─────────────────────────────────────── */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 7px 14px;
  color: var(--white); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.2); }
.lang-globe { font-size: 14px; }
.lang-arrow { font-size: 10px; opacity: 0.7; transition: transform .2s; }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 8px;
  min-width: 200px; max-height: 360px; overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4); z-index: 1100;
  column-count: 1;
}
.lang-menu.open { display: grid; grid-template-columns: 1fr 1fr; }
.lang-item {
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; color: rgba(255,255,255,0.8);
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.lang-item:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.lang-item.active { color: var(--gold2); font-weight: 700; }

/* ── MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius2);
  padding: 40px; width: 90%; max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.modal-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit;
  transition: border-color .2s; outline: none;
}
.form-input:focus { border-color: var(--red); }

/* ── Hero Visual Scene ─────────────────────────────────────── */
.hero-visual-wrapper {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-scene {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.office-illust {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(196,30,58,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Enterprise Diagram ────────────────────────────────────── */
.enterprise-diagram {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 20px;
}
.diagram-admin {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; padding: 12px 28px; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.diagram-icon { font-size: 28px; }
.diagram-icon-lg { font-size: 36px; }
.diagram-label { font-size: 13px; font-weight: 700; color: var(--dark2); }
.diagram-arrow {
  font-size: 12px; color: var(--red); font-weight: 700;
  padding: 4px 12px; background: rgba(196,30,58,.1);
  border-radius: 20px;
}
.diagram-gateway {
  width: 100%;
  background: var(--grad1);
  border-radius: 18px;
  padding: 3px;
  box-shadow: 0 8px 40px rgba(196,30,58,.25);
}
.diagram-gateway-inner {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0f1a 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.diagram-gateway-title {
  color: #fff; font-size: 16px; font-weight: 800;
  font-family: 'Noto Serif SC', serif;
}
.diagram-gateway-sub {
  color: rgba(255,255,255,.5); font-size: 11px;
}
.diagram-servers {
  display: flex; gap: 10px; width: 100%;
}
.diagram-server {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: #fff; padding: 14px 8px; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  font-size: 11px; color: var(--mid); font-weight: 600;
}
.diagram-server span:first-child { font-size: 24px; }

/* ── Admin Mockup ──────────────────────────────────────────── */
.admin-mockup {
  background: #0f172a; border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,23,42,.3);
  width: 100%; max-width: 360px;
}
.admin-mockup-header {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #1e293b;
  border-bottom: 1px solid #334155;
}
.admin-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.admin-mockup-body {
  padding: 18px;
}
.admin-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 10px;
}
.admin-stat {
  background: rgba(255,255,255,.04); border-radius: 10px;
  padding: 12px 8px; text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.admin-stat-label {
  font-size: 10px; color: #64748b; margin-bottom: 4px;
}
.admin-stat-value {
  font-size: 20px; font-weight: 800; color: #fff;
}
.admin-log-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; background: rgba(255,255,255,.03);
  border-radius: 8px; margin-bottom: 6px;
  font-size: 11px; color: #cbd5e1;
}

/* ── Enterprise Features ───────────────────────────────────── */
.enterprise-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.enterprise-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.enterprise-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.enterprise-list-icon {
  font-size: 18px; flex-shrink: 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .lang-selector { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-visual { order: -1; }
  .hero-phone { width: 240px; }
  .features-grid, .stats-grid, .pricing-grid, .testimonials-grid,
  .app-grid, .footer-grid, .enterprise-features { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .section { padding: 60px 0; }
  .hero-badge { display: none; }
}
