@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:            #07091a;
  --bg-alt:        #0a1120;
  --bg-card:       #0d1628;
  --bg-card-alt:   #101e32;
  --gold:          #c9a84c;
  --gold-dim:      rgba(201,168,76,0.10);
  --gold-border:   rgba(201,168,76,0.25);
  --white:         #ffffff;
  --muted:         #7b8ea3;
  --border:        rgba(255,255,255,0.07);
  --max-w:         1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7,9,26,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 140px;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo img {
  height: 132px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

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

.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 9px 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.btn-nav:hover { background: var(--gold); color: var(--bg); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-outline:hover { background: var(--gold-dim); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.gold { color: var(--gold); }
.muted { color: var(--muted); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 52px;
}

/* ── LAYOUT WRAPPERS ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

.section-pad { padding: 100px 0; }

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── CORNER BRACKET CARD ─────────────────────────────────── */
.bracket-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  transition: border-color 0.25s;
}

.bracket-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.bracket-card:hover { border-color: var(--gold-border); }

/* ── HERO ────────────────────────────────────────────────── */
.hero-wrap {
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  padding: 80px 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 64px;
}

.hero-left { flex: 1 1 55%; }

.hero-right {
  flex: 0 0 360px;
  max-width: 360px;
}

.hero-left h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-quote {
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  background: rgba(201,168,76,0.05);
  border-radius: 0 3px 3px 0;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-quote p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.hero-quote strong { color: var(--white); font-weight: 600; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── APP MOCKUP ──────────────────────────────────────────── */
.app-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
}

.mockup-topbar {
  background: #0c1830;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-topbar svg { width: 30px; height: 30px; flex-shrink: 0; }

.mockup-topbar-text { line-height: 1.3; }
.mockup-topbar-text strong { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; display: block; }
.mockup-topbar-text span { font-size: 10px; color: var(--gold); letter-spacing: 0.07em; }

.mockup-sublabel {
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 10px 18px 6px;
}

.mockup-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px 14px 14px;
}

.m-lang {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.m-lang:first-child {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.m-lang .ml-name { font-size: 13px; font-weight: 700; color: var(--gold); display: block; }
.m-lang .ml-native { font-size: 11px; color: var(--muted); display: block; margin-top: 1px; }

.mockup-continue {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 16px;
  background: var(--white);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PROCESS CARDS ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 26px;
  transition: border-color 0.25s;
}

.process-card:hover { border-color: var(--gold-border); }

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
  border-radius: 2px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.process-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FRAMEWORK CARDS ─────────────────────────────────────── */
.frameworks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fw-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  transition: border-color 0.25s;
}

.fw-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.fw-card:hover { border-color: var(--gold-border); }

.fw-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.fw-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.fw-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.fw-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }

.fw-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.fw-divider { height: 1px; background: var(--border); margin-bottom: 14px; }

.fw-best { font-size: 13px; color: var(--muted); }
.fw-best strong { color: var(--gold); font-weight: 600; }

/* ── MULTILINGUAL ────────────────────────────────────────── */
.multilingual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.multilingual-left h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.multilingual-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.multilingual-example {
  background: var(--bg-card-alt);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 22px 24px;
}

.multilingual-example .ex-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.multilingual-example p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.lang-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lang-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 2px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.lang-cell:hover { border-color: var(--gold-border); }

.lang-cell .lc-name { display: block; font-size: 14px; font-weight: 600; color: var(--gold); }
.lang-cell .lc-native { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── PROFESSION CARDS ────────────────────────────────────── */
.profession-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prof-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 26px;
  transition: border-color 0.25s;
}

.prof-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.prof-card:hover { border-color: var(--gold-border); }

.prof-icon { color: var(--gold); margin-bottom: 18px; }

.prof-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }

.prof-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── DESTINATION MANAGER ─────────────────────────────────── */
.dest-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.dest-left h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}

.dest-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px;
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.dest-option-card:hover { border-color: var(--gold-border); }

.opt-badge {
  width: 36px; height: 36px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.dest-option-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dest-option-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.dest-mockup-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.dm-opt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.dm-stream-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  padding: 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 10px;
}

.dm-sub { font-size: 12px; color: var(--muted); margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }

.ai-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }

.ai-chip {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  background: transparent;
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.ai-chip:hover { border-color: var(--gold); background: var(--gold-dim); }

.dm-clipboard { font-size: 12px; color: var(--gold); font-weight: 600; }
.dm-clipboard span { display: block; color: var(--muted); font-weight: 400; margin-top: 4px; font-size: 12px; }

/* ── DOWNLOAD CTA ────────────────────────────────────────── */
.download-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-cta-layout h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.download-cta-right p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }

.live-note {
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── ABOUT — WHO IT'S FOR ────────────────────────────────── */
.about-prof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-prof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  transition: border-color 0.25s;
}

.about-prof-card:hover { border-color: var(--gold-border); }

.about-prof-card h3 { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.about-prof-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }

.about-who-bracket {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.bracket-deco {
  width: 20px; height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.contact-hero h1 {
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
}

.contact-hero p { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }

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

.contact-info-col h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.contact-info-col > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.contact-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 22px 22px 22px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.contact-card:hover { border-color: var(--gold-border); }

.cc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.cc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.cc-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.cc-desc { font-size: 13px; color: var(--muted); }

.help-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 24px;
  margin-top: 16px;
}

.help-box-label { font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

.help-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.help-box li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.help-box li::before { content: '•'; color: var(--gold); position: absolute; left: 0; }

/* ── FORM ────────────────────────────────────────────────── */
.form-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-group select option { background: #0d1628; }

.form-group textarea { min-height: 144px; resize: vertical; }

.btn-send {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  margin-bottom: 12px;
}

.btn-send:hover { opacity: 0.9; }

.form-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.22);
  padding: 64px 56px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 52px;
}

.footer-brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-brand-name .gold { color: var(--gold); }

.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .hero-wrap { padding: 60px 32px; flex-direction: column; min-height: auto; padding-top: 80px; }
  .hero-right { max-width: 100%; flex: none; }
  .stats-bar-inner { padding: 0 32px; grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .container { padding: 0 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .frameworks-grid { grid-template-columns: 1fr; }
  .multilingual-layout { grid-template-columns: 1fr; gap: 48px; }
  .profession-grid { grid-template-columns: 1fr 1fr; }
  .dest-layout { grid-template-columns: 1fr; gap: 48px; }
  .download-cta-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-main-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 0 48px; }
  footer { padding: 52px 32px 0; }
  .footer-bottom { padding: 20px 0; }
  .about-prof-grid { grid-template-columns: 1fr; }
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,9,26,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  padding: 20px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
  width: 200px;
  text-align: center;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 720px) {
  nav {
    padding: 0 20px;
    height: 96px;
  }

  .nav-logo img {
    height: 88px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-wrap { padding: 52px 20px; }
  .container { padding: 0 20px; }
  .stats-bar-inner { padding: 0 20px; grid-template-columns: 1fr 1fr; }
  .process-grid, .profession-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
