:root {
  --black: #050505;
  --black2: #0a0a0a;
  --card: #101010;
  --card2: #151515;

  --gold: #d6ad52;
  --gold2: #f0ca72;
  --gold-dark: #9c742c;

  --white: #ffffff;
  --text: #eeeeee;
  --muted: #a7a7a7;
  --line: #292929;
  --soft: #0d0d0d;

  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(214, 173, 82, 0.09),
      transparent 27%
    ),
    var(--black);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin: auto;
}

/* ==============================
   HEADER
============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #202020;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;

  color: white;
  font-size: 20px;
  font-weight: 800;
}
.brand-logo {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}
}


.brand-mark {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(214, 173, 82, 0.45);
  border-radius: 9px;

  color: #050505;

  background: linear-gradient(
    135deg,
    var(--gold2),
    var(--gold-dark)
  );

  box-shadow: 0 0 25px rgba(214, 173, 82, 0.13);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

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

/* ==============================
   BUTTONS
============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 23px;

  border: 1px solid var(--gold);
  border-radius: 7px;

  background: linear-gradient(
    135deg,
    #edc86e,
    #bd8e36
  );

  color: #080808;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 8px 30px rgba(214, 173, 82, 0.12);

  transition: 0.25s ease;
}

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

  background: linear-gradient(
    135deg,
    #f5d783,
    #d2a348
  );

  box-shadow: 0 12px 35px rgba(214, 173, 82, 0.22);
}

.btn-small {
  padding: 10px 17px;
}

.btn-ghost {
  background: transparent;
  color: var(--gold2);
  border-color: #66542e;
  box-shadow: none;
}

.btn-ghost:hover {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

/* ==============================
   HERO
============================== */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 650px;

  padding: 105px 0 90px;

  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;

  width: 750px;
  height: 750px;

  right: -170px;
  top: -180px;

  background: radial-gradient(
    circle,
    rgba(214, 173, 82, 0.12),
    transparent 65%
  );

  pointer-events: none;
}

.hero-grid {
  position: relative;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 75px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 17px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1 {
  margin: 0;

  color: white;

  font-size: clamp(48px, 6vw, 78px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--gold2);

  text-shadow: 0 0 35px rgba(214, 173, 82, 0.12);
}

.hero-copy > p {
  max-width: 680px;

  margin: 25px 0;

  color: #b5b5b5;

  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;

  margin: 30px 0;
}

/* SERVICES UNDER HERO */

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 35px;
}

.platforms span {
  padding: 8px 13px;

  border: 1px solid #34302a;
  border-radius: 100px;

  background: rgba(16, 16, 16, 0.8);

  color: #bdb6a7;

  font-size: 12px;
}

/* ==============================
   HERO GROWTH CARD
============================== */

.hero-card {
  position: relative;

  padding: 30px;

  border: 1px solid #373126;
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 20, 16, 0.96),
      rgba(8, 8, 8, 0.98)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.03);
}

.hero-card::before {
  content: "";

  position: absolute;
  inset: -1px;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(214, 173, 82, 0.18),
    transparent 42%
  );

  pointer-events: none;

  z-index: -1;
}

.mini-label {
  color: var(--gold);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.hero-card h3 {
  margin: 12px 0 25px;

  color: white;

  font-size: 27px;

  line-height: 1.25;
}

.metric {
  padding: 17px 0;

  display: grid;
  grid-template-columns: 45px 1fr;

  align-items: center;

  border-top: 1px solid #2a2926;
}

.metric span {
  color: var(--gold);

  font-weight: 800;
}

.metric p {
  margin: 0;

  color: #aaa69d;
}

.metric b {
  color: white;
}

/* ==============================
   GENERAL SECTIONS
============================== */

.section {
  padding: 95px 0;

  background: #0a0a0a;
}

.section.soft {
  background: #0d0d0d;
}

.dark-section {
  color: white;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(214, 173, 82, 0.07),
      transparent 30%
    ),
    #050505;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;

  gap: 60px;

  align-items: end;

  margin-bottom: 45px;
}

.section-head h2,
.center h2 {
  margin: 7px 0;

  color: white;

  font-size: clamp(35px, 4vw, 52px);

  line-height: 1.08;

  letter-spacing: -1.5px;
}

.section-head p,
.center p {
  color: #9b9b9b;
}

/* ==============================
   PROBLEM SECTION
============================== */

.problem {
  padding: 90px 0;

  background: #0d0d0d;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 850px;
}

.pain-grid {
  width: min(100% - 40px, var(--max));

  margin: 45px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid var(--line);
  border-radius: 14px;

  overflow: hidden;
}

.pain-grid article {
  padding: 30px;

  background: #101010;

  border-right: 1px solid var(--line);

  transition: 0.25s ease;
}

.pain-grid article:last-child {
  border-right: none;
}

.pain-grid article:hover {
  background: #15130f;
}

.icon {
  margin-bottom: 15px;

  color: var(--gold);

  font-size: 24px;
}

.pain-grid h3 {
  margin: 0 0 8px;

  color: white;
}

