/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* PAGE HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(247, 245, 245, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* LOGO IMAGE */
.logo-img img {
  width: 222px;
  height: 40px;
}

/* CENTER NAV */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 407px;
  height: 28px;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
}

.main-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ff7a00;
}

/* REGISTER BUTTON */
.nav-right {
  display: flex;
  align-items: center;
  width: 152px;
  height: 38px;
}

.btn-register {
  font-family: "Scale VF", sans-serif;
  font-weight: 650;
  font-style: normal;
  font-size: 13px;
  background-color: #000;
  border-radius: 29px;
  color: #ffffff;
  line-height: 30px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-register:hover {
  background-color: #333;
}

.right-arrow {
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn-register:hover .right-arrow {
  transform: translateX(2px);
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 140px 20px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "scale-variable", sans-serif;
  font-size: 64px;
  line-height: 70px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #000;
}

.hero .line {
  color: #000;
  position: relative;
  display: inline-block;
}

.hero .line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ffac48;
  bottom: -2px;
  border-radius: 2px;
}

.hero p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 32px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.hero p .bold {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 29px;
  text-decoration: none;
  font-family: "scale-variable", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn {
  background-color: #ffac48;
  color: #fff;
  font-size: 18px;
  gap: 12px;
}

.hero-btn:hover {
  background-color: #e89836;
  transform: translateY(-2px);
}

.hero-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.hero-btn:hover .hero-arrow {
  transform: translateX(4px);
}

/* MEMORIES IMAGE */
.memories-image {
  text-align: center;
  padding: 40px 20px;
}

.memories-image img {
  max-width: 100%;
  height: auto;
}

/* DECADES SECTION */
.decades {
  padding: 2rem;
}

.text-content {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.text-content h2 {
  font-family: "scale-variable", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.highlight {
  text-decoration: underline;
  text-decoration-color: #ffac48;
  text-underline-offset: 4px;
}

.text-content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  max-width: 641px;
  margin: 0.5rem auto 2rem;
  line-height: 28px;
  color: #000;
  text-align: center;
}

.text-content p .bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

/* ----- SLIDER ----- */
.slider-container {
  position: relative;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  cursor: grab;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 492px;
  margin-right: 1rem;
  user-select: none;
  pointer-events: none;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* A VISUAL WAY TO REMEMBER */
.visual-memory {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.visual-left {
  max-width: 565px;
  width: 100%;
}

.visual-left img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.visual-right {
  max-width: 502px;
  height: 386px;
  width: 100%;
  font-family: "scale-variable", sans-serif;
}

.visual-right h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 20px;
}

.visual-right .underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ffac48;
  bottom: -2px;
  border-radius: 2px;
}

.visual-right p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  height: 168px;
  color: #000;
  line-height: 28px;
  margin-bottom: 30px;
}

.visual-right p .bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.orange-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 211px;
  height: 49px;
  background-color: #ffac48;
  color: #fff;
  font-size: 18px;
  font-family: "scale-variable", sans-serif;
  font-variation-settings: "wdth" 100, "wght" 600;
  border-radius: 29px;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 1;
  gap: 12px;
  transition: background-color 0.3s ease;
}

.orange-btn .arrow {
  margin-left: 18px;
  transition: transform 0.3s ease;
}

.orange-btn:hover .arrow {
  transform: translateX(4px);
}

/* === HOW IT WORKS === */
.how-it-works {
  background: #fff;
  padding: 100px 0;
  font-family: "scale-variable", sans-serif;
  font-variation-settings: "wdth" 100, "wght" 400;
}

.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-it-works__label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
  line-height: 66px;
  text-align: center;
}

.how-it-works__intro h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 66px;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.how-it-works__intro h2 .line {
  position: relative;
  display: inline-block;
}

.how-it-works__intro h2 .line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #ffac48;
  bottom: -6px;
  border-radius: 2px;
  z-index: -1;
}

.how-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  gap: 60px;
}

.how-step.reverse {
  flex-direction: row-reverse;
}

.how-step__text {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  color: #000;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-step__content {
  flex: 1;
}

.how-step__image {
  flex: 1;
}

.how-step__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.how-step__badge {
  background-color: #ffac48;
  color: white;
  font-weight: 500;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 0;
}

.how-step__badge.orange {
  background-color: #ff7a00;
}

.how-step h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: capitalize;
  font-family: "scale-variable", sans-serif;
}

