:root {
  --bg: #0b0f16;
  --bg-soft: #111824;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --text: #171a21;
  --text-soft: #5f6877;
  --white: #ffffff;
  --accent: #ff6a00;
  --accent-soft: rgba(255, 106, 0, 0.12);
  --border: rgba(20, 28, 45, 0.08);
  --shadow: 0 18px 50px rgba(9, 15, 28, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--surface);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.brand-accent { color: var(--accent); margin-right: 6px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: #4b5565; font-weight: 600; }
.nav a:hover { color: var(--accent); }
.menu-toggle {
  display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255,106,0,0.18), transparent 30%),
    linear-gradient(135deg, #06080c 0%, #0c1420 58%, #0b1018 100%);
  color: var(--white);
  padding: 84px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  max-width: 760px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 22px; border-radius: 14px; font-weight: 700; transition: .25s ease;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 12px 30px rgba(255,106,0,.28); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { border: 1px solid rgba(255,255,255,.16); color: var(--white); background: rgba(255,255,255,.04); }
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.hero-highlights {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0;
}
.hero-highlights li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  padding: 14px 16px; color: rgba(255,255,255,.82); font-size: .95rem;
}
.hero-panel { display: grid; gap: 16px; }
.metric-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.metric-label { display: block; color: rgba(255,255,255,.56); text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; margin-bottom: 8px; }
.metric-card strong { font-size: 1.2rem; display: block; margin-bottom: 8px; }
.metric-card p { margin: 0; font-size: .98rem; max-width: 100%; }

.section { padding: 92px 0; }
.section-light { background: var(--surface-alt); }
.section-dark { background: var(--bg); color: var(--white); }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.section-heading { margin-bottom: 46px; }
.section-heading.center { text-align: center; max-width: 800px; margin-inline: auto; margin-bottom: 48px; }
.section h2, .section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section p, .section-heading p { color: var(--text-soft); font-size: 1.05rem; line-height: 1.75; }
.section-dark p { color: rgba(255,255,255,.72); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  background: var(--surface); border: 1px solid var(--border); padding: 11px 14px; border-radius: 999px; font-weight: 600;
}
.about-media img {
  width: 100%; border-radius: 28px; box-shadow: var(--shadow); min-height: 420px; object-fit: cover;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px;
}
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.service-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--text-soft); line-height: 1.8; }
.service-card h3, .case-card h3 { margin: 16px 0 12px; font-size: 1.34rem; }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--accent-soft); padding: 10px;
}
.spotlight-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start;
}
.spotlight-points {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.spotlight-points > div {
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); border-radius: 20px; padding: 22px;
}
.spotlight-points strong { display: block; margin-bottom: 10px; font-size: 1.05rem; }
.section-tag-dark { color: #ff8f3d; }
.case-kicker {
  display: inline-block; font-size: .8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px;
}
.case-result {
  margin-top: 18px; padding: 14px 16px; border-radius: 16px; background: var(--surface-alt); color: #364051; font-weight: 600;
}
.cta-band {
  background: linear-gradient(180deg, #fff 0%, #fff 45%, #0f1726 45%, #0f1726 100%);
  padding-top: 0;
}
.cta-band-inner {
  background: linear-gradient(135deg, #111827 0%, #161f32 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 34px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: 0 26px 60px rgba(10,15,30,.24);
}
.cta-band-inner h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); letter-spacing: -0.04em; }
.contact-grid {
  display: grid; grid-template-columns: 1fr .92fr; gap: 36px; align-items: start;
}
.contact-card {
  background: var(--surface); border-radius: 28px; border: 1px solid var(--border); padding: 26px; box-shadow: var(--shadow);
}
.contact-item {
  display: block; padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-label {
  display: block; color: var(--text-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px;
}
.contact-item strong { font-size: 1.05rem; }
.contact-note {
  margin-top: 18px; color: var(--text-soft); line-height: 1.7;
}
.site-footer {
  background: #0a0f18; color: rgba(255,255,255,.76); padding: 30px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.footer-brand { margin-bottom: 8px; }
.back-top { color: #fff; font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid, .section-grid, .spotlight-grid, .contact-grid, .footer-inner { grid-template-columns: 1fr; display: grid; }
  .cards-grid, .spotlight-points, .hero-highlights { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .nav {
    position: absolute; top: 78px; left: 0; right: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,0,0,.04);
    display: none; flex-direction: column; align-items: flex-start; padding: 20px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section, .hero { padding: 72px 0; }
  .card, .metric-card, .contact-card, .cta-band-inner { padding: 22px; }
  .header-inner { min-height: 70px; }
}
