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

.section-shell {
  padding: 100px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  color: var(--color-yellow);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--color-yellow);
  opacity: 0.7;
}

.section-head h2,
.section-title {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-white);
}

.section-head h2 em,
.section-title em {
  color: var(--color-yellow);
  font-style: normal;
}

.section-head p,
.section-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0 10px 30px rgba(255, 240, 71, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(255, 240, 71, 0.32);
}

.btn-secondary,
.btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    linear-gradient(150deg, rgba(17, 29, 48, 0.94) 0%, rgba(27, 44, 74, 0.82) 52%, rgba(17, 29, 48, 0.96) 100%),
    url("../images/hero.svg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 200%;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110'%3E%3Cpath fill='%23111d30' d='M0,60 C260,115 515,10 790,58 C1070,106 1230,24 1440,62 L1440,110 L0,110 Z'/%3E%3C/svg%3E") repeat-x center/1440px 110px;
  animation: waveSlide 9s linear infinite;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-hero h1 em {
  color: var(--color-yellow);
  font-style: normal;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}


.site-footer {
  padding: clamp(80px, 8vw, 125px) 0 36px;
  background: #0d1728;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--color-yellow);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: var(--color-gray);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

@media (max-width: 1060px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
