* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #172033;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8e8;
}

.nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 145px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: #172033;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.2s;
}

.menu a:hover {
  color: #a32020;
}

.menu-toggle {
  display: none;
  border: none;
  background: #a32020;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(12, 20, 34, 0.45), rgba(12, 20, 34, 0.65)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: white;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s;
}

.btn-primary {
  background: #a32020;
  color: white;
}

.btn-primary:hover {
  background: #7d1b1b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #172033;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #101827;
  color: white;
}

.btn-dark:hover {
  background: #a32020;
}

.section {
  padding: 95px 0;
}

.bg-light {
  background: #f7f8f5;
}

.center-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  color: #a32020;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.section-text {
  max-width: 760px;
  margin-bottom: 42px;
  color: #586174;
}

.center-text p {
  color: #586174;
  margin-bottom: 14px;
}

.info-row {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-box {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);

  border-radius: 34px;
  padding: 38px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  transition: 0.35s ease;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #7d1b1b, #a32020, #315f35);
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}

.info-box h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #172033;
}

.info-box p {
  color: #586174;
  font-size: 17px;
  line-height: 1.9;
}

.info-box p:first-of-type {
  color: #172033;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .info-row {
    grid-template-columns: 1fr;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-content {
  padding: 26px;
}

.card-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card-content p {
  color: #586174;
  font-size: 15px;
}

.features-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.features {
  background: linear-gradient(135deg, #7d1b1b, #a32020);
  color: white;
  padding: 46px;
  border-radius: 30px;
}

.features .section-title {
  color: #a4df9a;
}

.features h2 {
  color: white;
}

.features ul {
  list-style: none;
  margin-top: 28px;
}

.features li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a4df9a;
  font-weight: 800;
}

.contact-form-box {
  background: white;
  padding: 46px;
  border-radius: 30px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.contact-form-box > p {
  color: #586174;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d8dbe2;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #a32020;
}

.full-width {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  color: #586174;
  font-size: 14px;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-message {
  margin-top: 16px;
  font-weight: 700;
}

.map-box {
  margin-top: 34px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.1);
}

.map-box iframe {
  display: block;
}

.footer {
  background: linear-gradient(135deg, #7d1b1b, #a32020 55%, #315f35);
  color: white;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 135px;
  background: white;
  padding: 12px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 18px;
}

.footer h3 {
  font-size: 28px;
}

.footer p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.footer-sports {
  display: block;
  margin-top: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  padding: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-contact,
  .info-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    height: 82px;
  }

  .logo img {
    width: 120px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e6e6e6;
    display: none;
  }

  nav.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
  }

  .hero {
    min-height: 640px;
  }

  .section {
    padding: 70px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .contact-form-box {
    padding: 30px;
  }

  .footer {
    padding-top: 60px;
  }
}
