:root {
  --gold: #b8860b;
  --gold-2: #d6ad48;
  --charcoal: #15171c;
  --ink: #242832;
  --muted: #68707d;
  --soft: #f6f3ed;
  --paper: #ffffff;
  --line: #e8e4dc;
  --dark-line: rgba(255, 255, 255, .16);
  --shadow: 0 22px 60px rgba(22, 24, 30, .14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Cairo, Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.topbar {
  background: #101217;
  color: #f4f0e7;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #161616;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(184, 134, 11, .25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 21px;
  line-height: 1.35;
}

.brand small {
  margin-top: -3px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.nav-links a {
  color: #333844;
  border-radius: 12px;
  padding: 8px 11px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1d1d1d;
  background: #f1e6c9;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--charcoal);
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 17, .92), rgba(12, 13, 17, .72), rgba(12, 13, 17, .34)),
    url("../img/hero-industry.svg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(transparent, #fff);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 48px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 18px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
}

.page-hero {
  padding: 88px 0 94px;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.hero p,
.page-hero p {
  max-width: 780px;
  color: #ebe7de;
  font-size: 19px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 900;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  margin-top: 0;
  color: #fff;
  font-size: 25px;
}

.feature-list {
  margin: 0;
  padding-inline-start: 22px;
}

.feature-list li {
  margin: 11px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  color: #171717;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 28px rgba(184, 134, 11, .24);
}

.ghost {
  color: #fff;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, .08);
}

.outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-grid div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.stat-grid div:last-child {
  border-left: 0;
}

.stat-grid strong {
  display: block;
  color: var(--gold);
  font-size: 29px;
  line-height: 1.25;
}

.stat-grid span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 90px 0;
}

.soft-section,
.services-preview {
  background: var(--soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

h2 {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(29px, 3.4vw, 42px);
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  line-height: 1.4;
}

p {
  color: #555c68;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ece7dd;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.two-cards {
  grid-template-columns: repeat(2, 1fr);
}

.cards article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 35px rgba(24, 28, 35, .06);
}

.cards article > span,
.service-list article > span {
  color: var(--gold);
  font-size: 29px;
  font-weight: 900;
}

.cards h3 {
  margin: 8px 0 10px;
  font-size: 22px;
}

.cards a {
  color: var(--gold);
  font-weight: 900;
}

.dark-section {
  color: #fff;
  background: var(--charcoal);
}

.dark-section h2,
.dark-section p {
  color: #fff;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.why-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-right: 5px solid var(--gold);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 35px rgba(24, 28, 35, .05);
}

.service-list h2 {
  margin-top: 0;
  font-size: 30px;
}

.steps {
  margin: 22px 0 0;
  padding-inline-start: 24px;
  color: #4f5662;
  font-weight: 800;
}

.steps li {
  margin: 10px 0;
}

.contact-section {
  background: #111318;
  color: #fff;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 13px 16px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2c3039;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dedbd3;
  border-radius: 12px;
  padding: 13px 15px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 14px;
}

footer {
  padding: 22px 0;
  background: #090a0d;
  color: #c7c9ce;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

footer p {
  margin: 0;
  color: #c7c9ce;
}

@media (max-width: 980px) {
  .topbar-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 4%;
    left: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 11px 14px;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 120px;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .cards,
  .two-cards,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 70px 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-panel,
  .contact-form,
  .cards article,
  .service-list article {
    padding: 22px;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .stat-grid div {
    padding: 20px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-grid div:last-child {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }
}
