:root {
  --black: #07090d;
  --black-2: #10141b;
  --steel: #d8dee8;
  --muted: #8f99aa;
  --white: #f8fafc;
  --gold: #f5b52e;
  --gold-2: #d89217;
  --blue: #076fd0;
  --red: #d72d25;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(7, 9, 13, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
}

.brand img {
  width: 104px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
}

.brand span {
  color: var(--gold);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  color: #eef3f8;
  font-weight: 850;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  color: #111;
  background: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 6vw, 82px) clamp(42px, 7vw, 88px);
  overflow: hidden;
}

.hero-media,
.hero-media::after,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #050505;
}

.hero-logo-media {
  display: grid;
  place-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(18px, 6vw, 92px);
  background:
    radial-gradient(circle at 62% 42%, rgba(7, 111, 208, 0.22), transparent 34%),
    radial-gradient(circle at 42% 62%, rgba(245, 181, 46, 0.11), transparent 30%),
    #050505;
}

.hero-logo-media img {
  width: min(1120px, 88vw);
  max-height: 66vh;
  object-fit: contain;
  opacity: 0.86;
  filter: brightness(1.08) contrast(1.06);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.92), rgba(7, 9, 13, 0.54) 48%, rgba(7, 9, 13, 0.36)),
    linear-gradient(0deg, rgba(7, 9, 13, 0.94), rgba(7, 9, 13, 0.08) 42%);
}

.hero-shade {
  background: linear-gradient(140deg, rgba(245, 181, 46, 0.16), transparent 32%, rgba(7, 111, 208, 0.14) 72%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-copy h2,
.contact-copy h2,
.process-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: 7.4rem;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #e2e8f0;
  font-size: 1.22rem;
  line-height: 1.56;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  color: #101014;
  background: var(--gold);
}

.primary:hover {
  background: #ffd05d;
}

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

.hero-proof {
  position: absolute;
  right: clamp(18px, 6vw, 82px);
  bottom: clamp(28px, 6vw, 78px);
  z-index: 2;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-proof img {
  width: 190px;
  height: 108px;
  margin-bottom: 12px;
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.16rem;
}

.hero-proof span {
  margin-top: 6px;
  color: #cbd5e1;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1118;
}

.trust-strip article {
  min-height: 142px;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: #cbd5e1;
  line-height: 1.45;
}

.section,
.process-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section h2,
.feature-copy h2,
.contact-copy h2,
.process-section h2 {
  font-size: 3.35rem;
  line-height: 0.98;
}

.section p,
.feature-copy p,
.contact-copy p,
.process-grid p {
  color: #c7d0dc;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 950;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-grid article,
.process-grid article,
.lead-form,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.services-grid article {
  min-height: 210px;
  padding: 24px;
}

.services-grid span,
.process-grid span {
  color: var(--gold);
  font-weight: 950;
}

.services-grid h3,
.process-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.24rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 650px;
  background: #111620;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-image.logo-panel {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(26px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 45%, rgba(7, 111, 208, 0.22), transparent 34%),
    #050505;
}

.feature-image.logo-panel img {
  width: min(92%, 900px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: brightness(1.06) contrast(1.04);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 82px);
}

.feature-copy ul,
.contact-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-copy li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #e8edf3;
  font-weight: 850;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.works-section .section-heading {
  width: min(980px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}

.work-filters button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(245, 181, 46, 0.45);
  border-radius: 999px;
  color: #fff8ea;
  background: transparent;
  font-weight: 950;
  cursor: pointer;
}

.work-filters button.active,
.work-filters button:hover {
  color: #111;
  background: linear-gradient(135deg, #f7c85a, #d89217);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #151923;
}

.work-card.tall {
  grid-row: span 2;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 13, 0.86), transparent 56%);
}

.work-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 20px;
}

.work-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.work-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
}

.work-card[hidden] {
  display: none;
}

.video-section {
  padding-top: 18px;
}

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

.video-card {
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 13;
  background: #05070a;
  object-fit: cover;
}

.video-card div {
  padding: 18px;
}

.video-card strong,
.video-card span {
  display: block;
}

.video-card span {
  margin-top: 6px;
  color: #cbd5e1;
  line-height: 1.45;
}

.process-section {
  padding-top: 30px;
}

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

.process-grid article {
  min-height: 230px;
  padding: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
}

.lead-form {
  padding: 22px;
}

.lead-form h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #dce3ec;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #fff;
  background: #0c1118;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
  margin-top: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 48px 18px 64px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #05070a;
}

.site-footer img {
  width: 260px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.site-footer p {
  font-weight: 950;
}

.site-footer span {
  color: var(--gold);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 16px;
  border-top: 1px solid rgba(245, 181, 46, 0.22);
  text-decoration: none;
  color: #f8ead0;
}

.footer-credit img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: contain;
}

.footer-credit strong {
  font-size: 1rem;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 9, 13, 0.96);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
    padding: 112px 28px 42px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .section h2,
  .feature-copy h2,
  .contact-copy h2,
  .process-section h2 {
    font-size: 2.65rem;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .trust-strip,
  .services-grid,
  .video-grid,
  .process-grid,
  .contact-section,
  .split-section,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

  .work-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 92px;
    height: 52px;
  }

  .brand span {
    max-width: 120px;
    font-size: 0.88rem;
  }

  .hero-content {
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3.05rem;
    line-height: 0.94;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .section h2,
  .feature-copy h2,
  .contact-copy h2,
  .process-section h2 {
    font-size: 2.05rem;
  }

  .trust-strip,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-filters {
    justify-content: flex-start;
  }

  .trust-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-grid {
    grid-auto-rows: 340px;
  }

  .work-card.tall,
  .work-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .brand span {
    max-width: 110px;
  }
}
