:root {
  --accent: #ff3b24;
  --bg-dark: #080808;
  --text-light: #f4f4f4;
  --muted: #bdbdbd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  color: #101010;
  background: #efefef;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 59, 36, 0.3), transparent 45%),
    linear-gradient(120deg, #1d1d1d, #050505 55%, #151515);
  color: var(--text-light);
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-tags {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
}

.section {
  padding: 56px 0;
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.section-light {
  background: #efefef;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-accent {
  background: var(--accent);
  color: #fff;
}

.grid-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: 2px;
}

.card h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.card p {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
}

.card-dark {
  background:
    linear-gradient(180deg, rgba(255, 59, 36, 0.55), rgba(255, 59, 36, 0) 45%),
    #111;
  color: #fff;
}

.card-accent {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
    linear-gradient(135deg, #ff3b24, #bc1d10 70%);
  color: #fff;
}

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

.stat-card {
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 59, 36, 0.3), transparent 50%),
    #121212;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-label {
  margin: 0 0 8px;
  color: #ececec;
  font-size: 18px;
}

.stat-value {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 1;
  font-weight: 900;
}

.stat-card p:last-child {
  margin: 0;
  font-size: 24px;
  color: var(--muted);
}

.services {
  display: grid;
  gap: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 2fr;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 59, 36, 0.42), transparent 30%),
    #070707;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1;
  font-weight: 900;
}

.service-row p {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 33px);
  line-height: 1.3;
  color: #ddd;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 240px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 59, 36, 0.48), rgba(0, 0, 0, 0.82)),
    #111;
  color: #fff;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card a {
  width: fit-content;
  margin-top: 20px;
  padding: 8px 18px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.why-us .reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-us .reasons span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(19px, 2vw, 32px);
  font-weight: 700;
}

.lead-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
}

.lead-block h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 900;
}

.lead-block p {
  margin: 0;
  font-size: 27px;
  line-height: 1.4;
}

.lead-form {
  display: grid;
  gap: 12px;
  align-content: start;
}

.lead-form input,
.lead-form select,
.lead-form button {
  border: 0;
  font-size: 20px;
  padding: 16px 14px;
}

.lead-form input,
.lead-form select {
  background: #ddd;
  color: #111;
}

.lead-form button {
  background: #000;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

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

.team article {
  padding: 16px 14px;
  background: #d7d7d7;
  min-height: 160px;
}

.team h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.team p {
  margin: 0;
  font-size: 18px;
}

.clients p {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.45;
}

.footer {
  background: linear-gradient(90deg, #060606 50%, var(--accent) 50%);
  color: #fff;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.footer h2 {
  margin: 0 0 10px;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 1;
  font-weight: 900;
}

.footer p {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.3;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.footer-nav a {
  color: #101010;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .grid-intro,
  .stats,
  .lead-block,
  .projects,
  .team,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .footer {
    background: var(--accent);
  }

  .footer h2,
  .footer p {
    color: #000;
  }
}