.pain-grid p {
  color: #999;

  font-size: 14px;
}

/* ==============================
   SERVICES
============================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.service-grid article {
  position: relative;

  min-height: 220px;

  padding: 30px;

  border: 1px solid #292929;
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      #121212,
      #0b0b0b
    );

  transition: 0.25s ease;
}

.service-grid article:hover {
  transform: translateY(-5px);

  border-color: #7e6738;

  box-shadow: 0 18px 45px rgba(214, 173, 82, 0.07);
}

.service-grid span {
  color: var(--gold);

  font-size: 12px;
  font-weight: 800;
}

.service-grid h3 {
  margin: 30px 0 12px;

  color: white;

  font-size: 21px;
}

.service-grid p {
  margin: 0;

  color: #9d9d9d;

  font-size: 14px;
}

/* Gold line on service cards */

.service-grid article::after {
  content: "";

  position: absolute;

  left: 30px;
  bottom: 0;

  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold2)
  );

  transition: width 0.3s ease;
}

.service-grid article:hover::after {
  width: calc(100% - 60px);
}

/* ==============================
   INDUSTRIES
============================== */

.industry-wrap {
  display: flex;
  flex-wrap: wrap;

  gap: 11px;

  margin-top: 35px;
}

.industry-wrap span {
  padding: 11px 16px;

  border: 1px solid #303030;
  border-radius: 7px;

  background: #101010;

  color: #b7b7b7;

  transition: 0.2s;
}

.industry-wrap span:hover {
  border-color: var(--gold);

  color: var(--gold2);
}

/* ==============================
   PROCESS
============================== */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 12px;
}

.steps article {
  padding: 27px 20px;

  border: 1px solid #292929;
  border-radius: 12px;

  background: #101010;

  transition: 0.25s ease;
}

.steps article:hover {
  transform: translateY(-3px);

  border-color: #67542f;
}

.steps b {
  color: var(--gold);

  font-size: 12px;
}

.steps h3 {
  margin: 17px 0 8px;

  color: white;
}

.steps p {
  color: #999;

  font-size: 13px;
}

/* ==============================
   ABOUT
============================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: start;
}

.about-copy {
  padding: 35px;

  border: 1px solid #292929;
  border-radius: 14px;

  background: #101010;
}

.about-copy p,
.about-copy li {
  color: #a7a7a7;
}

.about-copy b {
  color: var(--gold2);
}

.about-copy li {
  margin: 13px 0;
}

/* ==============================
   CONTACT
============================== */

.cta-section {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(214, 173, 82, 0.08),
      transparent 30%
    ),
    #050505;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 65px;
}

.direct-contact {
  margin-top: 25px;

  display: flex;
  flex-direction: column;

  gap: 8px;
}

.direct-contact a {
  color: var(--gold2);
}

/* ==============================
   FORM
============================== */

.lead-form {
  padding: 30px;

  border: 1px solid #373126;
  border-radius: 15px;

  background: #101010;
}

.lead-form label {
  display: block;

  margin-bottom: 15px;

  color: #c4c4c4;

  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  display: block;

  width: 100%;

  margin-top: 7px;
  padding: 13px;

  border: 1px solid #303030;
  border-radius: 7px;

  outline: none;

  background: #080808;

  color: white;

  font: inherit;
}

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

  box-shadow: 0 0 0 3px rgba(214, 173, 82, 0.08);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.btn-full {
  width: 100%;
}

.lead-form small {
  display: block;

  margin-top: 12px;

  color: #777;
}

/* ==============================
   FOOTER
============================== */

footer {
  padding: 55px 0 25px;

  border-top: 1px solid #242424;

  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;

  gap: 50px;
}

.footer-grid p,
.footer-grid a {
  color: #888;

  font-size: 13px;
}

.footer-grid a {
  display: block;

  margin: 7px 0;
}

.footer-grid a:hover {
  color: var(--gold2);
}

.footer-grid b {
  color: white;
}

.copyright {
  margin-top: 35px;
  padding-top: 20px;

  border-top: 1px solid #202020;

  color: #666;

  font-size: 12px;
}

/* ==============================
   MOBILE CTA
============================== */

.mobile-cta {
  display: none;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-grid,
  .section-head,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

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

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

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

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

@media (max-width: 560px) {

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .header .btn-small {
    display: none;
  }

  .hero {
    padding: 65px 0;
  }

  .hero h1 {
    font-size: 45px;

    letter-spacing: -2px;
  }

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

  .service-grid,
  .pain-grid,
  .steps,
  .two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }

  .mobile-cta {
    position: fixed;

    display: grid;
    grid-template-columns: 1fr 1fr;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 200;

    background: #050505;

    border-top: 1px solid #292929;
  }

  .mobile-cta a {
    padding: 14px 5px;

    text-align: center;

    color: white;

    font-size: 12px;
    font-weight: 800;
  }

  .mobile-cta a:last-child {
    background: linear-gradient(
      135deg,
      #e3bb5e,
      #ad7e2e
    );

    color: #050505;
  }
}