.how-step p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.how-step__quote {
  margin-top: 24px;
  background-color: #f9f9f9;
  padding: 16px 20px;
  border-left: 4px solid #ff7a00;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}

.how-it-works__intro.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.how-it-works__intro {
  position: relative;
  z-index: 1;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 20px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header .line {
  color: #000;
  position: relative;
  display: inline-block;
}

.testimonials-header .line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ffac48;
  bottom: -2px;
  border-radius: 2px;
}

.testimonials-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.testimonials-header h2 {
  font-family: "scale-variable", sans-serif;
  font-size: 60px;
  line-height: 66px;
  font-weight: 400;
  color: #000;
}

.testimonials-header .highlight {
  color: #ffac48;
}

.testimonials-slider {
  position: relative;
  max-width: 1220px;
  margin: 4rem auto 0;
  overflow: hidden;
  padding: 0 6rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 3.5rem 4rem;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

/* Make side cards peek in on wide screens */
@media (min-width: 860px) {
  .testimonial-card {
    flex: 0 0 60%;
    margin: 0 2rem;
  }

  .testimonials-slider {
    padding: 0 8rem;
  }
}

.stars {
  color: #ff7a00;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.testimonial-card h3 {
  font-family: "scale-variable", sans-serif;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: center;
  color: #000;
}

.testimonial-card .desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  text-align: center;
  max-width: 564px;
  margin: 0 auto 24px;
}

.testimonial-card .desc strong {
  font-weight: 700;
  color: #000;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
}

.testimonial-card .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: #FFAC48;
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.arrow:hover {
  background: #ffb74d;
}

.arrow-prev {
  left: 17%;
}

.arrow-next {
  right: 27%;
}

/* GRAPHIC CTA */
.graphic-cta {
  max-width: 1440px;
  margin: 100px auto;
  text-align: center;
  padding: 0 24px;
}

.cta-content h2 {
  font-family: "scale-variable", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 20px;
  color: #000;
}

.underline-2 {
  position: relative;
  display: inline-block;
}

.underline-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ffac48;
  bottom: -2px;
  border-radius: 2px;
}

.cta-content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
  max-width: 660px;
  margin: 0 auto 32px;
}

.cta-content p .bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 211px;
  height: 49px;
  background-color: #ffac48;
  color: #fff;
  font-size: 18px;
  font-family: "scale-variable", sans-serif;
  font-weight: 600;
  border-radius: 29px;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 1;
  gap: 12px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e89836;
  transform: translateY(-2px);
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-image {
  margin-top: 40px;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .visual-memory {
    flex-direction: column;
    gap: 40px;
  }

  .how-step {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero {
    padding: 180px 20px 80px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .text-content h2,
  .visual-right h2,
  .how-it-works__intro h2,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .hero,
  .decades,
  .visual-memory,
  .how-it-works,
  .testimonials-section,
  .graphic-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo {
    width: 160px;
    margin-bottom: 20px;
  }

  .footer-socials {
    gap: 12px;
  }

  .email-badge {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .text-content h2,
  .visual-right h2,
  .how-it-works__intro h2,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .testimonial-card h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 80px 20px 40px;
  border-top: 1px solid #f7f5f5;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 0;
}

.footer-column {
  text-align: left;
  color: #000;
}

.footer-column h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
}

.footer-column ul {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff7a00;
}

.footer-column p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.email-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f1f1;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-badge i {
  font-size: 14px;
}

.email-badge:hover {
  background: #ff7a00;
  color: #fff;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials img {
  width: 25x;
  height: 25px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding-top: 20px;
  border-top: 1px solid #f1f1f1;
  margin-top: 40px;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff7a00;
}

/* ADDITIONAL RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .visual-memory {
    flex-direction: column;
    gap: 40px;
  }

  .how-step {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
}

/* FOOTER RESPONSIVE ENHANCEMENTS */
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 30px;
  }

  .footer-content {
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    max-width: 280px;
    margin-bottom: 15px;
  }

  .footer-column:first-child {
    order: 2;
  }

  .footer-center {
    order: 1;
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-column:last-child {
    order: 3;
  }

  .footer-logo {
    width: 180px;
    margin-bottom: 20px;
  }

  .footer-socials {
    gap: 16px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 20px 25px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-logo {
    width: 160px;
    margin-bottom: 18px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-socials a {
    width: 26px;
    height: 26px;
  }

  .footer-socials img {
    width: 26px;
    height: 26px;
  }

  .email-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 35px 15px 20px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-column ul {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-logo {
    width: 140px;
    margin-bottom: 16px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-socials a {
    width: 24px;
    height: 24px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .email-badge {
    font-size: 13px;
    padding: 7px 14px;
    margin-top: 10px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .text-content h2,
  .visual-right h2,
  .how-it-works__intro h2,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .testimonial-card h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* Default: allow wrapping so phones don’t overflow */
.keep-line {
  white-space: normal;
  /* the browser can break lines if needed */
}

/* At ≥640 px (adjust to your breakpoint), keep it on one line */
@media (min-width: 640px) {
  .keep-line {
    white-space: nowrap;
    /* no breaks until the <br> tag */
  }
}