    :root {
      --brand-navy: #0f2742;
      --brand-steel: #1f3f67;
      --brand-gold: #f6b73c;
      --brand-mint: #3ec8b8;
      --text-deep: #1a2432;
      --text-muted: #5d6a7b;
      --surface: #f4f7fb;
      --white: #ffffff;
      --soft-border: #d9e1ec;
      --radius-lg: 1.1rem;
      --radius-xl: 1.6rem;
      --shadow-soft: 0 16px 35px rgba(19, 40, 71, 0.12);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text-deep);
      background: radial-gradient(circle at 12% -5%, #d8e8f8 0%, #eef3f9 35%, #f9fbfd 70%, #fdfefe 100%);
      line-height: 1.65;
    }

    body.has-mobile-cta {
      padding-bottom: 0;
    }

    h1, h2, h3, h4, h5 {
      font-family: "Source Serif 4", serif;
      letter-spacing: -0.01em;
    }

    .top-strip {
      background: linear-gradient(90deg, var(--brand-steel), var(--brand-navy));
      color: #eaf2ff;
      font-size: 0.92rem;
    }

    .top-strip a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .navbar {
      backdrop-filter: blur(6px);
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid #eef2f8;
      transition: box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 10px 28px rgba(14, 35, 59, 0.12);
    }

    .navbar-brand {
      font-weight: 800;
      color: var(--brand-navy);
      letter-spacing: 0.02em;
    }

    .nav-link {
      color: var(--text-deep);
      font-weight: 600;
    }

    .nav-link.active {
      color: var(--brand-steel);
    }

    .btn-brand {
      background: var(--brand-gold);
      color: #1e2735;
      border: 0;
      font-weight: 700;
      padding: 0.72rem 1.35rem;
      border-radius: 0.7rem;
      box-shadow: 0 8px 18px rgba(246, 183, 60, 0.35);
    }

    .btn-brand:hover {
      background: #f8c75f;
      color: #1e2735;
    }

    .btn-outline-brand {
      border: 1.5px solid var(--brand-steel);
      color: var(--brand-steel);
      font-weight: 700;
      border-radius: 0.7rem;
      padding: 0.7rem 1.25rem;
    }

    .btn-outline-brand:hover {
      background: var(--brand-steel);
      color: #fff;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 5.5rem 0 4.4rem;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(6px);
      z-index: -1;
    }

    .hero::before {
      width: 330px;
      height: 330px;
      background: rgba(62, 200, 184, 0.22);
      top: -90px;
      right: -90px;
    }

    .hero::after {
      width: 260px;
      height: 260px;
      background: rgba(246, 183, 60, 0.18);
      left: -70px;
      bottom: -70px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--brand-steel);
      background: #e7f2ff;
      border-radius: 999px;
      padding: 0.45rem 0.95rem;
      margin-bottom: 1rem;
      animation: liftPulse 3.4s ease-in-out infinite;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.65rem);
      line-height: 1.12;
      color: var(--brand-navy);
    }

    .hero-lead {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 55ch;
    }

    .hero-card {
      background: linear-gradient(165deg, #122f4f 5%, #1f4b75 100%);
      color: #fff;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 1.5rem;
      animation: floatCard 6s ease-in-out infinite;
    }

    .hero-card .metric {
      font-size: 1.72rem;
      font-weight: 800;
      line-height: 1;
    }

    .pill-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .pill-list li {
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      padding: 0.36rem 0.76rem;
      font-size: 0.84rem;
    }

    .trust-strip {
      background: #fff;
      border-top: 1px solid #e9eef6;
      border-bottom: 1px solid #e9eef6;
    }

    .trust-strip .item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #30445f;
      font-weight: 650;
      padding: 1.1rem 0;
    }

    .trust-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: linear-gradient(140deg, #e2efff, #e6fdf7);
      border: 1px solid #cddff6;
      color: #1f4b75;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }

    .audience-card {
      border: 1px solid #dbe5f2;
      border-radius: var(--radius-lg);
      background: #fff;
      padding: 1.2rem;
      height: 100%;
      box-shadow: 0 8px 24px rgba(17, 37, 62, 0.06);
    }

    .audience-card h3 {
      font-size: 1.16rem;
      margin-bottom: 0.45rem;
      color: var(--brand-navy);
    }

    .about-panel {
      background: #fff;
      border: 1px solid #d9e4f2;
      border-radius: var(--radius-xl);
      box-shadow: 0 14px 30px rgba(17, 37, 62, 0.08);
      overflow: hidden;
    }

    .about-reframe {
      background: #fff;
      border: 1px solid #d9e4f2;
      border-radius: var(--radius-xl);
      box-shadow: 0 14px 30px rgba(17, 37, 62, 0.08);
      padding: 1.35rem;
    }

    .about-main {
      border: 1px solid #e0e8f4;
      border-radius: 1rem;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      padding: 1.35rem;
    }

    .about-highlight-grid {
      display: grid;
      gap: 0.9rem;
    }

    .about-highlight {
      border: 1px solid #dbe6f4;
      border-radius: 1rem;
      background: #ffffff;
      padding: 1rem;
      box-shadow: 0 8px 20px rgba(17, 37, 62, 0.06);
    }

    .about-highlight h3 {
      color: var(--brand-navy);
    }

    .founder-highlight {
      background: linear-gradient(160deg, #113253 0%, #1e4d75 100%);
      color: #eaf4ff;
      border-color: rgba(255, 255, 255, 0.16);
    }

    .founder-highlight h3 {
      color: #fff;
    }

    .founder-profile-head {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 0.95rem;
    }

    .founder-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 18px rgba(6, 23, 40, 0.28);
      flex-shrink: 0;
    }

    .founder-title {
      font-size: 0.86rem;
      font-weight: 700;
      color: #cfe4ff;
      letter-spacing: 0.01em;
    }

    .founder-quote {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
      color: #edf6ff;
      padding: 0.75rem 0.85rem;
      border-left: 3px solid #98ceff;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 0.6rem;
    }

    .founder-cred-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .founder-pill {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: #e8f3ff;
      font-size: 0.79rem;
      font-weight: 700;
      padding: 0.28rem 0.62rem;
      white-space: nowrap;
    }

    .about-copy {
      padding: 1.5rem;
    }

    .about-kicker {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #2b5a8c;
      background: #e8f2ff;
      border: 1px solid #cfe2fa;
      border-radius: 999px;
      padding: 0.32rem 0.7rem;
      margin-bottom: 0.85rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      margin-top: 1rem;
    }

    .about-stat {
      border: 1px solid #d8e4f3;
      border-radius: 0.8rem;
      background: linear-gradient(180deg, #f9fcff 0%, #f2f8ff 100%);
      padding: 0.8rem;
      text-align: center;
    }

    .about-stat strong {
      display: block;
      line-height: 1;
      margin-bottom: 0.25rem;
      color: var(--brand-navy);
      font-size: 1.32rem;
    }

    .about-story {
      height: auto;
      background: linear-gradient(155deg, #113253 0%, #1d476f 55%, #1f6580 100%);
      color: #eaf4ff;
      padding: 1.5rem;
    }

    .about-story h3 {
      color: #fff;
    }

    .founder-note {
      border-left: 3px solid #9fd1ff;
      padding-left: 0.75rem;
      margin-top: 1rem;
      font-size: 0.94rem;
      color: #d7eaff;
    }

    .about-list {
      margin: 0;
      padding-left: 1rem;
    }

    .about-list li {
      margin-bottom: 0.45rem;
    }

    .milestone-list {
      margin-top: 1rem;
      display: grid;
      gap: 0.7rem;
    }

    .milestone-item {
      border: 1px solid #d8e4f2;
      border-radius: 0.8rem;
      background: #fff;
      padding: 0.7rem 0.8rem;
    }

    .milestone-item strong {
      color: var(--brand-navy);
      margin-right: 0.4rem;
    }

    .about-helper {
      font-size: 0.84rem;
      color: #637187;
      margin-top: 0.8rem;
      margin-bottom: 0;
    }

    .section-title {
      font-size: clamp(1.72rem, 3.5vw, 2.48rem);
      color: var(--brand-navy);
      margin-bottom: 0.9rem;
      line-height: 1.2;
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 68ch;
      line-height: 1.72;
      margin: 0 auto;
    }

    .section-soft {
      background: linear-gradient(180deg, #f8fbff 0%, #f3f8fe 100%);
      border-top: 1px solid #e6edf8;
      border-bottom: 1px solid #e6edf8;
    }

    .feature-card,
    .program-card,
    .testimonial-card,
    .lead-card,
    .faq-card {
      background: #fff;
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-lg);
      box-shadow: 0 8px 24px rgba(17, 37, 62, 0.06);
    }

    .feature-card {
      padding: 1.4rem;
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 28px rgba(17, 37, 62, 0.14);
    }

    .icon-bubble {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: var(--brand-steel);
      background: linear-gradient(135deg, #d5ecff, #e5fff9);
      margin-bottom: 1rem;
    }

    .program-card {
      overflow: hidden;
      height: 100%;
      transition: transform 0.25s ease;
      position: relative;
    }

    .program-card::after {
      content: "";
      position: absolute;
      top: -80%;
      left: -120%;
      width: 65%;
      height: 240%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
      transform: rotate(18deg);
      transition: left 0.85s ease;
    }

    .program-card:hover {
      transform: translateY(-6px);
    }

    .program-card:hover::after {
      left: 150%;
    }

    .program-head {
      background: linear-gradient(130deg, var(--brand-navy), var(--brand-steel));
      color: #fff;
      padding: 1.15rem 1.25rem;
    }

    .program-body {
      padding: 1.2rem 1.25rem 1.3rem;
    }

    .program-body ul {
      padding-left: 1.1rem;
      margin-bottom: 0.9rem;
    }

    .program-body li {
      margin-bottom: 0.28rem;
    }

    .program-fit {
      font-size: 0.92rem;
      font-weight: 700;
      color: #234a72;
      background: #edf4ff;
      border: 1px solid #d6e6fb;
      border-radius: 0.65rem;
      padding: 0.55rem 0.65rem;
    }

    .price-tag {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--brand-navy);
      margin: 0;
    }

    @media (max-width: 991.98px) {
      .about-reframe {
        padding: 1rem;
      }

      .about-main {
        padding: 1rem;
      }

      .founder-avatar {
        width: 64px;
        height: 64px;
      }
    }

    .step-card {
      border-left: 4px solid var(--brand-gold);
      background: #fff;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      padding: 1.15rem;
      height: 100%;
      box-shadow: 0 8px 22px rgba(16, 34, 55, 0.08);
    }

    .step-number {
      font-size: 0.83rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #7a8798;
      font-weight: 800;
    }

    .ebook-band {
      background: linear-gradient(110deg, #143357 0%, #113d68 40%, #0f5a75 100%);
      color: #eef8ff;
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
    }

    .ebook-band::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(246, 183, 60, 0.24);
      top: -60px;
      right: -60px;
    }

    .ebook-list {
      padding-left: 1.1rem;
      margin-bottom: 0;
    }

    .ebook-list li {
      margin-bottom: 0.5rem;
    }

    .testimonial-card,
    .lead-card,
    .faq-card {
      padding: 1.4rem;
      height: 100%;
    }

    .stars {
      letter-spacing: 0.08em;
      color: #f5a524;
      font-weight: 800;
    }

    .guarantee-banner {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 52%, #eef7ff 100%);
      border: 1px solid #cfdeef;
      border-radius: var(--radius-xl);
      box-shadow: 0 16px 34px rgba(14, 37, 66, 0.12);
      padding: clamp(1.35rem, 2.4vw, 2rem);
    }

    .guarantee-banner::after {
      content: "";
      position: absolute;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(246, 183, 60, 0.3) 0%, rgba(246, 183, 60, 0.08) 45%, rgba(246, 183, 60, 0) 72%);
      top: -90px;
      right: -70px;
      pointer-events: none;
    }

    .guarantee-banner__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #16497d;
      background: #e8f2ff;
      border: 1px solid #c8ddf6;
      border-radius: 999px;
      padding: 0.33rem 0.72rem;
      margin-bottom: 0.95rem;
    }

    .guarantee-banner__content {
      position: relative;
      z-index: 1;
      max-width: 100%;
    }

    .guarantee-banner__title {
      font-size: clamp(1.55rem, 2.9vw, 2.2rem);
      max-width: 24ch;
    }

    .guarantee-banner__highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .guarantee-chip {
      display: inline-flex;
      align-items: center;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #204a78;
      background: #edf4ff;
      border: 1px solid #d1e3f8;
      border-radius: 999px;
      padding: 0.34rem 0.68rem;
    }

    .guarantee-banner__cta {
      min-width: 230px;
      font-weight: 700;
    }

    .guarantee-banner .guarantee-note {
      margin-top: 0.85rem;
      font-size: 0.84rem;
      line-height: 1.5;
      color: #5c6f87;
    }

    .guarantee-panel {
      position: relative;
      z-index: 1;
      background: linear-gradient(160deg, #103a66 0%, #164a79 100%);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      color: #ecf5ff;
      box-shadow: 0 12px 26px rgba(10, 35, 58, 0.22);
    }

    .guarantee-panel h3 {
      color: #fff;
      letter-spacing: 0.01em;
    }

    .guarantee-steps {
      margin: 0;
      padding-left: 1.15rem;
      display: grid;
      gap: 0.95rem;
    }

    .guarantee-steps li {
      line-height: 1.45;
      color: #d8e8f9;
    }

    .guarantee-steps li strong {
      display: block;
      color: #ffffff;
      margin-bottom: 0.2rem;
      font-size: 0.95rem;
    }

    .guarantee-steps li span {
      display: block;
      font-size: 0.9rem;
    }

    .lead-card {
      background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
    }

    .newsletter-section .lead-card {
      background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 62%, #eef6ff 100%);
      border-color: #cfdbec;
      box-shadow: 0 14px 34px rgba(16, 38, 66, 0.1);
    }

    .newsletter-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #2d5888;
      background: #e7f1ff;
      border: 1px solid #cfe1f8;
      border-radius: 999px;
      padding: 0.32rem 0.68rem;
      margin-bottom: 0.9rem;
    }

    .newsletter-note {
      font-size: 0.88rem;
      color: #617087;
      margin-top: 0.75rem;
      margin-bottom: 0;
    }

    .form-control,
    .form-select {
      border-radius: 0.65rem;
      border-color: #d3dce8;
      padding: 0.72rem 0.85rem;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #6ca1dd;
      box-shadow: 0 0 0 0.2rem rgba(66, 133, 209, 0.18);
    }

    .form-feedback {
      display: none;
      margin-top: 0.8rem;
      padding: 0.65rem 0.78rem;
      border-radius: 0.6rem;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .form-feedback.success {
      display: block;
      background: #e8f8f1;
      border: 1px solid #b8e8d0;
      color: #1f6e4a;
    }

    .form-feedback.error {
      display: block;
      background: #fdebec;
      border: 1px solid #f7c1c6;
      color: #8f1d2c;
    }

    .accordion-button {
      font-weight: 700;
      color: var(--text-deep);
    }

    .accordion-button:not(.collapsed) {
      background-color: #ecf4ff;
      color: var(--brand-steel);
      box-shadow: none;
    }

    .help-card {
      background: #fff;
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-lg);
      box-shadow: 0 10px 24px rgba(17, 37, 62, 0.08);
      padding: 1.35rem;
      height: 100%;
    }

    .help-chip {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #2f5a8e;
      background: #e8f2ff;
      border: 1px solid #cfe2fb;
      border-radius: 999px;
      padding: 0.28rem 0.62rem;
      margin-bottom: 0.7rem;
    }

    .help-list {
      padding-left: 1.1rem;
      margin-bottom: 0;
    }

    .help-list li {
      margin-bottom: 0.42rem;
    }

    footer {
      background: #0d2037;
      color: #deebff;
      margin-top: 4rem;
      padding-top: 3.1rem;
    }

    .footer-brand-copy {
      color: #c8d9f0;
      max-width: 36ch;
    }

    .footer-kicker {
      display: inline-block;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #8dc0ff;
      margin-bottom: 0.5rem;
    }

    .footer-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .footer-list li {
      margin-bottom: 0.45rem;
      color: #d6e5fa;
      font-size: 0.95rem;
    }

    .tita-chat-launcher {
      position: fixed;
      right: 1rem;
      bottom: 4.4rem;
      z-index: 1035;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: linear-gradient(135deg, #1a3f69, #0f5b7f);
      color: #fff;
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 800;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.72rem 0.95rem;
      box-shadow: 0 14px 30px rgba(8, 35, 58, 0.35);
      transition: transform 0.2s ease;
      animation: titaPulse 2.5s ease-in-out infinite;
    }

    .tita-chat-launcher:hover {
      transform: translateY(-4px);
      color: #fff;
    }

    .tita-chat-panel {
      position: fixed;
      right: 1rem;
      bottom: 8.3rem;
      width: min(360px, calc(100vw - 1.6rem));
      z-index: 1036;
      border: 1px solid #cfe0f3;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 22px 40px rgba(10, 34, 56, 0.28);
      background: #fff;
      display: none;
    }

    .tita-chat-panel.open {
      display: block;
    }

    .tita-chat-head {
      background: linear-gradient(135deg, #15385f, #1f5a88);
      color: #eaf4ff;
      padding: 0.72rem 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
    }

    .tita-chat-close {
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      padding: 0;
    }

    .tita-chat-body {
      padding: 0.8rem;
      background: linear-gradient(180deg, #f9fcff 0%, #f3f8ff 100%);
    }

    .tita-chat-log {
      max-height: 220px;
      overflow: auto;
      display: grid;
      gap: 0.52rem;
      margin-bottom: 0.72rem;
    }

    .tita-bubble,
    .user-bubble {
      border-radius: 0.72rem;
      padding: 0.52rem 0.65rem;
      font-size: 0.9rem;
      line-height: 1.45;
      max-width: 92%;
    }

    .tita-bubble {
      background: #e8f2ff;
      color: #244a74;
      justify-self: start;
    }

    .user-bubble {
      background: #dff6ee;
      color: #17664a;
      justify-self: end;
    }

    .tita-quick-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.72rem;
    }

    .tita-quick-actions button {
      border: 1px solid #c8dbf3;
      background: #fff;
      color: #2f5987;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.26rem 0.58rem;
    }

    .tita-chat-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.45rem;
    }

    .tita-chat-form input {
      border: 1px solid #cfdbec;
      border-radius: 0.58rem;
      padding: 0.5rem 0.62rem;
      font-size: 0.9rem;
    }

    .tita-chat-form button {
      border: 0;
      background: #1d4a77;
      color: #fff;
      border-radius: 0.58rem;
      font-weight: 700;
      padding: 0.5rem 0.75rem;
      font-size: 0.88rem;
    }

    .mobile-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      background: rgba(11, 34, 60, 0.97);
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      padding: 0.62rem 0.75rem calc(0.62rem + env(safe-area-inset-bottom));
      backdrop-filter: blur(8px);
      display: none;
    }

    .mobile-cta-bar .btn {
      border-radius: 0.6rem;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 0.58rem 0.7rem;
    }

    .mobile-cta-bar .btn-call {
      background: #fff;
      color: #17385f;
      border: 0;
    }

    .mobile-cta-bar .btn-enroll {
      background: var(--brand-gold);
      color: #1e2735;
      border: 0;
    }

    footer a {
      color: #deebff;
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer-note {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 1.4rem;
      padding: 1rem 0 1.2rem;
      color: #b9cbe6;
      font-size: 0.92rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.stagger-1 { transition-delay: 0.06s; }
    .reveal.stagger-2 { transition-delay: 0.12s; }
    .reveal.stagger-3 { transition-delay: 0.18s; }
    .reveal.stagger-4 { transition-delay: 0.24s; }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    @keyframes liftPulse {
      0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(47, 103, 166, 0.15); }
      50% { transform: translateY(-2px); box-shadow: 0 0 0 12px rgba(47, 103, 166, 0); }
    }

    @keyframes titaPulse {
      0%, 100% { box-shadow: 0 14px 30px rgba(12, 56, 28, 0.35); }
      50% { box-shadow: 0 14px 34px rgba(12, 56, 28, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.16); }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 991px) {
      .hero {
        padding-top: 4.8rem;
      }

      .hero-card {
        margin-top: 1rem;
      }

      .section-title {
        margin-bottom: 0.72rem;
      }

      .section-subtitle {
        font-size: 0.98rem;
      }

      .feature-card,
      .program-body,
      .lead-card,
      .faq-card {
        padding: 1.15rem;
      }

      .guarantee-banner {
        padding: 1.2rem;
      }

      .guarantee-banner__title {
        max-width: none;
      }

      .guarantee-panel {
        padding: 1rem;
      }

      .audience-card {
        padding: 1.05rem;
      }

      .about-copy,
      .about-story {
        padding: 1.2rem;
      }

      .ebook-band {
        padding: 1.35rem !important;
      }

      .step-card {
        padding: 1rem;
      }

      footer {
        padding-top: 2.4rem;
      }
    }

    @media (max-width: 575px) {
      .tita-chat-launcher {
        bottom: 6.9rem;
      }

      .tita-chat-panel {
        bottom: 10.8rem;
      }

      main section.py-5,
      main section.py-5.section-soft {
        padding-top: 3.15rem !important;
        padding-bottom: 3.15rem !important;
      }

      .hero {
        padding-top: 4.25rem;
        padding-bottom: 3.4rem;
      }

      .hero h1 {
        font-size: clamp(1.9rem, 9.2vw, 2.5rem);
      }

      .hero-lead {
        font-size: 0.97rem;
      }

      .section-title {
        font-size: clamp(1.52rem, 7.1vw, 1.95rem);
      }

      .section-subtitle,
      p.text-secondary {
        font-size: 0.95rem;
      }

      .trust-strip .item {
        font-size: 0.9rem;
        padding: 0.82rem 0;
      }

      .trust-icon {
        width: 26px;
        height: 26px;
        font-size: 0.64rem;
      }

      .program-head {
        padding: 1rem 1rem 0.95rem;
      }

      .program-body {
        padding: 1rem;
      }

      .audience-card h3 {
        font-size: 1.06rem;
      }

      .btn-brand,
      .btn-outline-brand {
        font-size: 0.95rem;
      }

      .footer-list li,
      .footer-brand-copy {
        font-size: 0.9rem;
      }

      .top-strip {
        font-size: 0.84rem;
      }

      .btn-brand,
      .btn-outline-brand {
        width: 100%;
      }

      .guarantee-banner__cta {
        min-width: 0;
      }

      .guarantee-banner__highlights {
        gap: 0.45rem;
      }

      .guarantee-chip {
        font-size: 0.74rem;
      }

      .guarantee-banner .guarantee-note {
        margin-top: 0.7rem;
        font-size: 0.8rem;
      }

      .top-strip .d-flex.gap-3 {
        width: 100%;
        justify-content: space-between;
      }
    }

    @media (max-width: 991px) {
      body.has-mobile-cta {
        padding-bottom: 4.8rem;
      }

      .mobile-cta-bar {
        display: block;
      }

      .tita-chat-launcher {
        bottom: 5.7rem;
      }

      .tita-chat-panel {
        bottom: 10rem;
      }
    }
