:root {
  --ink: #0c0d1b;
  --night: #0b0f26;
  --gold: #c9a43b;
  --gold-bright: #f1d37a;
  --slate: #9aa1b6;
  --ice: #f1f1f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ice);
  background: radial-gradient(circle at top, #1a1b36 0%, #0c0d1b 55%, #080813 100%);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 19, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(201, 164, 59, 0.3);
}

.brand-title {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: block;
}

.brand-subtitle {
  color: var(--slate);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--slate);
  transition: color 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
  display: block;
}

.hero {
  position: relative;
  padding: 110px 22px 90px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.hero-content h1 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-content p {
  color: var(--slate);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #17140b;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(201, 164, 59, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(201, 164, 59, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(201, 164, 59, 0.4);
  color: var(--gold-bright);
  box-shadow: none;
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.metric-label {
  color: var(--slate);
  font-size: 0.85rem;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(11, 15, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(201, 164, 59, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card img {
  width: 220px;
  margin: 0 auto 20px;
}

.hero-card-body {
  text-align: center;
}

.hero-card-body h3 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  margin-bottom: 10px;
}

.chip {
  background: rgba(201, 164, 59, 0.16);
  color: var(--gold-bright);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 16px;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 164, 59, 0.2) 0%, rgba(201, 164, 59, 0) 60%);
  top: -120px;
  right: -120px;
  filter: blur(20px);
  animation: glow 10s ease-in-out infinite;
  z-index: -1;
}

@keyframes glow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.section {
  padding: 90px 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.section.alt {
  background: rgba(11, 15, 38, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--slate);
}

.card-grid,
.services-grid,
.sector-grid,
.case-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.service-card,
.sector-card,
.case-card {
  background: rgba(12, 13, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover,
.service-card:hover,
.sector-card:hover,
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 59, 0.35);
}

.card h3,
.service-card h3,
.sector-card h3,
.case-card h3 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  margin-bottom: 10px;
}

.wide-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(201, 164, 59, 0.2), rgba(11, 15, 38, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 59, 0.4);
  color: var(--gold-bright);
  font-size: 0.8rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.sector-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.feature-list li::before {
  content: "*";
  color: var(--gold-bright);
  margin-right: 8px;
}

.highlight-card {
  background: rgba(12, 13, 27, 0.85);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(201, 164, 59, 0.3);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact-info p {
  color: var(--slate);
  margin-bottom: 8px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--slate);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white);
  font-family: "Sora", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(201, 164, 59, 0.6);
}

.form-note {
  color: var(--slate);
  font-size: 0.8rem;
}

.footer {
  padding: 40px 22px 60px;
  text-align: center;
  color: var(--slate);
}

.footer .brand-title {
  display: block;
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 20px;
    background: rgba(8, 8, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 90px;
  }

  .hero-metrics {
    gap: 16px;
  }
}
