* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

.page-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  background: #fcf9f4;
  /* same as body */
}

.banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.banner__image {
  width: 100%;
  height: 87%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 15px 275px;
}


@media (max-width: 768px) {
  .section {
    padding: 25px 20px;
  }
}

.img-cont {
  margin-left: 70px;
}

.section__heading {
  font-size: 44px;
  margin-bottom: 20px;
}

.section__content {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
}

.section__content__p p {
  font-size: 18px;
}

.section--intro .section__content {
  margin-top: 40px;
}

.intro__logo {
  width: 550px;
  max-width: 100%;
  display: block;
  margin: 0 auto 40px;
}

.section--overview .section__heading {
  margin-top: 25px;
}

.section--overview .section__content {
  margin-top: 10px;
}

.overview__logo-image {
  width: 400px;
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

.design__intro {
  margin-top: 20px;
}

.design__element {
  margin-top: 30px;
}

.design__image {
  width: 500px;
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

.design__conclusion {
  margin-top: 15px;
}

.logo-ani {
  margin-bottom: 30px;
  margin-top: 40px;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  max-width: 900px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-container__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

.video-container__play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 64px;
  color: #fff;
}

.video-container.is-playing .video-container__play-button {
  display: none;
}

.animation__description {
  margin-top: 40px;
  max-width: 900px;
  margin-bottom: 0;
}

.section--animation {
  padding-bottom: 60px;
}

.animation__description p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.video-container.paused video {
  opacity: 0;
}

.video-container.paused .play-overlay {
  opacity: 1;
}

.video-container.playing video {
  opacity: 1;
}

.footbanner {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footbanner img {
  display: block;
  width: 100%;
  height: 19px;
  margin: 0;
  padding: 0;
}

/* FOOTER */

footer {
  margin-top: 0 !important;
}



@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* TABLET VIEW (max-width: 1024px) */

@media (max-width: 1024px) {

  /* Banner - fill full width, keep proportional height */
  .banner {
    height: auto;
    width: 100%;
  }

  .banner__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left center;
    display: block;
  }

  /* Section - reduce padding from 275px */
  .section {
    padding: 22px 60px;
  }

  /* Headings */
  .section__heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  /* Content text */
  .section__content {
    font-size: 16px;
    max-width: 100%;
  }

  .section__content__p p {
    font-size: 16px;
  }

  /* Intro logo */
  .intro__logo {
    width: 420px;
    margin: 10px auto 32px;
  }

  .section--intro .section__content {
    margin-top: 30px;
  }

  /* Overview logo */
  .overview__logo-image {
    width: 330px;
    margin: 22px auto;
  }

  /* Design images */
  .img-cont {
    margin-left: 30px;
  }

  .design__image {
    width: 380px;
    margin: 22px auto;
  }

  .design__intro {
    margin-top: 16px;
  }

  .design__element {
    margin-top: 22px;
  }

  .logo-ani {
    margin-bottom: 22px;
  }

  /* Video container */
  .video-container {
    max-width: 580px;
  }

  .video-container__play-button {
    font-size: 52px;
  }

  .animation__description {
    margin-top: 30px;
  }

  .animation__description p {
    font-size: 16px;
  }

  .section--animation {
    padding-bottom: 60px;
  }

  /* Footer banner */
  .footbanner img {
    height: 16px;
  }
}

/* MOBILE VIEW (max-width: 480px) */

@media (max-width: 480px) {

  .banner {
    height: auto;
  }

  .banner__image {
    height: auto;
    width: 100%;
    object-fit: contain;

  }


  /* Section - minimal padding */
  .section {
    padding: 10px 20px;

  }

  /* Headings */
  .section__heading {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  /* Content text */
  .section__content {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .section__content__p p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Intro section */
  .intro__logo {
    width: 100%;
    max-width: 300px;
    /* Reduced from 550px */
    margin: 10px auto 30px;
  }

  .section--intro .section__content {
    margin-top: 25px;
  }

  /* Overview section */
  .section--overview .section__heading {
    margin-top: 0;
  }

  .section--overview .section__content {
    margin-top: 15px;
  }

  .overview__logo-image {
    width: 100%;
    max-width: 280px;
    /* Reduced from 400px */
    margin: 25px auto 10px;
  }

  /* Design section */
  .design__intro {
    margin-top: 15px;
  }

  .design__element {
    margin-top: 20px;
  }

  /* Remove left margin on mobile - center images */
  .img-cont {
    margin-left: 0;
    /* Remove 70px offset */
    text-align: center;
  }

  .design__image {
    width: 100%;
    max-width: 320px;
    /* Reduced from 500px */
    margin: 20px auto;
  }

  .design__conclusion {
    margin-top: 15px;
  }

  /* Logo animation section */
  .logo-ani {
    margin-bottom: 20px;
  }

  /* Video wrapper */
  .video-wrapper {
    width: 100%;
  }

  .video-container {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .video-container__video {
    width: 100%;
    height: 100%;
  }

  /* Hide play button on mobile */
  .video-container__play-button {
    display: none !important;
  }

  /* Animation description */
  .animation__description {
    margin-top: 30px;
    max-width: 100%;
  }

  .animation__description p {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  /* Footer banner */
  .footbanner {
    margin-bottom: -3px;
  }

  .footbanner img {
    height: -15px;
    /* Reduced from 25px */
  }

}


/*  SMALL MOBILE (max-width: 380px) */

@media (max-width: 380px) {

  /* Extra small screens - further reductions */
  .banner {
    height: 180px;
  }

  .section__heading {
    font-size: 24px;
  }

  .section__content {
    font-size: 15px;
  }

  .section__content__p p {
    font-size: 15px;
  }

  .intro__logo {
    max-width: 260px;
  }

  .overview__logo-image {
    max-width: 240px;
  }

  .design__image {
    max-width: 280px;
  }

  .animation__description p {
    font-size: 14px;
  }

  .footbanner img {
    height: 12px;
  }
}