:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #142033;
  --muted: #4b5a70;
  --primary: #1f6f4a;
  --primary-dark: #195d3e;
  --stroke: #dbe1ea;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(20, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h2 {
  border-left: 4px solid var(--primary);
  padding-left: 0.65rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--primary);
}

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

.narrow {
  width: min(780px, 92%);
}

.section {
  padding: 4.8rem 0;
}

.section--compact {
  padding: 2.4rem 0;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 16, 28, 0.75) 0%, rgba(10, 16, 28, 0.5) 45%, rgba(10, 16, 28, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 760px;
}

.hero__content p {
  color: #e5eaf4;
}

.hero h1 {
  font-size: clamp(2rem, 5.4vw, 4.1rem);
}

.hero__subtitle {
  max-width: 680px;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
}

.secondary-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(300px, 48vw, 460px);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.secondary-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 16, 28, 0.72) 0%, rgba(10, 16, 28, 0.45) 52%, rgba(10, 16, 28, 0.12) 100%);
}

.secondary-hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 700px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.secondary-hero__content h2 {
  border-left: 0;
  padding-left: 0;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 3.1vw, 2.3rem);
}

.secondary-hero__content p {
  color: #e5eaf4;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.88rem 1.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.section--intro p {
  font-size: 1.08rem;
}

.split-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-grid--reverse .content-card {
  order: 1;
}

.split-grid--reverse .media-card {
  order: 2;
}

.media-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.content-card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.section--soft {
  background: #eef2f7;
}

.feature-list,
.sport-list {
  margin: 0;
  padding-left: 1.2rem;
}

.callout-box {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.callout-box p {
  margin-bottom: 1.1rem;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  text-align: center;
}

.trust-list li {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.trust-list li::before {
  content: "\2714 ";
  color: var(--primary);
}

.trust-title {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.9rem;
}

.faq-item p {
  margin: 0.8rem 0 0.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-item summary::marker {
  color: var(--primary);
}

.cta {
  text-align: center;
  background: linear-gradient(130deg, #1f314f 0%, #2e4b79 100%);
}

.cta h2,
.cta p {
  color: #ffffff;
}

.btn--light {
  background: #ffffff;
  color: #142033;
}

.btn--light:hover,
.btn--light:focus-visible {
  background: #f2f5fb;
}

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

  .split-grid--reverse .content-card,
  .split-grid--reverse .media-card {
    order: initial;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.6rem 0;
  }

  .section--compact {
    padding: 2rem 0;
  }

  .hero {
    min-height: 76.0vh;
    align-items: end;
  }

  .hero__content {
    padding-bottom: 2.2rem;
  }

  .secondary-hero {
    min-height: 360px;
  }

  .content-card {
    padding: 1.2rem;
  }
}
