﻿@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Archivo+Black&display=swap");

:root {
  --bg: #060606;
  --ink: #f7f7f7;
  --muted: #cacaca;
  --panel: #111111;
  --line: rgba(255, 255, 255, 0.2);
  --yellow: #f6ec1a;
  --red: #e21d22;
  --radius: 14px;
  --max: 1160px;
  --sticky-h: 70px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow Condensed", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(226, 29, 34, 0.22), transparent 35%),
    repeating-linear-gradient(-26deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 2px, transparent 2px, transparent 18px),
    var(--bg);
  letter-spacing: 0.2px;
  line-height: 1.24;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--yellow);
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  left: 10px;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-top: 4px solid var(--red);
  border-bottom: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(8px);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 4px;
}

.brand:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.brand-mark {
  width: 130px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.brand-name {
  display: none;
}

.nav {
  display: none;
  gap: 6px;
  align-items: center;
}

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 960px) {
  .nav {
    display: inline-flex;
  }
}

.header-ctas {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 620px) {
  .header-ctas {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 11px 13px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 10px 20px rgba(246, 236, 26, 0.22);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn--small {
  padding: 9px 11px;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

h1 {
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 7vw, 66px);
  line-height: 0.9;
  text-wrap: balance;
}

h2 {
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 0.95;
}

h3 {
  font-size: 24px;
  line-height: 0.95;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 236, 26, 0.16);
  border: 1px solid rgba(246, 236, 26, 0.45);
  color: #fff8b6;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #f0f0f0;
  text-wrap: pretty;
}

.hero {
  padding: 26px 0 16px;
}

.hero-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.42fr 1fr;
  }
}

.hero-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 16px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.ticks {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ticks li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
}

.ticks li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 5px;
  box-shadow: 0 0 0 3px rgba(246, 236, 26, 0.2);
}

.hero-media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0c0c0c;
}

.photo-slot {
  position: relative;
  height: 300px;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6, 6, 6, 0.84));
}

.photo-slot-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.photo-mini {
  height: 92px;
  overflow: hidden;
}

.photo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  background: linear-gradient(90deg, rgba(226, 29, 34, 0.24), rgba(246, 236, 26, 0.17));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 860px) {
  .trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.46);
  padding: 10px;
}

.trust-kpi {
  color: var(--yellow);
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  font-size: 20px;
  line-height: 1;
}

.trust-label {
  margin-top: 4px;
  color: #ececec;
  font-size: 13px;
}

.cta-strip {
  border-bottom: 1px solid var(--line);
}

.cta-row,
.page-hero-row,
.footer-row,
.urgency-row,
.final-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cta-row {
  padding: 13px 0;
}

.cta-text {
  display: grid;
  gap: 1px;
}

.cta-text strong {
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 0.9;
}

.cta-text span {
  color: var(--muted);
  font-size: 13px;
}

.cta-actions,
.section-actions,
.page-hero-actions,
.urgency-actions,
.final-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section {
  padding: 28px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 80%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
  font-size: 17px;
}

.grid3,
.service-list,
.area-cards,
.proof-cards,
.proof-photos,
.steps {
  display: grid;
  gap: 10px;
}

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

@media (min-width: 880px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile,
.service,
.area-card,
.panel,
.kpi,
.quote,
.steps li,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  padding: 14px;
}

.tile {
  border-left: 4px solid rgba(246, 236, 26, 0.9);
}

.tile p {
  margin: 7px 0 0;
  font-size: 18px;
  color: #efefef;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-title {
  color: var(--yellow);
  font-size: 27px;
  line-height: 0.9;
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
}

.proof-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 940px) {
  .proof-grid {
    grid-template-columns: 1fr 1.22fr;
  }
}

.proof-photo {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  min-height: 140px;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote blockquote,
.quote p {
  margin: 0;
}

.quote figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.kpi-row {
  margin-top: 10px;
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .kpi-row {
    grid-template-columns: 1fr;
  }
}

.kpi {
  border-left: 4px solid var(--red);
}

.kpi-num {
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  color: var(--yellow);
  font-size: 32px;
  line-height: 1;
}

.kpi-label {
  margin-top: 3px;
  color: #efefef;
  font-size: 14px;
}

.urgency {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(226, 29, 34, 0.28), rgba(246, 236, 26, 0.18));
  padding: 20px 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid rgba(246, 236, 26, 0.44);
  background: rgba(246, 236, 26, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.final-cta {
  padding: 24px 0;
}

.final-row {
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(246, 236, 26, 0.14), rgba(226, 29, 34, 0.12));
  padding: 14px;
}

.site-footer {
  padding: 18px 0 24px;
}

.footer-row {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding-top: 12px;
  font-size: 14px;
}

.link {
  color: #fff7b8;
  font-weight: 700;
}

.page-hero {
  padding: 20px 0 10px;
}

.page-hero .lead {
  margin: 8px 0 0;
}

.service-grid {
  margin-top: 9px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.label {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 5px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #ececec;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

input {
  width: 100%;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 11px 12px;
}

input:focus {
  border-color: rgba(246, 236, 26, 0.68);
  outline: 2px solid rgba(246, 236, 26, 0.25);
}

.form label {
  display: grid;
  gap: 4px;
  margin-bottom: 9px;
}

.form span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.fineprint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.media-panel {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.media-caption {
  padding: 9px 10px;
  font-size: 14px;
  color: var(--muted);
}

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

.team-card {
  overflow: hidden;
  padding: 0;
}

.team-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.team-card .media-caption {
  padding: 8px 10px;
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 6, 6, 0.96);
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}

.sticky-btn {
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
  background: var(--yellow);
  color: #000;
  border: 1px solid rgba(246, 236, 26, 0.5);
}

.sticky-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 730px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

main > section {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.35s ease forwards;
}

main > section:nth-of-type(2) {
  animation-delay: 0.04s;
}

main > section:nth-of-type(3) {
  animation-delay: 0.08s;
}

main > section:nth-of-type(4) {
  animation-delay: 0.12s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
