:root {
  --bg: #0b0c0f;
  --panel: #15171c;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f7fa;
  --muted: #c8ced8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d7263d;
  --accent-strong: #ff4d57;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 38, 61, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 77, 87, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 13, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 92px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav a:hover,
.contact-links a:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 24px;
  min-height: 78vh;
  margin-top: 22px;
}

.hero-media,
.hero-card,
.service-card,
.feature-panel-box,
.contact-card,
.stats article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  min-height: 720px;
}

.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.46) 48%, rgba(8, 9, 12, 0.72) 100%),
    linear-gradient(180deg, rgba(215, 38, 61, 0.22) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 64px 48px;
}

.eyebrow,
.card-label,
.feature-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.contact-card h3,
.feature-panel h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.8rem, 6vw, 6.9rem);
  max-width: 10ch;
}

.hero-text,
.split-copy p,
.service-card p,
.contact-copy p,
.contact-card p,
.hero-card-copy p,
.feature-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.brand-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  color: var(--text);
}

.hero-card {
  align-self: end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(215, 38, 61, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

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

.hero-card-copy {
  padding: 24px;
}

.stats,
.service-grid,
.split-section,
.contact-section {
  display: grid;
  gap: 22px;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 0;
}

.stats article {
  padding: 28px;
  border-radius: 24px;
  background: var(--panel-soft);
}

.stats strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}

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

.section {
  padding: 88px 0 0;
}

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

.section h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  max-width: 13ch;
}

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

.service-card,
.feature-panel-box,
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.split-section,
.contact-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.split-copy {
  padding-right: 24px;
}

.feature-panel {
  display: flex;
  align-items: stretch;
}

.feature-panel-box {
  width: 100%;
  background:
    linear-gradient(160deg, rgba(215, 38, 61, 0.2), transparent 40%),
    var(--panel);
}

.feature-panel h3,
.contact-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-brands {
  position: relative;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-copy {
  padding-right: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer {
  padding: 42px 0 10px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .contact-section,
  .service-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-content,
  .split-copy,
  .contact-copy {
    padding-right: 0;
  }
}

@media (max-width: 800px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 30px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-content {
    padding: 42px 24px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .section {
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
  .hero-media {
    min-height: 500px;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-card img {
    height: 180px;
  }
}
