* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c74634;
  --dark: #161513;
  --dark-2: #24211f;
  --text: #272321;
  --muted: #625d58;
  --light: #f5f3f1;
  --white: #fff;
  --border: #dedad6;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.logo {
  color: var(--red);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.navbar nav a,
.contact-link {
  font-size: 14px;
  font-weight: 600;
}

.navbar nav a:hover,
.contact-link:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.contact-link {
  color: var(--red);
}

/* Hero */
.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(199, 70, 52, .18), transparent 32%),
    linear-gradient(135deg, #faf8f6, #eee9e5);
}

.hero-content {
  max-width: 900px;
  padding-block: 100px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 13px 23px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: #a93829;
}

.button-outline {
  border-color: var(--dark);
}

.button-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--dark);
}

.button-light:hover {
  opacity: .85;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading h2,
.split h2,
.cta-section h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-heading p:last-child,
.split p {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading p:last-child {
  color: #c9c5c1;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.card-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.card h3 {
  margin: 55px 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.card-dark {
  background: var(--dark-2);
  border-color: #4a4642;
}

.card-dark p {
  color: #c9c5c1;
}

.card-dark h3 {
  color: var(--white);
}

/* Industries */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split .button {
  margin-top: 30px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}

.industry-list span {
  padding: 20px 10px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

/* CTA */
.cta-section {
  padding: 90px 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.cta-section .container {
  max-width: 850px;
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 25px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-top p {
  max-width: 360px;
  color: #aaa5a0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-content: flex-start;
}

.footer-links a:hover {
  color: #f27a69;
}

.footer-bottom {
  border-top: 1px solid #45413e;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aaa5a0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    gap: 20px;
  }

  .navbar nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    min-height: 550px;
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .section {
    padding: 70px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
}
