/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  color: #171b18;

  background: #fffdf8;

  line-height: 1.6;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-weight: 800;

  line-height: 1.08;
}

p {
  color: #59635d;
}

.eyebrow {
  margin-bottom: 16px;

  color: #16844b;

  font-size: 17px;
  font-weight: 800;

  letter-spacing: 1.4px;
  line-height: 1.25;
}



/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  background: #ffffff;

  border-bottom: 1px solid #ecece8;
}

.nav-container {
  width: min(1200px, 92%);

  min-height: 92px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.logo {
  display: block;

  text-decoration: none;
}

.logo img {
  width: 170px;

  height: auto;
}

.nav-menu {
  display: flex;

  align-items: center;

  gap: 32px;
}

.nav-menu a {
  position: relative;

  padding: 34px 0 30px;

  color: #272d29;

  text-decoration: none;

  font-size: 15px;

  font-weight: 650;
}

.nav-menu a:hover {
  color: #16844b;
}

.nav-menu a.active {
  color: #16844b;
}

.nav-menu a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 20px;

  height: 2px;

  background: #16844b;
}



/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;

  padding: 14px 24px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 750;

  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: white;

  background: #16844b;
}

.primary:hover {
  background: #106c3c;
}

.secondary {
  color: #171b18;

  background: white;

  border: 1px solid #bfc7c1;
}



/* =========================================================
   HOME HERO
   ========================================================= */

.home-hero {
  background: #fffaf0;
}

.home-hero-inner {
  width: min(1200px, 92%);

  min-height: calc(100vh - 92px);

  margin: 0 auto;

  padding: 75px 0;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 75px;
}

.home-copy h1 {
  max-width: 760px;

  font-size: clamp(50px, 6vw, 82px);

  letter-spacing: -4px;
}

.home-copy h1 span {
  display: block;

  color: #3cac38;
}

.hero-description {
  max-width: 680px;

  margin-top: 24px;

  font-size: 20px;
}

.hero-buttons {
  display: flex;

  gap: 14px;

  margin-top: 35px;
}

.hero-points {
  margin-top: 55px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.hero-points div {
  padding-top: 14px;

  display: flex;

  flex-direction: column;

  border-top: 2px solid #edd796;
}

.hero-points strong {
  font-size: 16px;
}

.hero-points span {
  margin-top: 3px;

  color: #6b756e;

  font-size: 13px;
}

.home-hero-image {
  width: 100%;

  overflow: hidden;

  aspect-ratio: 4 / 5;

  border-radius: 28px;

  border: 2px solid #ecd48f;

  box-shadow: 0 22px 55px rgba(20, 35, 25, 0.12);
}

.home-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}



/* =========================================================
   GENERIC CONTENT
   ========================================================= */

.content-section {
  width: min(1150px, 90%);

  margin: 0 auto;

  padding: 120px 0;
}

.two-column {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;
}

.two-column h2,
.home-cta h2,
.page-intro h1,
.software-description h2,
.reward-page-section h2,
.founder-page h1,
.contact-page h1 {
  font-size: clamp(38px, 5vw, 58px);

  letter-spacing: -2px;
}

.body-copy p {
  margin-bottom: 20px;

  font-size: 18px;
}



/* =========================================================
   HOME BENEFITS
   ========================================================= */

