@font-face {
  font-family: "RodgerBlack";
  src: url("fonts/Font-Rodger-Black.ttf") format("truetype");
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  font-family: Manrope, Arial, Helvetica, sans-serif;
  background: #f2f1f0;
  color: #2e2e2e;
  -webkit-font-smoothing: antialiased;
}
img { display: block; }
a { text-decoration: none; color: inherit; }

.page-wrap {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  padding-top: 3px;
}
.header-logo {
  font-family: 'RodgerBlack', 'Impact', 'Arial Black', sans-serif;
  font-size: 59.77px;
  color: #e22a2f;
  line-height: normal;
  font-style: normal;
}
.header-line {
  margin-top: 16px;
  border: none;
  border-top: 1px solid #E22A2F;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  gap: 20px;
  padding: 40px 23px 0;
  overflow: hidden;
}

/* -- Hero Left -- */
.hero-left {
  width: 929px;
  height: 648px;
  flex-shrink: 0;
  background: #ffef98;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.hero-left-text {
  position: relative;
  z-index: 10;
  padding: 80px 64px 0 57px;
}
.hero-left-text h1 {
  font-family: 'RodgerBlack', 'Impact', 'Arial Black', sans-serif;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #2e2e2e;
  font-style: normal;
  font-weight: normal;
  max-width: 808px;
}
.hero-left-text .subtitle {
  font-weight: 500;
  font-size: 35px;
  line-height: 35px;
  margin-top: 40px;
  color: #2e2e2e;
}
.hero-blob-bg {
  position: absolute;
  top: -200px;
  left: -300px;
  width: 1636px;
  pointer-events: none;
  z-index: 0;
}
.hero-device-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 629px;
  height: 276px;
  overflow: hidden;
  z-index: 2;
}
.hero-device-wrap img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/* -- Hero Left: entry animations (desktop only) -- */
@media (min-width: 769px) {
  .hero-anim {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Yellow blob – background shape, scale in from center */
  .hero-anim-yellow2 {
    width: 644px;
    height: 516px;
    left: 227px;
    top: 252px;
    z-index: 1;
    animation: heroScaleIn 1.6s 0.2s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Blue arch – slides down from top */
  .hero-anim-blue1 {
    width: 476px;
    height: 216px;
    left: 6px;
    top: -100px;
    z-index: 2;
    animation: heroFromTop 1.4s 0.5s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Green blob – slides in from left */
  .hero-anim-green1 {
    width: 240px;
    height: 158px;
    left: 18px;
    top: 400px;
    z-index: 5;
    animation: heroFromLeft 1.4s 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Pink dot – pops in from top-right */
  .hero-anim-pink2 {
    width: 84px;
    height: 93px;
    right: 105px;
    top: 120px;
    z-index: 5;
    animation: heroPopIn 1.2s 1.3s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Blue-2 blob – slides in from right */
  .hero-anim-blue2 {
    width: 117px;
    height: 161px;
    right: 30px;
    top: 170px;
    z-index: 5;
    animation: heroFromRight 1.4s 1.1s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Background blob – fades in */
  .hero-blob-bg {
    opacity: 0;
    animation: heroScaleIn 1.6s 0s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Text – slides in from left */
  .hero-anim-text {
    opacity: 0;
    animation: heroFromLeft 1.2s 0.6s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Device – slides up from bottom */
  .hero-anim-device {
    opacity: 0;
    animation: heroFromBottom 1.4s 0.9s forwards cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes heroFromTop {
    from { opacity: 0; transform: translateY(-100px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroFromLeft {
    from { opacity: 0; transform: translateX(-120px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes heroFromRight {
    from { opacity: 0; transform: translateX(120px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes heroFromBottom {
    from { opacity: 0; transform: translateY(100px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroScaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes heroPopIn {
    from { opacity: 0; transform: scale(0) translateX(40px); }
    to   { opacity: 1; transform: scale(1) translateX(0); }
  }
}

/* Reposition animation blobs on mobile */
@media (max-width: 768px) {
  .hero-anim {
    position: absolute;
    pointer-events: none;
    opacity: 1;
    animation: none;
  }
  .hero-anim-yellow2 {
    width: 400px;
    height: 375px;
    left: -70px;
    top: 210px;
    z-index: 1;
  }
  .hero-anim-blue1 { display: none; }
  .hero-anim-green1 { display: none; }
  .hero-anim-pink2 {
    width: 60px;
    height: 66px;
    right: 15px;
    top: 144px;
    z-index: 3;
  }
  .hero-anim-blue2 {
    width: 90px;
    height: 124px;
    right: -40px;
    top: 175px;
    z-index: 3;
  }
}

/* -- Hero Right -- */
.hero-right {
  width: 449px;
  height: 648px;
  flex-shrink: 0;
  background: #7ed6a6;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.hero-right-text {
  padding: 80px 40px 0;
  position: relative;
  z-index: 2;
}
.hero-right-text p {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #2e2e2e;
  max-width: 345px;
}
.hero-characters {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 420px;
  z-index: 1;
}
.hero-characters img {
  position: absolute;
  object-fit: contain;
}
.char-charlie {
  width: 100%;
  top: -130px;
  right: -175px;
  transform: rotate(-30deg);
}
.char-porcellini {
  width: 100%;
  bottom: 30px;
  left: -130px;
  transform: rotate(18deg);
}
.char-dog {
  width: 100%;
  bottom: -60px;
  left: 60px;
  transform: rotate(2deg);
}

/* -- Hero Right: character entry animations (desktop only) -- */
@media (min-width: 769px) {
  .char-charlie {
    animation: charFromRight 1.4s 0.8s both cubic-bezier(0.22, 1, 0.36, 1);
  }
  .char-porcellini {
    animation: charFromLeft 1.4s 1.1s both cubic-bezier(0.22, 1, 0.36, 1);
  }
  .char-dog {
    animation: charFromBottom 1.4s 1.4s both cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes charFromRight {
    from { translate: 300px 0; }
    to   { translate: 0 0; }
  }
  @keyframes charFromLeft {
    from { translate: -300px 0; }
    to   { translate: 0 0; }
  }
  @keyframes charFromBottom {
    from { translate: 0 300px; }
    to   { translate: 0 0; }
  }
}

/* ===== PROMISE ===== */
.promise {
  padding: 80px 80px 60px;
  background-image: image-set(
    url('assets/background-center/bg.png') 1x,
    url('assets/background-center/bg@2x.png') 2x,
    url('assets/background-center/bg@3x.png') 3x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promise-title {
  text-align: center;
  font-weight: 800;
  font-size: 45px;
  line-height: normal;
  color: #2e2e2e;
  margin-bottom: 40px;
}
.promise-title .pink { color: #fd7dd9; }
.promise-cols {
  display: flex;
  gap: 40px;
}
.promise-col {
  flex: 1;
}
.promise-col .icon {
  height: 200px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.promise-col h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
  color: #000;
  margin-bottom: 22px;
}
.promise-col .desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: #2e2e2e;
}

/* ===== CTA ===== */
.cta-section {
  padding: 0 79px;
}
.cta-card {
  background: #9bcdff;
  background-image: image-set(
    url('assets/cta-section/bg.jpg') 1x,
    url('assets/cta-section/bg@2x.jpg') 2x,
    url('assets/cta-section/bg@3x.jpg') 3x
  );
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 70px 57px;
  position: relative;
  overflow: hidden;
  min-height: 379px;
}
.cta-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content a:hover {
  background-color: #FD8B8B;
}
.cta-card h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 1.15;
  color: #2e2e2e;
  max-width: 773px;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #de1f26;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 18.6px;
  padding: 15px 35px;
  border-radius: 43px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== LINK CARDS ===== */
.link-cards {
  display: flex;
  gap: 20px;
  padding: 20px 79px 0;
}
.link-card {
  flex: 1;
  background: #9bcdff;
  border-radius: 28px;
  height: 171px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.link-card:hover {
  background: #4AA5FF;
}
.link-card:hover h3 {
  color: white;
}
.link-card h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
  color: #2e2e2e;
  position: relative;
  z-index: 2;
}
.link-card .deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}
.link-salesmail .deco-1 {
  right: 20px;
  bottom: -35px;
  width: 300px;
}
.link-samenwerk .deco-1 {
  right: 20px;
  bottom: -10px;
  width: 250px;
}


/* ===== PHOTOS ===== */
.photos-section {
  position: relative;
  padding: 40px 0 0;
}
.photos-container {
  max-width: 1440px;
  margin: 0 auto;
}
.photos-group {
  width: 100%;
  height: auto;
}

/* ===== DISCOVER ===== */
.discover {
  text-align: center;
  padding: 40px 0 80px;
}
.discover h2 {
  font-weight: 800;
  font-size: 45px;
  line-height: normal;
  margin-bottom: 40px;
  color: #000;
}
.discover h2 .blue { color: #4aa5ff; }
.discover-pills {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.pill {
  position: relative;
  background: #fff;
  border-radius: 30px;
  width: 210px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000;
  margin-top: 9px;
}
.pill:hover {
  background: #F1595E;
  color: white;
}
.pill .flag {
  position: absolute;
  top: -9px;
  right: 30px;
  width: 61px;
  height: 20px;
  object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
  background: #f1595e;
  height: 268px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 79px;
}
.footer-logo {
  font-family: 'RodgerBlack', 'Impact', 'Arial Black', sans-serif;
  font-size: 59.77px;
  color: #fff;
  line-height: normal;
  font-style: normal;
}
.footer-bcorp {
  width: 78px;
  height: 126px;
}
.footer-bcorp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============== MOBILE ============== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 20px 19px 0;
    gap: 0;
  }
  .hero-left {
    width: 100%;
    height: 507px;
    border-radius: 30px;
  }
  .hero-left-text {
    padding: 48px 20px 0;
  }
  .hero-left-text h1 {
    font-size: 34px;
    line-height: 34px;
  }
  .hero-left-text .subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 21px;
  }
  .hero-blob-bg {
    width: 840px;
    top: -100px;
    left: -150px;
  }
  .hero-device-wrap {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    height: 193px;
  }
  .hero-device-wrap img {
    margin: auto;
    bottom: -20px;
  }
  .hero-right {
    width: 100%;
    height: 511px;
    border-radius: 22px;
    margin-top: 20px;
  }
  .hero-right-text {
    padding: 40px 32px 0;
  }
  .hero-right-text p {
    font-size: 24px;
    line-height: 28px;
    max-width: 272px;
  }
  .hero-characters { height: 380px; }
  .char-charlie {
    width: 90%;
    top: auto;
    bottom: 80px;
    right: -125px;
    transform: rotate(-30deg);
  }
  .char-porcellini {
    width: 90%;
    bottom: 20px;
    left: -100px;
    transform: rotate(18deg);
  }
  .char-dog {
    width: 90%;
    top: auto;
    bottom: -50px;
    left: 50px;
    right: 0;
    transform: rotate(2deg);
  }

  /* Promise */
  .promise {
    padding: 40px 20px;
  }
  .promise-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .promise-cols {
    flex-direction: column;
    gap: 24px;
  }
  .promise-col {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .promise-col .icon {
    width: 104px;
    height: 108px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .promise-col h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .promise-col .desc {
    font-size: 15px;
    line-height: 17px;
  }

  /* CTA */
  .cta-section {
    padding: 20px 20px 0;
    height: 270px;
  }
  .cta-card {
    border-radius: 18px;
    padding: 40px 20px;
    height: 270px;
    min-height: 0px;
    background-image: image-set(
      url('assets/cta-section/bg-mobile.png') 1x,
      url('assets/cta-section/bg-mobile@2x.png') 2x,
      url('assets/cta-section/bg-mobile@3x.png') 3x
    );
  }
  .cta-card h2 { font-size: 28px; }

  /* Link cards */
  .link-cards {
    padding: 16px 20px 0;
    gap: 16px;
    display: block;
  }
  .link-card {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-items: center;
    border-radius: 16px;
    height: 96px;
    padding: 0 24px;
    margin-top: 22px;
  }
  .link-card h3 { font-size: 20px; line-height: 24px; }
  .link-salesmail .deco-1 { width: 150px; right: 15px; bottom: auto }
  .link-samenwerk .deco-1 { width: 130px; right: 15px; bottom: 0px }

  /* Photos */
  .photos-section { padding: 20px 0 0; }

  /* Discover */
  .discover { padding: 30px 0 60px; }
  .discover h2 { font-size: 30px; margin-bottom: 28px; }
  .discover-pills {
    flex-direction: column;
    gap: 27px;
    align-items: center;
  }
  .pill {
    width: 141px;
    height: 55px;
    font-size: 20px;
    line-height: 24px;
    border-radius: 20px;
    margin-top: 6px;
  }
  .pill .flag {
    width: 41px;
    height: 13px;
    left: calc(50% + 18px);
    top: -6px;
  }

  /* Footer */
  .footer {
    height: 163px;
    padding: 0 20px;
  }
  .footer-bcorp { width: 50px; height: 81px; }
}
