/* ============================================================
   NorthBridge Intelligence — Asset Recovery & Financial Investigation
   Palette: #07111F primary / #0D1B2A secondary / #D4A62A gold
   Fonts: Bebas Neue (display) + Inter (body)
   ============================================================ */

:root {
  --bg: #07111F;
  --bg-2: #0D1B2A;
  --bg-3: #112439;
  --gold: #D4A62A;
  --gold-2: #F0CB5B;
  --gold-soft: rgba(212, 166, 42, .12);
  --ink: #EAF1FB;
  --ink-2: #9DB0C9;
  --ink-3: #5E708A;
  --line: rgba(212, 166, 42, .18);
  --line-soft: rgba(157, 176, 201, .12);
  --card: rgba(255, 255, 255, .035);
  --card-hover: rgba(212, 166, 42, .06);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, .65);
  --radius: 16px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  font-family: 'Inter', 'Noto Sans TC', 'Noto Sans JP', 'Noto Sans KR', system-ui, -apple-system, 'PingFang TC', 'Microsoft JhengHei', 'Hiragino Sans', 'Malgun Gothic', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(212, 166, 42, .10), transparent 60%),
    radial-gradient(800px 700px at -10% 30%, rgba(13, 27, 42, .9), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Inter', 'Noto Sans TC', 'Noto Sans JP', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .98;
  text-transform: uppercase;
}

