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

:root {
  --black: #0b0b0d;
  --black-2: #111114;
  --gold: #d89018;
  --gold-light: #f3c76a;
  --white: #ffffff;
  --gray: #f4f4f5;
  --text: #2a2a2f;
  --muted: #6c6c74;
  --border: rgba(216, 144, 24, 0.24);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(1180px, 92%);
  margin: auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 7px;
}

.hero {
  min-height: calc(100vh - 82px);
  background:
    radial-gradient(circle at 70% 20%, rgba(216, 144, 24, 0.24), transparent 34%),
    linear-gradient(135deg, #080809 0%, #141416 58%, #080809 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(243, 199, 106, 0.18);
  border-radius: 50%;
  right: -140px;
  bottom: -160px;
}

.hero-content {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 900px;
}

.hero-description {
  margin-top: 24px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #151515;
  box-shadow: 0 12px 28px rgba(216, 144, 24, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(243, 199, 106, 0.22);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 100%;
  border-radius: 26px;
  margin-bottom: 22px;
}

.hero-card h3 {
  color: var(--gold-light);
  font-size: 1.45rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 10px;
}

.section {
  padding: 105px 0;
}

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

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

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 22px;
}

.section-text p,
.section-heading p {
  color: var(--muted);
  margin-bottom: 14px;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.stat-card,
.mission-card,
.business-card,
.service-item,
.project-card,
.contact-form {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.stat-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
}

.stat-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.dark {
  background: var(--black);
  color: var(--white);
}

.dark .section-heading p,
.dark .section-text p {
  color: rgba(255, 255, 255, 0.68);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.business-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-color: var(--border);
  min-height: 280px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.business-card .icon {
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 24px;
}

.business-card h3 {
  color: var(--gold-light);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.business-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  border-radius: 26px;
  padding: 30px;
  background: var(--white);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.service-item span {
  color: var(--gold);
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

.service-item h3 {
  margin-bottom: 8px;
}

.service-item p {
  color: var(--muted);
}

.values {
  background: var(--gray);
}

.mission-card {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
}

.mission-card h3 {
  color: var(--gold);
  margin-bottom: 16px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
}

.project-image {
  min-height: 220px;
}

.gradient-one {
  background: linear-gradient(135deg, #0b0b0d, #d89018);
}

.gradient-two {
  background: linear-gradient(135deg, #f8b45b, #ffe3a1);
}

.gradient-three {
  background: linear-gradient(135deg, #1b1b22, #f3c76a);
}

.project-content {
  padding: 28px;
}

.project-content p {
  margin: 12px 0 18px;
  color: var(--muted);
}

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

.check-list {
  display: grid;
  gap: 16px;
}

.check-list div {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

.check-list span {
  color: var(--gold-light);
  font-weight: 900;
  margin-right: 10px;
}

.talent {
  background:
    linear-gradient(rgba(11,11,13,0.86), rgba(11,11,13,0.86)),
    radial-gradient(circle at 20% 50%, rgba(216,144,24,0.35), transparent 35%);
  color: var(--white);
}

.talent-box {
  padding: 54px;
  border-radius: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: rgba(255, 255, 255, 0.05);
}

.talent-box p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-form {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dedee4;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  margin-top: 12px;
  border: 0;
}

.footer {
  background: #070708;
  color: var(--white);
  padding: 56px 0 22px;
}

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

.footer img {
  width: 90px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
}

.copy {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 5%;
    display: none;
  }

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

  .hero-content,
  .two-columns,
  .three-columns,
  .cards-grid,
  .service-list,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .talent-box,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .navbar {
    height: 74px;
  }

  .brand span {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .talent-box {
    padding: 32px;
  }
}
