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

:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #131313;
  --panel-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.34);
  --text: #f5f5f5;
  --muted: #c6c6c6;

  --brand-yellow: #f3eb13;
  --brand-red: #e11d1d;
  --brand-black: #080808;

  --radius: 18px;
  --max: 1140px;
  --sticky-h: 68px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.42;
  background:
    linear-gradient(180deg, rgba(225, 29, 29, 0.2), transparent 35%),
    radial-gradient(900px 440px at 82% 0%, rgba(243, 235, 19, 0.12), transparent 60%),
    repeating-linear-gradient(
      -24deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 16px
    ),
    var(--bg);
  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% - 34px));
  margin: 0 auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-top: 3px solid var(--brand-red);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
}

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

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

.brand:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.brand-mark {
  width: 126px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-name {
  display: none;
  font-weight: 700;
  color: var(--muted);
}

@media (min-width: 1180px) {
  .brand-name {
    display: inline;
  }
}

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

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2px;
}

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

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

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

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

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

.btn {
  background: var(--brand-yellow);
  color: var(--brand-black);
  box-shadow: 0 10px 24px rgba(243, 235, 19, 0.2);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn--small {
  padding: 10px 12px;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Rajdhani", "Barlow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(34px, 6.8vw, 64px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(24px, 4.8vw, 38px);
  line-height: 1;
}

h3 {
  font-size: 22px;
}

.hero {
  padding: 34px 0 20px;
}

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

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: 20px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 235, 19, 0.4);
  background: rgba(243, 235, 19, 0.14);
  color: #f8f6b5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  margin: 12px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.ticks li {
  color: #dddddd;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(243, 235, 19, 0.2);
}

.hero-media {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

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

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

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

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

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

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

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

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(225, 29, 29, 0.12), rgba(243, 235, 19, 0.08));
}

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

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

.trust-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
  padding: 12px;
}

.trust-kpi {
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 20px;
  font-family: "Rajdhani", "Barlow", sans-serif;
}

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

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
}

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

.cta-text strong {
  font-size: 18px;
  font-family: "Rajdhani", "Barlow", sans-serif;
  text-transform: uppercase;
}

.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: 10px;
}

.section {
  padding: 34px 0;
}

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

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

.muted {
  color: var(--muted);
}

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

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

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

.tile p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.step-title {
  color: var(--brand-yellow);
  font-size: 22px;
  font-family: "Rajdhani", "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.proof-photos {
  display: grid;
  gap: 10px;
}

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

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

.proof-cards {
  display: grid;
  gap: 10px;
}

.quote p {
  margin: 0;
}

.quote blockquote {
  margin: 0 0 10px;
}

.quote figcaption {
  color: var(--muted);
  font-size: 13px;
}

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

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

.kpi-num {
  font-family: "Rajdhani", "Barlow", sans-serif;
  color: var(--brand-yellow);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.kpi-label {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.urgency {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(225, 29, 29, 0.22), rgba(243, 235, 19, 0.14));
  padding: 24px 0;
}

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

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

.chip {
  border: 1px solid rgba(243, 235, 19, 0.28);
  border-radius: 999px;
  background: rgba(243, 235, 19, 0.08);
  padding: 8px 10px;
  font-size: 13px;
}

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

.final-row {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-red);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(243, 235, 19, 0.1), rgba(225, 29, 29, 0.08));
  padding: 16px;
}

.site-footer {
  padding: 20px 0 26px;
}

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

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

.link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 28px 0 12px;
}

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

.service-list,
.area-cards {
  display: grid;
  gap: 12px;
}

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

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

.label {
  font-family: "Rajdhani", "Barlow", sans-serif;
  color: var(--brand-yellow);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

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

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

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

input:focus {
  border-color: rgba(243, 235, 19, 0.7);
  outline: 2px solid rgba(243, 235, 19, 0.25);
}

.form label {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
}

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

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

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

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

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

.team-grid {
  display: grid;
  gap: 10px;
  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: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(8px);
}

.sticky-btn {
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: 1px solid rgba(243, 235, 19, 0.45);
}

.sticky-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--line-strong);
}

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

  body {
    padding-bottom: 0;
  }
}

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

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

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

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

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