/* CJK: Bebas Neue has no CJK glyphs — relax display styling for readability */
html[lang="zh-Hant"] h1, html[lang="zh-Hant"] h2, html[lang="zh-Hant"] h3, html[lang="zh-Hant"] .display,
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ja"] .display,
html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3, html[lang="ko"] .display {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.gold { color: var(--gold); }
.muted { color: var(--ink-2); }

/* vector flags */
.flag { display: inline-flex; width: 24px; height: 16px; border-radius: 3px; overflow: hidden;
  vertical-align: middle; box-shadow: 0 0 0 1px rgba(255, 255, 255, .14); flex-shrink: 0; }
.flag svg { width: 100%; height: 100%; display: block; }
.case-flag .flag, .case-meta .flag { width: 30px; height: 20px; }
.quote-card .author .flag { width: 30px; height: 20px; }
.track-row .flag { width: 22px; height: 15px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease);
  text-transform: uppercase; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1304; box-shadow: 0 10px 30px -8px rgba(212, 166, 42, .5);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(212, 166, 42, .7); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Section headers ---------- */
.section { padding: 110px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(34px, 5vw, 60px); margin-bottom: 18px; }
.section-intro { color: var(--ink-2); max-width: 620px; font-size: 16.5px; }
.head-center { text-align: center; }
.head-center .eyebrow::before { display: none; }
.head-center .section-intro { margin: 0 auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(7, 17, 31, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1304; font-family: 'Bebas Neue'; font-size: 24px;
  box-shadow: 0 8px 20px -6px rgba(212,166,42,.5);
}
.brand-text b { display: block; font-family: 'Bebas Neue'; font-size: 21px; letter-spacing: .04em; line-height: 1; }
.brand-text span { font-size: 10.5px; letter-spacing: .26em; color: var(--ink-2); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color .25s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---- language / country switcher ---- */
.lang-switch { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 8px 12px; color: var(--ink);
  font: inherit; font-size: 13px; line-height: 1; cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lang-current:hover { border-color: var(--gold); color: var(--gold); }
.lang-current .flag { width: 22px; height: 15px; }
.lang-current .lang-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lang-current .caret { width: 13px; height: 13px; flex-shrink: 0; transition: transform .3s var(--ease); }
.lang-switch.open .lang-current .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 210px; max-height: 340px; overflow: auto;
  background: rgba(7, 17, 31, .97); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 12px; padding: 6px;
  display: none; z-index: 120; box-shadow: var(--shadow);
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu li {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: 8px; color: var(--ink-2); cursor: pointer; font-size: 13px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-menu li:hover, .lang-menu li[aria-selected="true"] { background: var(--gold-soft); color: var(--ink); }
.lang-menu li .flag { width: 24px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 180px 0 110px; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-map {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-map canvas { position: absolute; top: 50%; right: -2%; transform: translateY(-50%); width: 78%; height: auto; opacity: .9; }
.hero-map::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 18%, rgba(7,17,31,.55) 48%, transparent 75%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; position: relative; z-index: 2;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12.5px; letter-spacing: .12em; color: var(--ink-2); background: var(--gold-soft);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,166,42,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 rgba(212,166,42,.4);} 50%{ box-shadow:0 0 0 6px rgba(212,166,42,0);} }
.hero h1 {
  font-size: clamp(52px, 8vw, 104px); line-height: .92; margin-bottom: 22px;
}
.hero h1 .line2 { color: transparent; -webkit-text-stroke: 1.4px var(--gold); }
.hero-sub { font-size: 18px; color: var(--ink-2); max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); }
.hero-trust svg { width: 18px; height: 18px; stroke: var(--gold); }

/* Floating live-tracking panel over the map */
.hero-visual { position: relative; justify-self: end; }
.map-panel {
  position: relative; width: 270px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(160deg, rgba(13,27,42,.92), rgba(7,17,31,.85));
  padding: 20px; box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(8px);
}
.map-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(220px 160px at 70% 10%, rgba(212,166,42,.14), transparent 70%);
}
.map-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; position: relative; }
.map-head .live { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.map-head .live i { width: 7px; height: 7px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 8px #38d39f; animation: pulse 1.6s infinite; }
.map-head .tag { font-size: 10px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.track-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); position: relative; }
.track-row:last-child { border-bottom: none; }
.track-row .loc { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink); }
.track-row .loc .flag { font-size: 16px; }
.track-row .amt { font-family: 'Bebas Neue'; font-size: 18px; color: var(--gold); letter-spacing: .03em; }

/* ============================================================
   STATS COUNTERS
   ============================================================ */
.stats { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(13,27,42,.4); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 54px 30px; text-align: center; border-right: 1px solid var(--line-soft); position: relative;
}
.stat:last-child { border-right: none; }
.stat .num { font-family: 'Bebas Neue'; font-size: clamp(46px, 5vw, 70px); color: var(--gold); line-height: 1; letter-spacing: .01em; }
.stat .num .suffix { color: var(--ink); }
.stat .label { margin-top: 10px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.service-card {
  position: relative; padding: 38px 32px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line-soft);
  transition: all .4s var(--ease); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover { background: var(--card-hover); border-color: var(--line); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--gold-soft); border: 1px solid var(--line);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.service-card h3 { font-size: 25px; margin-bottom: 12px; letter-spacing: .02em; }
.service-card p { color: var(--ink-2); font-size: 14.5px; }
.service-card .num-bg { position: absolute; right: 24px; top: 20px; font-family: 'Bebas Neue'; font-size: 60px; color: rgba(255,255,255,.04); }

/* ============================================================
   WORKFLOW TIMELINE
   ============================================================ */
.workflow { background: linear-gradient(180deg, transparent, rgba(13,27,42,.5), transparent); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
}
.step { text-align: center; position: relative; }
.step .node {
  width: 58px; height: 58px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Bebas Neue'; font-size: 26px;
  background: var(--bg-2); border: 2px solid var(--line); color: var(--gold);
  position: relative; z-index: 2; transition: all .4s var(--ease);
}
.step:hover .node { border-color: var(--gold); box-shadow: 0 0 0 6px var(--gold-soft); transform: scale(1.08); }
.step h4 { font-family: 'Bebas Neue'; font-size: 21px; letter-spacing: .03em; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--ink-2); padding: 0 6px; }

/* ============================================================
   CASES
   ============================================================ */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.case-card {
  border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--card);
  overflow: hidden; transition: all .4s var(--ease); display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.case-top { padding: 26px 26px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.case-flag { font-size: 26px; }
.case-status {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.status-recovered { background: rgba(56,211,159,.14); color: #51e0ab; border: 1px solid rgba(56,211,159,.3); }
.status-progress { background: rgba(212,166,42,.14); color: var(--gold-2); border: 1px solid var(--line); }
.case-amount { padding: 18px 26px 6px; }
.case-amount b { font-family: 'Bebas Neue'; font-size: 46px; color: var(--gold); line-height: 1; }
.case-amount span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }
.case-type { padding: 6px 26px 22px; font-size: 15px; color: var(--ink); font-weight: 600; }
.case-meta { margin-top: auto; padding: 18px 26px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); }
.case-meta b { color: var(--ink); font-weight: 600; }
.cases-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.member {
  border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--card);
  overflow: hidden; transition: all .4s var(--ease);
}
.member:hover { transform: translateY(-6px); border-color: var(--line); }
.member-photo {
  aspect-ratio: 1/1.05; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  display: grid; place-items: center;
}
.member-photo .initials { font-family: 'Bebas Neue'; font-size: 60px; color: rgba(212,166,42,.32); }
.member-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.18) contrast(1.03); z-index: 1; }
.member-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,31,.85), transparent 55%); }
.member-info { padding: 20px 22px; }
.member-info h4 { font-family: 'Bebas Neue'; font-size: 23px; letter-spacing: .03em; }
.member-info .role { color: var(--gold); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin: 2px 0 10px; }
.member-info p { font-size: 13px; color: var(--ink-2); }

