/* ══════════════════════════════════════════════════════
   RESPONSIVE STYLES
   Two breakpoints:
     ≤ 1199px  — tablet / small desktop (inner content no longer fits)
     ≤  767px  — phone (tighter font sizes, single-column everything)
   ══════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════
   BREAKPOINT 1 — below 1200px
   The 1128px inner content starts overflowing at this point.
   Switch all fixed widths to fluid.
   ════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  /* ── NAVBAR ── */
  .navbar {
    top: 0;
    background: rgba(21, 13, 0, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navbar__inner {
    width: 100%;
    padding: 0 32px;
    height: 64px;
  }

  /* Hide desktop links */
  .navbar__right {
    display: none;
  }

  /* Show hamburger */
  .navbar__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
  }

  .navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .navbar--open .navbar__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar--open .navbar__burger span:nth-child(2) {
    opacity: 0;
  }
  .navbar--open .navbar__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile drawer */
  .navbar__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(21, 13, 0, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .navbar--open .navbar__mobile-menu {
    max-height: 320px;
    padding: 32px;
  }

  .navbar__mobile-link {
    font-family: var(--font-nav);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
  }

  .navbar__mobile-cta {
    width: 220px;
  }


  /* ── HERO ── */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero__watermark-wrap,
  .hero__dot,
  .hero__orb {
    display: none;
  }

  .hero__deco {
    left: auto;
    right: -60px;
    top: 0;
    width: clamp(380px, 48vw, 620px);
    opacity: 0.85;
  }

  .hero__glow {
    width: 500px;
    height: 500px;
    top: -80px;
    left: calc(50% - 250px);
    filter: blur(60px);
  }

  .hero__content-wrapper {
    width: calc(100% - 64px);
    padding: 0;
    height: auto;
    margin: 0 auto;
  }

  .hero__main {
    position: static;
    width: 100%;
    max-width: 680px;
  }

  .hero__headline {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -3px;
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 17px;
    max-width: 100%;
    margin-top: 24px;
  }

  .hero__bottom {
    position: static;
    width: 100%;
    margin-top: 56px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero__offer {
    max-width: 100%;
  }

  .hero__quote {
    max-width: 100%;
  }

  .btn--cta {
    flex-shrink: 0;
  }


  /* ── SECTION DIVIDER ── */
  .section-divider {
    width: calc(100% - 64px);
  }


  /* ── SECTION 02 ── */
  .s2__inner {
    width: calc(100% - 64px);
  }

  .s2__header {
    width: 100%;
  }

  .s2__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
    white-space: normal;
  }

  .s2__cards-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .s2__card--center {
    width: 100%;
  }


  /* ── SECTION 03 ── */
  .s3__box {
    width: calc(100% - 64px);
    padding: 56px 40px;
    border-radius: 24px;
  }

  .s3__top {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .s3__title-col {
    width: 100%;
  }

  .s3__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }

  .s3__desc {
    width: 100%;
  }

  .s3__legend {
    width: 100%;
  }

  .s3__cards {
    grid-template-columns: 1fr;
    width: 100%;
  }


  /* ── SECTION 04 ── */
  .s4 {
    min-height: auto;
    padding: 100px 0;
  }

  .s4__inner {
    width: calc(100% - 64px);
    gap: 56px;
  }

  .s4__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }

  .s4__subtitle {
    width: 100%;
  }

  .s4__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
  }

  .s4__card {
    width: 100%;
  }

  .s4__divider {
    display: none;
  }


  /* ── SECTION 05 ── */
  .s5 {
    padding: 100px 0;
  }

  .s5__inner {
    width: calc(100% - 64px);
    gap: 56px;
  }

  .s5__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
    width: 100%;
  }

  .s5__diamond {
    display: none;
  }

  .s5__checklist {
    flex-direction: column;
    gap: 32px;
  }

  .s5__col {
    width: 100%;
  }

  .s5__item-text {
    white-space: normal;
  }


  /* ── SECTION 06 ── */
  .s6 {
    padding: 100px 0;
  }

  .s6__inner {
    width: calc(100% - 64px);
  }

  .s6__header {
    width: 100%;
  }

  .s6__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }

  .s6__accordion-wrap {
    width: 100%;
  }

  .s6__title {
    white-space: normal;
    line-height: 1.3;
  }

  .s6__sub-title {
    white-space: normal;
  }

  .s6__sub-desc {
    white-space: normal;
    padding-left: 0;
  }

  .s6__session-details {
    flex-wrap: wrap;
    gap: 6px;
  }

  .s6__count {
    width: 100%;
    padding-left: 40px;
  }


  /* ── SECTION 07 ── */
  .s7 {
    padding: 100px 0;
  }

  .s7__inner {
    width: calc(100% - 64px);
    gap: 48px;
  }

  .s7__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }

  .s7__subtitle {
    width: 100%;
  }

  .s7__content {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .s7__book-wrap {
    width: 100%;
    max-width: 480px;
    height: 480px;
  }

  .s7__book-glow {
    width: 100%;
  }

  .s7__features {
    width: 100%;
  }

  .s7__feature-title {
    white-space: normal;
    line-height: 1.3;
  }

  .s7__quote-desc {
    width: 100%;
  }


  /* ── SECTION 08 ── */
  .s8 {
    padding: 100px 0;
  }

  .s8__inner {
    width: calc(100% - 64px);
  }

  .s8__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }

  .s8__cards {
    grid-template-columns: 1fr;
  }

  .s8__name,
  .s8__role {
    white-space: normal;
  }


  /* ── SECTION 09 ── */
  .s9 {
    padding: 100px 0 120px;
  }

  .s9__inner {
    width: calc(100% - 64px);
  }

  .s9__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
    width: 100%;
  }

  .s9__offer {
    width: 100%;
  }

  .s9__desc {
    width: 100%;
  }

  .s9__cta {
    width: 100%;
    max-width: 500px;
  }

  .s9__guarantee {
    white-space: normal;
  }


  /* ── FOOTER ── */
  .footer__inner {
    width: 100%;
    padding: 60px 32px 0;
    gap: 48px;
  }

  .footer__top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer__brand {
    width: 100%;
  }

  .footer__tagline {
    width: 100%;
  }

  .footer__col {
    flex: 1;
    min-width: 140px;
  }

  .footer__copyright {
    white-space: normal;
  }


  /* ── ANIMATIONS ── */
  .btn--cta {
    animation: none;
  }

  /* ── RESOURCES PAGE ── */
  .rp-hero__orb,
  .rp-int__orb,
  .rs2__orb {
    display: none;
  }

  .rp-hero {
    padding: 120px 0 60px;
  }
  .rp-hero__inner {
    width: calc(100% - 64px);
  }
  .rp-hero__headline {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -3px;
  }
  .rp-hero__intro {
    width: 100%;
    font-size: 20px;
  }
  .rp-hero__desc {
    width: 100%;
  }

  .rs1 {
    padding: 40px 0 80px;
  }
  .rs1__inner {
    width: calc(100% - 64px);
  }

  .rp-int__inner {
    width: calc(100% - 64px);
  }
  .rp-int__headline {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -2px;
  }
  .rp-int__body,
  .rp-int__bold {
    width: 100%;
  }

  .rs2__inner {
    width: calc(100% - 64px);
    gap: 40px;
  }
  .rs2__header {
    width: 100%;
  }
  .rs2__headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -3px;
  }
  .rs2__steps {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .rs2__step-num {
    font-size: 36px;
  }
  .rs2__desc {
    width: 100%;
  }

} /* end @media (max-width: 1199px) */


