:root {
  --red: #e10613;
  --red-dark: #b1000c;
  --red-deep: #7d0008;
  --black: #080808;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --text: #1d1d1d;
  --muted: #5f5f5f;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 14px 36px rgba(0,0,0,0.08);
  --max-width: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(225,6,19,0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.96);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(225,6,19,0.2));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span:first-child { font-size: 1.08rem; }

.brand-text span:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,8,8,0.96), rgba(18,18,18,0.88)),
    linear-gradient(120deg, var(--red) 0%, var(--red-dark) 56%, var(--red-deep) 100%);
  color: var(--white);
  padding: 96px 0 82px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -140px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -90px;
  width: 120%;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: rotate(-7deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 780px;
}

.hero p {
  font-size: 1.06rem;
  max-width: 760px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}

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

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: var(--red);
  color: var(--white);
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,0.38);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.24);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
}

.hero-card img {
  width: 180px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.hero-card h2,
.hero-card p {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  text-align: center;
}

.hero-card p {
  font-size: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

section { padding: 88px 0; }

.section-light {
  background: linear-gradient(180deg, var(--off-white), #fff);
}

.section-dark {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 14px;
  color: var(--black);
  position: relative;
  padding-left: 18px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 6px;
  height: 1.25em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.section-intro {
  max-width: 860px;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.card {
  background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(225,6,19,0.12), transparent 68%);
}

.card-angled::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--black));
}

.card h3 {
  font-size: 1.34rem;
  margin-bottom: 12px;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--muted);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.quote-box {
  border-radius: 28px;
  padding: 42px 34px;
  text-align: center;
  background: linear-gradient(135deg, rgba(225,6,19,0.98), rgba(125,0,8,0.98));
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 22px 48px rgba(0,0,0,0.25);
}

.quote-box .quote {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.quote-box p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
  font-size: 1.04rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 28px;
}

.value-card {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
}

.value-card h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--black);
}

.value-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.cta {
  background: linear-gradient(135deg, var(--black) 0%, #1b1b1b 55%, var(--red-dark) 100%);
  color: var(--white);
  border: 2px solid rgba(225,6,19,0.35);
  border-radius: 30px;
  padding: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.22);
}

.cta h3 {
  font-size: 1.78rem;
  margin-bottom: 8px;
}

.cta p {
  color: rgba(255,255,255,0.82);
  max-width: 700px;
}

footer {
  background: #050505;
  color: rgba(255,255,255,0.76);
  padding: 32px 0;
  font-size: 0.95rem;
  border-top: 2px solid var(--red);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid, .grid-2, .values { grid-template-columns: 1fr; }
  .menu-toggle { display: flex; }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 22px 20px;
    background: rgba(8,8,8,0.99);
    border-bottom: 2px solid var(--red);
  }

  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; }
  .hero { padding-top: 72px; }
  .topbar-inner { position: relative; }
  .cta { padding: 32px 24px; }
}