.benefit-grid {
  margin-top: 65px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.feature-card {
  padding: 30px;

  background: #f8efd5;

  border: 2px solid #edd797;

  border-radius: 22px;
}

.feature-number {
  display: block;

  margin-bottom: 35px;

  color: #16844b;

  font-size: 13px;

  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;

  font-size: 23px;
}



/* =========================================================
   HOME CTA
   ========================================================= */

.home-cta {
  width: min(1100px, 90%);

  margin: 0 auto 110px;

  padding: 55px;

  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 50px;

  background: #f8efd5;

  border: 2px solid #ecd58e;

  border-radius: 28px;
}

.home-cta h2 {
  max-width: 780px;
}



/* =========================================================
   PAGE INTRO
   ========================================================= */

.page-intro {
  width: min(900px, 90%);

  margin: 0 auto;

  padding: 100px 0 70px;

  text-align: center;
}

.page-intro p:last-child {
  max-width: 700px;

  margin: 25px auto 0;

  font-size: 19px;
}



/* =========================================================
   HOW IT WORKS
   ========================================================= */

.steps-section {
  width: min(1100px, 90%);

  margin: 0 auto;

  padding-bottom: 120px;
}

.steps-large {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

.process-card {
  overflow: hidden;

  background: #f8efd5;

  border: 2px solid #edd797;

  border-radius: 24px;
}

.process-image {
  width: 100%;

  height: 320px;

  overflow: hidden;

  background: white;
}

.process-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.process-copy {
  position: relative;

  min-height: 250px;

  padding: 80px 32px 34px;
}

.step-badge {
  position: absolute;

  top: 25px;
  left: 32px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f2a900;

  border-radius: 5px;

  color: #111;

  font-size: 20px;
  font-weight: 800;
}

.process-copy h2 {
  margin-bottom: 15px;

  font-size: 28px;
}

.process-copy p {
  font-size: 17px;
}



/* =========================================================
   SOFTWARE PAGE
   ========================================================= */

.software-page-section {
  padding: 120px 0;

  background: #f5f4ef;
}

.software-page-grid {
  width: min(1100px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 75px;
}

.software-description > p:not(.eyebrow) {
  margin-top: 20px;

  font-size: 18px;
}

.factor-list {
  margin-top: 35px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.factor-list div {
  padding: 17px;

  display: flex;

  flex-direction: column;

  background: white;

  border: 1px solid #e0e4e0;

  border-radius: 12px;
}

.factor-list strong {
  font-size: 15px;
}

.factor-list span {
  margin-top: 4px;

  color: #69736d;

  font-size: 13px;
}

.screenshot-card {
  padding: 22px;

  background: white;

  border-radius: 23px;

  box-shadow: 0 18px 45px rgba(25, 35, 28, 0.08);
}

.screenshot-card img {
  width: 100%;
}



/* =========================================================
   REWARD
   ========================================================= */

.reward-page-section {
  width: min(1050px, 90%);

  margin: 0 auto;

  padding: 120px 0;
}

.reward-page-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  align-items: center;

  gap: 80px;

  padding: 55px;

  background: #f8efd5;

  border: 2px solid #ecd58e;

  border-radius: 28px;
}

.reward-page-grid p {
  margin-top: 18px;

  font-size: 18px;
}

.payout-image {
  display: flex;

  justify-content: center;
}

.payout-image img {
  max-width: 320px;

  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(30, 25, 15, 0.12);
}



/* =========================================================
   FOUNDER
   ========================================================= */

.founder-page {
  width: min(1100px, 90%);

  min-height: calc(100vh - 180px);

  margin: 0 auto;

  padding: 100px 0;

  display: flex;

  align-items: center;
}

.founder-page-grid {
  width: 100%;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 90px;
}


/*
IMPORTANT:
Geen border-radius:50%.
Geen object-fit: cover.
Daardoor wordt Founder.png niet meer kapot afgesneden.
*/

.founder-image-container {
  width: 100%;
  max-width: 460px;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.founder-image-container img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center top;
}

.founder-page-copy p {
  max-width: 700px;

  margin-bottom: 20px;

  font-size: 18px;
}

.founder-intro {
  margin-top: 25px;

  color: #172019;

  font-size: 21px !important;

  font-weight: 650;
}

.founder-page-copy .button {
  margin-top: 15px;
}



/* =========================================================
   CONTACT
   ========================================================= */

.contact-page {
  width: min(1050px, 90%);

  min-height: calc(100vh - 180px);

  margin: 0 auto;

  padding: 110px 0;

  display: flex;

  align-items: center;
}

.contact-page-card {
  width: 100%;

  padding: 65px;

  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  align-items: center;

  gap: 80px;

  background: #f8efd5;

  border: 2px solid #ecd58e;

  border-radius: 30px;
}

.contact-page-card p {
  max-width: 650px;

  margin-top: 20px;

  font-size: 18px;
}

.partner-tags {
  margin-top: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.partner-tags span {
  padding: 9px 15px;

  background: white;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 650;
}

.contact-details {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.contact-details > span {
  color: #6b756e;

  font-size: 13px;
}

.contact-details > a:not(.button) {
  margin-bottom: 20px;

  color: #16844b;

  font-size: 20px;

  font-weight: 750;

  text-decoration: none;
}



/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 42px 0;

  background: #172119;
}

.footer-inner {
  width: min(1200px, 90%);

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  color: #a9b2ab;
}

.footer-inner strong {
  color: white;

  font-size: 20px;
}

.footer-inner span {
  font-size: 13px;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .home-hero-inner {
    grid-template-columns: 1fr 0.9fr;

    gap: 45px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

.eyebrow {
  font-size: 15px;
}

  .nav-container {
    min-height: auto;

    padding: 18px 0;

    align-items: flex-start;
  }

  .logo img {
    width: 125px;
  }

  .nav-menu {
    gap: 11px;

    flex-wrap: wrap;

    justify-content: flex-end;
  }

  .nav-menu a {
    padding: 5px 0;

    font-size: 12px;
  }

  .nav-menu a.active::after {
    bottom: 0;
  }



  .home-hero-inner {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-top: 45px;
  }

  .home-copy h1 {
    font-size: 49px;

    letter-spacing: -2.5px;
  }

  .hero-description {
    font-size: 18px;
  }

  .home-hero-image {
    order: -1;

    aspect-ratio: 16 / 11;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }



  .two-column,
  .home-cta,
  .steps-large,
  .software-page-grid,
  .reward-page-grid,
  .founder-page-grid,
  .contact-page-card {
    grid-template-columns: 1fr;
  }



  .two-column,
  .software-page-grid,
  .reward-page-grid,
  .founder-page-grid,
  .contact-page-card {
    gap: 40px;
  }



  .home-cta {
    padding: 35px 28px;
  }



  .process-image {
    height: 260px;
  }



  .factor-list {
    grid-template-columns: 1fr;
  }



  .reward-page-grid {
    padding: 35px 28px;
  }



  .founder-page {
    padding-top: 55px;
  }

  .founder-image-container img {
    max-width: 360px;
  }



  .contact-page-card {
    padding: 38px 28px;
  }



  .footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .contact-label {
  margin-top: 10px;
}

}