:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2f1ed;
  --muted: #b9b6ae;
  --gold: #c99a08;
  --gold-soft: #f0cf64;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 154, 8, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 154, 8, 0.08), transparent 24%),
    linear-gradient(180deg, #0d0d0f 0%, #0a0a0b 38%, #121214 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: -8rem;
  right: -8rem;
  background: rgba(201, 154, 8, 0.12);
}

.page-shell::after {
  bottom: 5rem;
  left: -10rem;
  background: rgba(201, 154, 8, 0.08);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand img {
  width: clamp(108px, 12vw, 160px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201, 154, 8, 0.34);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(201, 154, 8, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.hero {
  padding: 4.4rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 2.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
  color: var(--gold-soft);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(240, 207, 100, 0.65);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.cta-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 4.3vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-lead,
.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-lead {
  max-width: 54ch;
  margin: 0.95rem 0 1.45rem;
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c85a 100%);
  color: #141414;
  box-shadow: 0 16px 30px rgba(201, 154, 8, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero-metrics li,
.service-card,
.sector-card,
.process-card,
.contact-form,
.contact-cards div {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong) 0%, var(--panel) 100%);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.hero-metrics strong,
.feature-list strong,
.contact-cards strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-metrics span,
.feature-list span,
.contact-cards span,
.service-card p,
.sector-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23, 22, 20, 0.95), rgba(12, 12, 13, 0.98));
  box-shadow: var(--shadow);
}

.hero-card-main img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-card-float {
  position: absolute;
  right: 0rem;
  bottom: 1.1rem;
  /* max-width: 220px; */
  padding: 1rem;
  border: 1px solid rgba(201, 154, 8, 0.24);
  border-radius: var(--radius-md);
  background: rgba(16, 16, 18, 0.9);
  box-shadow: var(--shadow);
}

.hero-card-float p {
  margin: 0 0 0.45rem;
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-float strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.34rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem 0;
}

.trust-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 3rem 0;
  background:
    linear-gradient(180deg, rgba(201, 154, 8, 0.08), transparent),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-dark .container {
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4.1vw, 3.6rem);
}

.services-grid,
.sectors-grid,
.process-steps {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.45rem;
  border-radius: var(--radius-md);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 154, 8, 0.22), rgba(240, 207, 100, 0.08));
  color: var(--gold-soft);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3,
.sector-card h3,
.process-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.service-card p,
.sector-card p,
.process-card p {
  margin: 0;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list div {
  padding: 1rem 0 1rem 1.15rem;
  border-left: 2px solid rgba(201, 154, 8, 0.45);
}

.about-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-visual img {
  /* aspect-ratio: 16 / 12; */
  object-fit: cover;
}

.sectors-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-card,
.process-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.process-grid {
  display: grid;
  gap: 2rem;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(201, 154, 8, 0.16);
  color: var(--gold-soft);
  font-weight: 700;
}

.cta-section {
  padding-top: 1rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(201, 154, 8, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(201, 154, 8, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-cards div {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 154, 8, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 154, 8, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap img {
  width: 130px;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .services-grid,
  .sectors-grid,
  .process-steps,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: 12.5ch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .nav-wrap {
    min-height: 68px;
    gap: 1rem;
  }

  .brand img {
    width: 96px;
  }

  .nav-toggle {
    display: flex;
    width: 46px;
    height: 46px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(12, 12, 14, 0.96);
  }

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

  .hero-grid,
  .about-grid,
  .contact-grid,
  .services-grid,
  .sectors-grid,
  .process-steps,
  .trust-items,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.25rem 0 2.7rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 11.5vw, 3.45rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
  }

  .eyebrow {
    gap: 0.45rem;
    margin-bottom: 0.95rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .eyebrow::before {
    width: 30px;
  }

  .hero-lead {
    margin: 1rem 0 1.4rem;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .button {
    min-height: 46px;
    padding: 0.78rem 1.05rem;
    font-size: 0.92rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card-float {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
    padding: 0.95rem 1rem;
  }

  .hero-card-float p {
    font-size: 0.72rem;
  }

  .hero-card-float strong {
    font-size: 1.2rem;
  }

  .trust-items p {
    text-align: left;
    font-size: 0.88rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section-heading h2,
  .about-copy h2,
  .cta-panel h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.7rem);
    line-height: 0.98;
  }

  .section-heading p,
  .about-copy p,
  .contact-copy p,
  .service-card p,
  .sector-card p,
  .process-card p,
  .hero-metrics span,
  .feature-list span,
  .contact-cards span {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .service-card h3,
  .sector-card h3,
  .process-card h3 {
    font-size: 1.08rem;
  }

  .cta-panel {
    display: grid;
    padding: 1.35rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap p {
    text-align: left;
  }
}