/* ---------- Experts band ---------- */
.experts { background: rgba(13,27,42,.5); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.experts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.experts-feature { display: grid; gap: 18px; }
.expert-stat { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border: 1px solid var(--line-soft); border-radius: 14px; background: var(--card); transition: all .35s var(--ease); }
.expert-stat:hover { border-color: var(--line); background: var(--card-hover); }
.expert-stat .ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line); }
.expert-stat .ico svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.expert-stat h4 { font-family: 'Bebas Neue'; font-size: 20px; letter-spacing: .03em; margin-bottom: 4px; }
.expert-stat p { font-size: 13.5px; color: var(--ink-2); }

/* ============================================================
   PARTNERS / CERTIFICATIONS
   ============================================================ */
.partners { text-align: center; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 46px; }
.partner-logo {
  flex: 1 1 180px; max-width: 220px; padding: 26px 20px; border: 1px solid var(--line-soft); border-radius: 12px;
  background: var(--card); display: grid; place-items: center; gap: 8px; transition: all .35s var(--ease);
}
.partner-logo:hover { border-color: var(--line); background: var(--card-hover); }
.partner-logo svg { width: 34px; height: 34px; stroke: var(--gold); fill: none; stroke-width: 1.4; opacity: .85; }
.partner-logo b { font-family: 'Bebas Neue'; font-size: 19px; letter-spacing: .05em; color: var(--ink); }
.partner-logo span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials { overflow: hidden; }
.carousel { margin-top: 56px; position: relative; }
.carousel-track { display: flex; transition: transform .6s var(--ease); }
.slide { min-width: 100%; padding: 0 4px; }
.quote-card {
  max-width: 820px; margin: 0 auto; text-align: center; padding: 50px 50px 44px;
  border: 1px solid var(--line-soft); border-radius: 20px; background: var(--card); position: relative;
}
.quote-card .mark { font-family: 'Bebas Neue'; font-size: 90px; color: rgba(212,166,42,.18); line-height: .5; height: 40px; }
.quote-card .stars { color: var(--gold); letter-spacing: 4px; font-size: 18px; margin-bottom: 18px; }
.quote-card .text { font-size: 20px; line-height: 1.6; color: var(--ink); margin-bottom: 28px; font-weight: 400; }
.quote-card .author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-card .author .flag { font-size: 26px; }
.quote-card .author b { font-family: 'Bebas Neue'; font-size: 20px; letter-spacing: .04em; }
.quote-card .author span { font-size: 13px; color: var(--ink-2); }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--gold); cursor: pointer; font-size: 18px; transition: all .3s var(--ease); display: grid; place-items: center;
}
.carousel-nav button:hover { background: var(--gold); color: #1a1304; }
.dots { display: flex; gap: 8px; }
.dots button { width: 9px; height: 9px; border-radius: 50%; padding: 0; border: none; background: var(--line); }
.dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: .82fr .82fr 1.25fr; gap: 40px; margin-top: 56px; align-items: start; }
.contact-info { display: grid; gap: 18px; align-content: start; }

