.approach-main {
  background: #0f1014;
  color: #ffffff;
  overflow: visible;
}

/* Hero Section */
.approach-hero {
  /*padding-top: clamp(10rem, 15vh, 12rem);
  padding-bottom: clamp(5rem, 8vh, 8rem);*/
  background: #ffffff;
  text-align: center;
  padding: clamp(3rem, 5.7vw, 5.85rem) 0;
}

.approach-hero .eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-family: var(--font-copy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.approach-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.75vw, 5.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 1.5rem;
  max-width: 22ch;
}

.approach-hero__title .text-white {
  color: #111317;
}

.approach-hero__title .text-orange {
  color: var(--orange);
}

.approach-hero__body {
  font-family: var(--font-copy);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-soft);
  max-width: 65ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.btn-talk-recipe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 10px 25px rgba(255, 111, 50, 0.25);
}

.btn-talk-recipe:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
}

/* Intro Section */
.approach-intro {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.approach-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #111317;
  margin-bottom: 1.5rem;
}

.approach-intro__body {
  font-family: var(--font-copy);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-soft);
  max-width: 75ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Scroll-Linked Funnel Magic Section */
.funnel-magic {
  position: relative;
  height: 380vh;
  background: #1f1f1f;
}

.funnel-magic__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1f1f1f;
}

.funnel-magic__title-wrap {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.funnel-magic__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  margin: 0 auto;
  text-align: center;
  max-width: 30ch;
  line-height: 1.15;
}

.funnel-magic__title .text-blue {
  color: rgba(255, 255, 255, 0.8) !important;
}

.funnel-magic__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  width: min(1300px, 90%);
  margin: 0 auto;
  align-items: center;
  padding-top: 100px;
}

.funnel-magic__text-col {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.funnel-magic__stage {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-50%) translateY(40px);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-magic__stage.is-active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
}

.funnel-magic__stage-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.8rem;
  display: block;
}

.funnel-magic__stage h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 1.2rem;
  color: #fff;
  line-height: 1.25;
}

.funnel-magic__stage p {
  font-family: var(--font-copy);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.funnel-magic__stage p strong {
  color: #fff;
}

.funnel-magic__mobile-img {
  display: none;
}

.funnel-magic__image-col {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  background: none;
  border: none;
  overflow: hidden;
}

.funnel-magic__img-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.funnel-magic__img-wrapper.is-active {
  opacity: 1;
  transform: scale(1);
}

.funnel-magic__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* Dynamic Grid Alternate Layout Sections */
.approach-grid-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.approach-grid-section--alt {
  background: #f7f9fc;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.approach-grid-section--alt .grid-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.grid-layout__visual {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-layout__visual img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.grid-layout__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grid-layout__copy .eyebrow {
  border: 1.5px solid var(--orange) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.4rem !important;
  display: inline-block !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  color: var(--orange) !important;
  letter-spacing: normal !important;
  margin-bottom: 0.5rem !important;
  width: max-content !important;
}

.grid-layout__copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #111317;
  line-height: 1.2;
  margin: 0;
}

.grid-layout__copy .intro-p {
  font-family: var(--font-copy);
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.grid-layout__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.grid-layout__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1.5rem;
  position: relative;
}

.grid-layout__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.grid-layout__item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #111317;
}

.grid-layout__item p {
  margin: 0;
  font-family: var(--font-copy);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.grid-layout__copy .concl-p {
  font-family: var(--font-copy);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Why Wizrdom Rocks Section */
.why-rocks-section {
  padding: 100px 0;
  background: #2150dd;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-rocks-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.why-rocks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.why-rocks-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.why-rocks-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.why-rocks-card__icon {
  width: 48px;
  height: 48px;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-rocks-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-rocks-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff !important;
}

.why-rocks-card p {
  font-family: var(--font-copy);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  margin: 0;
}

/* FAQs Section */
.approach-faqs {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.approach-faqs .eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  display: block;
  margin-bottom: 0.8rem;
}

.approach-faqs h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #111317;
  text-align: center;
  margin: 0 0 3.5rem 0;
}

.approach-faqs__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-faq-item {
  background: #f7f8fb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.approach-faq-item.active {
  border-color: var(--blue);
}

.approach-faq-question {
  width: 100%;
  background: none;
  border: 0;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111317;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.approach-faq-icon {
  font-size: 1.5rem;
  color: var(--blue);
  transition: transform 0.25s ease;
}

.approach-faq-item.active .approach-faq-icon {
  transform: rotate(45deg);
}

.approach-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.approach-faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-family: var(--font-copy);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .why-rocks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .funnel-magic__layout {
    gap: 3rem !important;
  }

  .funnel-magic__image-col {
    max-width: 380px !important;
  }
}

@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  .approach-grid-section--alt .grid-layout {
    order: 0;
  }

  .grid-layout__visual {
    order: -1;
  }

  .why-rocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .funnel-magic {
    height: auto !important;
    padding: clamp(4rem, 6vw, 6rem) 0 !important;
  }

  .funnel-magic__sticky {
    position: relative !important;
    height: auto !important;
    top: auto !important;
    overflow: visible !important;
    display: block !important;
    background: #1f1f1f !important;
  }

  .funnel-magic__title-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 2rem !important;
    padding: 0 1.5rem;
    text-align: center;
  }

  .funnel-magic__layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    padding: 0 1.5rem !important;
  }

  .funnel-magic__text-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 3.5rem !important;
    min-height: auto !important;
  }

  .funnel-magic__stage {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .funnel-magic__mobile-img {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .funnel-magic__mobile-img img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .funnel-magic__image-col {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .why-rocks-grid {
    grid-template-columns: 1fr;
  }
}