/* ════════════════════════════════════════════════════════
   BREAKPOINT 2 — below 768px (phones)
   Tighter fonts, tighter padding, full single-column.
   ════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── NAVBAR ── */
  .navbar__inner {
    padding: 0 20px;
    height: 60px;
  }

  .navbar--open .navbar__mobile-menu {
    padding: 28px 20px;
  }


  /* ── HERO ── */
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero__deco {
    display: none;
  }

  .hero__glow {
    width: 320px;
    height: 320px;
    left: calc(50% - 160px);
  }

  .hero__content-wrapper {
    width: calc(100% - 40px);
  }

  .hero__main {
    max-width: 100%;
  }

  .hero__headline {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__offer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn--cta {
    width: 100%;
    max-width: 300px;
  }

  .hero__quote {
    text-align: left;
  }


  /* ── SECTION DIVIDER ── */
  .section-divider {
    width: calc(100% - 40px);
  }


  /* ── SECTION 02 ── */
  .s2 {
    padding: 60px 0 70px;
  }

  .s2__inner {
    width: calc(100% - 40px);
    gap: 40px;
  }

  .s2__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }


  /* ── SECTION 03 ── */
  .s3 {
    padding: 60px 0 70px;
  }

  .s3__box {
    width: calc(100% - 40px);
    padding: 36px 20px;
    border-radius: 18px;
  }

  .s3__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }


  /* ── SECTION 04 ── */
  .s4 {
    padding: 70px 0;
  }

  .s4__inner {
    width: calc(100% - 40px);
    gap: 40px;
  }

  .s4__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .s4__subtitle {
    font-size: 16px;
  }


  /* ── SECTION 05 ── */
  .s5 {
    padding: 70px 0 80px;
  }

  .s5__inner {
    width: calc(100% - 40px);
    gap: 40px;
  }

  .s5__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .s5__item-text {
    font-size: 18px;
  }

  .s5__footer-bold {
    font-size: 18px;
  }


  /* ── SECTION 06 ── */
  .s6 {
    padding: 70px 0;
  }

  .s6__inner {
    width: calc(100% - 40px);
    gap: 36px;
  }

  .s6__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .s6__btn {
    height: auto;
    min-height: 70px;
    padding: 14px 0;
  }

  .s6__module--open .s6__btn {
    min-height: 56px;
  }

  .s6__title {
    font-size: 16px;
  }

  .s6__num {
    font-size: 22px;
  }

  .s6__preview {
    height: 200px;
  }

  .s6__sub-top {
    flex-direction: column;
    gap: 8px;
  }

  .s6__deliverable {
    max-width: 100%;
    text-align: left;
    align-self: flex-start;
  }


  /* ── SECTION 07 ── */
  .s7 {
    padding: 70px 0;
  }

  .s7__inner {
    width: calc(100% - 40px);
    gap: 36px;
  }

  .s7__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .s7__subtitle {
    font-size: 16px;
  }

  .s7__book-wrap {
    max-width: 320px;
    height: 380px;
  }

  .s7__quote-desc {
    font-size: 16px;
  }


  /* ── SECTION 08 ── */
  .s8 {
    padding: 70px 0;
  }

  .s8__inner {
    width: calc(100% - 40px);
    gap: 28px;
  }

  .s8__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }


  /* ── SECTION 09 ── */
  .s9 {
    padding: 70px 0 90px;
  }

  .s9__inner {
    width: calc(100% - 40px);
    gap: 20px;
  }

  .s9__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .s9__offer {
    font-size: 20px;
  }

  .s9__desc {
    font-size: 16px;
  }

  .s9__cta {
    max-width: 100%;
  }


  /* ── FOOTER ── */
  .footer__inner {
    padding: 48px 20px 0;
    gap: 36px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__col {
    width: 100%;
    min-width: unset;
  }

  /* ── RESOURCES PAGE ── */
  .rp-hero {
    padding: 100px 0 48px;
  }
  .rp-hero__inner {
    width: calc(100% - 40px);
  }
  .rp-hero__headline {
    font-size: 38px;
    letter-spacing: -2px;
  }
  .rp-hero__intro {
    font-size: 18px;
  }
  .rp-hero__desc {
    font-size: 16px;
  }

  .rs1 {
    padding: 32px 0 60px;
  }
  .rs1__inner {
    width: calc(100% - 40px);
    gap: 16px;
  }
  .rs1__card {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  .rs1__col-left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .rs1__num {
    font-size: 24px;
  }
  .rs1__title {
    font-size: 20px;
    white-space: normal;
  }
  .rs1__subtitle {
    white-space: normal;
  }
  .rs1__btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    align-self: stretch;
    font-size: 14px;
    padding: 14px 20px;
  }

  .rp-int {
    padding: 60px 0;
  }
  .rp-int__inner {
    width: calc(100% - 40px);
    gap: 20px;
  }
  .rp-int__headline {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -1px;
  }
  .rp-int__body {
    font-size: 16px;
  }
  .rp-int__bold {
    font-size: 20px;
  }

  .rs2 {
    padding: 60px 0 80px;
  }
  .rs2__inner {
    width: calc(100% - 40px);
    gap: 32px;
  }
  .rs2__headline {
    font-size: 36px;
    letter-spacing: -2px;
  }
  .rs2__steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rs2__step {
    height: auto;
    min-height: 80px;
    padding: 16px 20px;
  }
  .rs2__step-num {
    font-size: 28px;
  }
  .rs2__step-text {
    font-size: 16px;
  }
  .rs2__divider-quote {
    font-size: 22px;
    white-space: normal;
    text-align: center;
  }
  .rs2__btn {
    font-size: 14px;
    padding: 14px 24px;
  }

} /* end @media (max-width: 767px) */