/* offices + quick-contact columns */
.contact-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .03em; margin-bottom: 14px; }
.contact-col .quick-lead { color: var(--ink-2); font-size: 14.5px; margin-bottom: 8px; }
.cline { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.cline:last-child { border-bottom: none; }
.cline .ico { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line); }
.cline .ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.cline .ck { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.cline .cv { font-size: 14.5px; color: var(--ink); word-break: break-word; line-height: 1.45; }
.cline .cv a { color: var(--ink); transition: color .2s; }
.cline .cv a:hover { color: var(--gold); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--line-soft); border-radius: 14px; background: var(--card); transition: all .35s var(--ease); }
.contact-item:hover { border-color: var(--line); background: var(--card-hover); }
.contact-item .ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line); }
.contact-item .ico svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.contact-item .label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 4px; }
.contact-item .val { font-size: 16px; color: var(--ink); font-weight: 600; word-break: break-word; }
.contact-form {
  padding: 38px; border: 1px solid var(--line-soft); border-radius: 20px;
  background: linear-gradient(160deg, rgba(13,27,42,.6), rgba(7,17,31,.3)); box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 30px; margin-bottom: 6px; }
.contact-form .form-sub { color: var(--ink-2); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; font-family: inherit; font-size: 15px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); color: var(--ink); transition: all .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(212,166,42,.05); }
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-gold { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-success {
  display: none; margin-top: 18px; padding: 16px; border-radius: 10px;
  background: rgba(56,211,159,.1); border: 1px solid rgba(56,211,159,.3); color: #51e0ab; font-size: 14px; text-align: center;
}
.form-success.show { display: block; }

/* confirmation checkbox */
.check { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.55; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }

/* accepted cases + important notice band */
.contact-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.accept-box, .notice-box { border: 1px solid var(--line-soft); border-radius: 16px; padding: 30px 32px; background: var(--card); }
.accept-box h4, .notice-box h4 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .03em; margin-bottom: 18px; }
.accept-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.accept-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink); }
.accept-list svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2.6; flex-shrink: 0; }
.notice-box { border-color: var(--line); background: linear-gradient(150deg, rgba(212, 166, 42, .08), rgba(255, 255, 255, .02)); }
.notice-box .notice-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line); margin-bottom: 14px; }
.notice-box .notice-ico svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.notice-box p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.notice-box p b { color: var(--ink); }
@media (max-width: 760px) { .contact-extra { grid-template-columns: 1fr; } .accept-list { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding: 70px 0 30px; background: rgba(7,17,31,.6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--ink-2); font-size: 14px; margin-top: 18px; max-width: 280px; }
.footer h5 { font-family: 'Bebas Neue'; font-size: 18px; letter-spacing: .08em; color: var(--ink); margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--ink-2); font-size: 14px; transition: color .25s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--ink-2); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: var(--ink-2); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; transition: all .25s var(--ease); }
.socials a:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: var(--ink-2); transition: fill .25s; }
.socials a:hover svg { fill: var(--gold); }
.footer-disclaimer { max-width: 880px; font-size: 11.5px; color: var(--ink-3); line-height: 1.6; margin-top: 18px; }

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-hero { padding: 170px 0 70px; text-align: center; border-bottom: 1px solid var(--line-soft); position: relative; }
.page-hero h1 { font-size: clamp(46px, 7vw, 84px); margin-bottom: 16px; }
.page-hero p { color: var(--ink-2); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--ink-2); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px; }
.filter-bar button {
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line-soft); background: transparent;
  color: var(--ink-2); font-size: 13px; font-family: inherit; cursor: pointer; transition: all .3s var(--ease); letter-spacing: .03em;
}
.filter-bar button:hover { color: var(--ink); border-color: var(--line); }
.filter-bar button.active { background: var(--gold); color: #1a1304; border-color: var(--gold); font-weight: 600; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero { min-height: auto; padding: 150px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-map canvas { width: 130%; right: -30%; opacity: .35; }
  .hero-map::after { background: linear-gradient(180deg, rgba(7,17,31,.4), var(--bg) 80%); }
  .hero-visual { justify-self: start; }
  .services-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .experts-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: rgba(7,17,31,.97); backdrop-filter: blur(14px); padding: 24px 28px; gap: 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  .lang-switch { order: -1; }
  .lang-current .lang-name { max-width: 84px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line-soft); }
  .timeline { grid-template-columns: 1fr; gap: 30px; }
  .timeline::before { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .services-grid, .cases-grid, .team-grid { grid-template-columns: 1fr; }
  .partner-row { gap: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-card { padding: 40px 26px 34px; }
  .quote-card .text { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-visual { display: none; }
  .contact-form { padding: 26px; }
}
