/* SPORTSWAPP - website in lijn met voorbeeld */
:root {
  --green: rgb(127,192,70);
  --purple: rgb(53,43,90);
  --soft: #f5fbef;
  --white: #ffffff;
  --text: rgb(53,43,90);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f4faed 52%, #fff 100%);
}

a { color: inherit; }

.site-nav {
  height: 110px;
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: relative;
  z-index: 10;
}

.nav-logo img {
  display: block;
  width: 225px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 800;
  font-size: 0.96rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-button {
  background: var(--green);
  color: white !important;
  border-radius: 999px;
  padding: 16px 24px;
  box-shadow: 0 10px 24px rgba(127,192,70,.30);
}

.hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 35%, rgba(255,255,255,.10) 62%),
    url('https://images.unsplash.com/photo-1526232761682-d26e03ac148e?q=80&w=2100&auto=format&fit=crop') center right/cover no-repeat;
}

.hero-inner {
  padding: 74px 5vw 160px;
}

.hero-text {
  width: min(620px, 100%);
}

.hero-text h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(3.2rem, 6.8vw, 6.9rem);
  line-height: .88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-text h2 {
  margin: 16px 0 26px;
  color: var(--green);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: .95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-text p {
  max-width: 475px;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 28px;
  text-decoration: none;
  font-weight: 900;
}

.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 28px rgba(127,192,70,.28);
}

.btn-light {
  background: white;
  color: var(--purple);
  box-shadow: 0 14px 30px rgba(53,43,90,.12);
}

.feature-strip {
  position: absolute;
  left: 5.5vw;
  right: 5.5vw;
  bottom: -64px;
  min-height: 160px;
  background: var(--purple);
  color: white;
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px;
  padding: 24px 38px;
  box-shadow: 0 24px 60px rgba(53,43,90,.24);
}

.feature {
  text-align: center;
}

.feature-icon {
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 12px;
}

.feature strong {
  display: block;
  font-weight: 900;
  font-size: 1.05rem;
}

.feature span {
  display: block;
  opacity: .95;
  font-weight: 600;
}

.section {
  padding: 136px 5.5vw 76px;
}

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

.info-card {
  position: relative;
}

.info-card .image {
  height: 230px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(53,43,90,.10);
}

.round-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  margin: -40px 0 12px 18px;
  position: relative;
  box-shadow: 0 10px 24px rgba(127,192,70,.35);
  border: 6px solid #f7fbf1;
}

.info-card h3 {
  margin: 0 0 14px;
  padding-left: 18px;
  text-transform: uppercase;
  color: var(--purple);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.info-card p {
  padding: 0 18px;
  margin: 0;
  font-weight: 600;
  line-height: 1.65;
}

.pilot-section {
  display: grid;
  grid-template-columns: .95fr 1fr .95fr;
  gap: 34px;
  padding: 70px 5.5vw 82px;
  background: white;
  align-items: center;
}

.pilot-copy h2,
.app-card h2 {
  margin: 0;
  color: var(--purple);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .92;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.pilot-copy h4 {
  margin: 20px 0 34px;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.pilot-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
  font-weight: 700;
}

.pilot-copy li {
  position: relative;
  padding-left: 46px;
}

.pilot-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.signup-form {
  background: white;
  border: 1px solid rgba(53,43,90,.12);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(53,43,90,.14);
  padding: 28px;
  display: grid;
  gap: 12px;
}

.signup-form h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  border: 1.5px solid rgba(53,43,90,.15);
  border-radius: 7px;
  padding: 13px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--purple);
}

.signup-form textarea {
  min-height: 90px;
  resize: vertical;
}

.signup-form button {
  border: 0;
  border-radius: 7px;
  padding: 15px;
  background: var(--green);
  color: white;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.signup-form p {
  margin: 0;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  opacity: .75;
}

.app-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--purple);
  color: white;
  padding: 34px;
}

.app-card h2 {
  color: white;
}

.app-card h2 span {
  color: var(--green);
}

.app-card p {
  font-size: 1.2rem;
  font-weight: 800;
  max-width: 240px;
}

.app-card .soon {
  margin-top: 30px;
}

.store-buttons {
  display: grid;
  gap: 14px;
  width: 170px;
}

.store-buttons a {
  display: block;
  background: #050505;
  color: white;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.phone-mockup {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 150px;
  height: 302px;
  border-radius: 28px;
  border: 8px solid #151515;
  background: #f4faed;
  color: var(--purple);
  padding: 28px 14px 14px;
  display: grid;
  gap: 12px;
  align-content: start;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

.phone-mockup img {
  width: 100%;
}

.phone-mockup strong {
  font-size: .76rem;
  line-height: 1.2;
}

.phone-mockup button {
  border: 0;
  border-radius: 5px;
  background: var(--purple);
  color: white;
  padding: 8px;
  font-weight: 800;
  font-size: .7rem;
}

.phone-mockup button.green {
  background: var(--green);
}

footer {
  min-height: 96px;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 24px 5vw;
}

footer img {
  width: 150px;
  background: transparent;
}

footer p {
  font-weight: 700;
  max-width: 240px;
}

footer nav {
  margin-left: auto;
  display: flex;
  gap: 34px;
  font-weight: 800;
}

footer a {
  text-decoration: none;
}

@media (max-width: 1050px) {
  .site-nav {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .feature-strip,
  .info-grid,
  .pilot-section {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -82px 5vw 0;
  }

  .section {
    padding-top: 76px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 140px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer nav {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .nav-logo img { width: 180px; }
  .hero-inner { padding: 46px 6vw 112px; }
  .feature-strip { padding: 24px; }
  .phone-mockup { position: relative; right: auto; bottom: auto; margin-top: 22px; }
}


.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: white;
}

.footer-contact p {
  margin: 4px 0;
  max-width: none;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}
