﻿:root {
  --bg: #07111f;
  --panel: #0d1a2c;
  --panel-2: #101f34;
  --text: #edf4ff;
  --muted: #a9b8cc;
  --line: rgba(255,255,255,.12);
  --gold: #d6b46a;
  --gold-2: #f2d890;
  --blue: #5ca7ff;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(92,167,255,.22), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(214,180,106,.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 22px 24px;
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(214,180,106,.55); border-radius: 14px; color: var(--gold-2); background: rgba(214,180,106,.08); }
.brand-text { font-size: 18px; }
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--text); }
.hero { max-width: var(--max); min-height: 660px; margin: 0 auto; padding: 112px 24px 80px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 7vw, 78px); line-height: .98; letter-spacing: -.055em; max-width: 820px; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 22px; }
h3 { font-size: 18px; margin-bottom: 8px; }
.lead { color: #c8d7ea; font-size: 20px; max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 700; }
.button.primary { background: var(--gold-2); color: #07111f; }
.button.secondary { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.04); }
.hero-card { border: 1px solid var(--line); border-radius: 30px; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.metric { padding: 24px 0; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: none; }
.metric span { color: var(--gold-2); font-weight: 800; font-size: 32px; }
.metric p { margin: 4px 0 0; color: #dbe7f7; font-size: 18px; }
.section { max-width: var(--max); margin: 0 auto; padding: 78px 24px; }
.two-column { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; border-top: 1px solid var(--line); }
.prose { color: #c7d5e7; font-size: 17px; }
.prose.wide { max-width: 820px; }
.prose h2 { color: var(--text); font-size: 26px; margin-top: 34px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.card { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.045); }
.card p, .steps p, .contact p, .note p { color: var(--muted); }
.approach { border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 28px; }
.steps div { padding: 24px; border-radius: 24px; background: var(--panel); border: 1px solid var(--line); }
.steps span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 50%; background: rgba(214,180,106,.16); color: var(--gold-2); font-weight: 800; }
.note { padding-top: 34px; padding-bottom: 34px; }
.note { max-width: calc(var(--max) - 48px); border: 1px solid rgba(214,180,106,.28); border-radius: 28px; background: rgba(214,180,106,.07); }
.note h2 { font-size: 26px; margin-bottom: 8px; }
.contact { display: grid; grid-template-columns: 1fr .8fr; gap: 32px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 28px; padding: 28px; background: var(--panel-2); }
.contact-card .label { color: var(--gold-2); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.contact-card a { display: inline-block; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.muted { font-size: 14px; }
.site-footer { max-width: var(--max); margin: 0 auto; padding: 36px 24px 54px; display: flex; justify-content: space-between; gap: 22px; color: var(--muted); border-top: 1px solid var(--line); }
.site-footer a { color: var(--muted); margin-left: 18px; text-decoration: none; }
.page { max-width: var(--max); margin: 0 auto; padding: 90px 24px 120px; }
.page h1 { font-size: clamp(42px, 6vw, 68px); }
@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .two-column, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; min-height: auto; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .site-footer a { margin-left: 0; margin-right: 18px; }
}

.brand > span:last-child { display: grid; line-height: 1.1; }
.brand-sub { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.lang { display: flex; gap: 8px; align-items: center; }
.lang a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 800; padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.03); }
.lang a.active, .lang a:hover { color: #07111f; background: var(--gold-2); border-color: var(--gold-2); }
.consulting-hero h1 { max-width: 900px; }
.sector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; }
.sector-grid span { min-height: 70px; display: flex; align-items: center; padding: 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.045); color: #dbe7f7; font-weight: 700; }
@media (max-width: 900px) { .lang { margin-left: auto; } .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sector-grid { grid-template-columns: 1fr; } .brand-sub { display:none; } }


.expand { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.expand summary { cursor: pointer; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); font-weight: 800; list-style: none; }
.expand summary::-webkit-details-marker { display: none; }
.expand summary::after { content: "+"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(214,180,106,.45); font-size: 14px; }
.expand[open] summary::after { content: "–"; }
.expand p { margin: 12px 0 0; color: #c7d5e7; font-size: 15px; }


.nav a.active { color: var(--gold-2); }
.lead.narrow { max-width: 820px; }
.service-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 38px; }
.service-list section, .industry-cards article, .insight-grid article { border: 1px solid var(--line); background: rgba(255,255,255,.045); border-radius: 26px; padding: 28px; }
.service-list ul { color: var(--muted); padding-left: 20px; margin-bottom: 0; }
.industry-cards, .insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.industry-cards h2, .insight-grid h2 { font-size: 24px; }
.insight-grid span { color: var(--gold-2); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
@media (max-width: 900px) { .service-list, .industry-cards, .insight-grid { grid-template-columns: 1fr; } }
