:root {
  --red: #e63437;
  --red-deep: #a90f18;
  --gold: #c4a257;
  --gold-light: #f1cf7a;
  --ink: #08090d;
  --ink-soft: #11141c;
  --panel: rgba(15, 17, 24, 0.84);
  --paper: #f8f5ef;
  --muted: #b9bdc9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 10%, rgba(230, 52, 55, 0.28), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(196, 162, 87, 0.2), transparent 28%),
    linear-gradient(135deg, #050506 0%, #11131a 45%, #050506 100%);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(360px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 8, 12, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 12, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(230, 52, 55, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 104px;
  height: 54px;
  overflow: visible;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.brand-mark img {
  width: 96px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-copy {
  flex: 0 1 auto;
  display: block;
  width: clamp(280px, 30vw, 430px);
  min-width: 0;
}

.brand-copy img {
  width: 100%;
  height: auto;
  padding: 0;
  filter: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-cta {
  border-radius: 999px;
  color: #eef0f6;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a {
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(230, 52, 55, 0.16);
  color: #fff;
}

.header-cta {
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 14px 32px rgba(230, 52, 55, 0.28);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 40px;
  align-items: center;
  min-height: 100vh;
  padding: 145px max(22px, calc((100vw - 1180px) / 2)) 78px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.74) 45%, rgba(5, 5, 6, 0.54) 100%),
    url("../images/slider/1.jpg") center right / cover;
  filter: saturate(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), var(--gold), transparent);
  box-shadow: 0 0 38px rgba(230, 52, 55, 0.8);
  animation: scan 6s ease-in-out infinite;
  opacity: 0.72;
}

@keyframes scan {
  0%, 100% { transform: translateX(-30vw); opacity: 0; }
  12%, 78% { opacity: 0.75; }
  50% { transform: translateX(74vw); }
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.02;
}

h1 {
  max-width: 830px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  letter-spacing: 0;
}

h2 {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d7d9e2;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-methods,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 800 0.93rem Inter, sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 36px rgba(230, 52, 55, 0.32);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(19, 22, 30, 0.9), rgba(8, 9, 13, 0.86)),
    radial-gradient(circle at 30% 0%, rgba(230, 52, 55, 0.22), transparent 38%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196, 162, 87, 0.18);
  border-radius: 18px;
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9ebf3;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(230, 52, 55, 0.14);
}

.signal-card {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.signal-card span,
.metric-grid span,
.intel-list span,
.contact-methods span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.08rem;
}

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

.metric-grid div {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.intel-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.intel-list span {
  padding: 12px 12px 12px 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  position: relative;
}

.intel-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip div {
  padding: 28px max(18px, calc((100vw - 1180px) / 8));
  background: rgba(9, 10, 15, 0.92);
}

.trust-strip strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 96px max(22px, calc((100vw - 1180px) / 2));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 52px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: #d8dbe5;
  font-size: 1.02rem;
}

.section-copy p:not(.eyebrow) {
  max-width: 720px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 1.15rem;
}

.services-section,
.process-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent),
    rgba(255, 255, 255, 0.015);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.timeline-item,
.contact-card,
.contact-form,
.category-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 21, 29, 0.88), rgba(8, 9, 13, 0.88));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 250px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(230, 52, 55, 0.42);
  background: linear-gradient(145deg, rgba(38, 22, 27, 0.92), rgba(8, 9, 13, 0.9));
  transform: translateY(-5px);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(196, 162, 87, 0.12);
  font-weight: 900;
}

.service-card p,
.timeline-item p,
.category-card p,
.contact-card p,
.office-grid p,
.site-footer p {
  color: var(--muted);
}

.category-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.category-card div {
  padding: 22px;
}

.category-card span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-card h3 {
  margin-top: 8px;
}

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

.timeline-item {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(230, 52, 55, 0.26);
  border-radius: 50%;
}

.timeline-item span {
  color: var(--gold-light);
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 16px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 28px;
}

.contact-methods {
  margin: 24px 0;
}

.contact-methods a {
  flex: 1 1 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-methods strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.office-grid div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.office-grid h3 {
  font-size: 1.05rem;
}

.social-row {
  margin-top: 20px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, transform 180ms ease;
}

.social-row a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(196, 162, 87, 0.2);
  border-radius: 14px;
  background: rgba(196, 162, 87, 0.08);
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.contact-form .consent-field span {
  color: #d7d9e2;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.consent-field a,
.footer-links a,
.policy-page a,
.cookie-actions a {
  color: var(--gold-light);
  font-weight: 800;
}

.contact-form span {
  color: #eef0f6;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  outline: 0;
  padding: 14px 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(230, 52, 55, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 52, 55, 0.12);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: #11141c;
  background: #ffffff;
}

.contact-form .consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #050507;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(230, 52, 55, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 40px;
  overflow: visible;
}

.footer-mark img {
  width: 70px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.site-footer .footer-wordmark {
  width: min(360px, 34vw);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.policy-page {
  min-height: 100vh;
  padding: 130px max(22px, calc((100vw - 920px) / 2)) 70px;
  color: #f7f7f7;
}

.policy-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 21, 29, 0.9), rgba(8, 9, 13, 0.92));
  box-shadow: var(--shadow);
}

.policy-panel h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.policy-panel h2 {
  margin-top: 28px;
  font-size: 1.4rem;
}

.policy-panel p,
.policy-panel li {
  color: #d7d9e2;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(720px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-footer p {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-links {
    justify-self: end;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

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

  .hero-panel {
    max-width: 560px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .category-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
    padding: 7px 9px;
    gap: 9px;
  }

  .brand-mark {
    width: 64px;
    height: 38px;
  }

  .brand-mark img {
    width: 62px;
  }

  .brand-copy {
    width: min(218px, calc(100vw - 184px));
  }

  .hero {
    padding-top: 128px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .metric-grid,
  .trust-strip,
  .service-grid,
  .timeline,
  .category-section,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .footer-brand {
    width: 100%;
    max-width: 420px;
  }

  .footer-mark {
    width: 62px;
    height: 36px;
  }

  .footer-mark img {
    width: 60px;
  }

  .site-footer .footer-wordmark {
    width: min(260px, calc(100vw - 138px));
  }
}
