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

    :root {
      --navy: #1A365D;
      --blue: #2B6CB0;
      --teal: #319795;
      --orange: #ED8936;
      --purple: #805AD5;
      --pink: #D53F8C;
      --green: #38A169;
      --yellow: #D69E2E;
      /* Sphere palette (match sphere logos) */
      --sphere-family: #FF121E;
      --sphere-economics: #FF9300;
      --sphere-government: #FEC901;
      --sphere-religion: #75cb01;
      --sphere-education: #01b9d9;
      --sphere-communication: #5953d9;
      --sphere-celebration: #ee46ae;
      --white: #FFFFFF;
      --cream: #FFF8F0;
      --gray-50: #F7FAFC;
      --gray-700: #2D3748;
      --text-dark: #1A202C;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(26, 54, 93, 0.1);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: var(--gray-700);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--navy);
    }

    .nav-login {
      background: var(--navy);
      color: white !important;
      padding: 0.5rem 1.25rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .nav-login:hover {
      background: var(--blue);
      color: white !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    /* Active navigation link */
    .nav-links a.nav-active {
      color: var(--navy);
      font-weight: 600;
    }

    .nav-links a.nav-active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--blue);
      border-radius: 1px;
    }

    /* Logo as link */
    .logo-link {
      text-decoration: none;
    }

    /* Page content wrapper for inner pages */
    .page-content {
      padding-top: 5rem;
      min-height: calc(100vh - 200px);
    }

    /* Inner page hero - uniform across About, Vocations, Vocations Course, Formation, Resources, Pricing */
    .inner-page-hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(43, 108, 176, 0.75) 100%), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
      background-attachment: fixed;
      color: white;
      text-align: center;
      padding: 8rem 2rem 4rem;
    }
    .inner-page-hero-content {
      max-width: 800px;
      z-index: 2;
    }
    .inner-page-hero-eyebrow {
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      opacity: 0.9;
      margin-bottom: 1.5rem;
      font-weight: 500;
      color: white;
    }
    .inner-page-hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      color: white;
    }
    .inner-page-hero-subtitle {
      font-size: clamp(1.125rem, 2vw, 1.5rem);
      line-height: 1.6;
      opacity: 0.95;
      max-width: 600px;
      margin: 0 auto;
      color: white;
    }
    @media (max-width: 768px) {
      .inner-page-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 70vh;
      }
    }

    .page-hero {
      background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #F0F9FF 100%);
      padding: 4rem 3rem 0.5rem;
    }
    
    /* Reduce section-header margin when in page-hero */
    .page-hero .section-header {
      margin-bottom: 0.5rem;
    }
    
    /* Reduce section-header margin when it's the first element after page-hero */
    .page-hero + .section .section-header {
      margin-bottom: 1.5rem;
    }
    
    /* Reduce spacing for container when it's the first element in section after page-hero */
    .page-hero + .section > .container {
      margin-top: 0;
      padding-top: 0;
    }

    /* Mobile menu toggle */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--navy);
      padding: 0.5rem;
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
      }

      .nav-links.mobile-open {
        display: flex;
      }

      .nav-links li {
        width: 100%;
        text-align: center;
      }

      .nav-links a {
        display: block;
        padding: 0.75rem;
      }
    }

    /* Hero Section - Completely Redesigned */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 8rem 3rem 5rem;
      background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #F0F9FF 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 140%;
      background: radial-gradient(circle, rgba(43, 108, 176, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 600px;
    }

    .hero-eyebrow {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 2px;
      background: var(--blue);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      color: var(--navy);
    }

    .hero-highlight {
      color: var(--blue);
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-bottom: 3rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(26, 54, 93, 0.1);
      border-bottom: 1px solid rgba(26, 54, 93, 0.1);
      flex-wrap: wrap;
    }

    .stat {
      text-align: left;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--gray-700);
      font-weight: 500;
    }

    .cta-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary {
      background: var(--navy);
      color: white;
      box-shadow: 0 4px 14px rgba(26, 54, 93, 0.3);
    }

    .btn-primary:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
    }

    .btn-secondary:hover {
      background: var(--navy);
      color: white;
    }

    /* Hero Image Section */
    .hero-image {
      position: relative;
      height: 550px;
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      height: 100%;
    }

    .image-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .image-card:nth-child(1) {
      background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=600&h=400&fit=crop');
      grid-row: 1 / 2;
    }

    .image-card:nth-child(2) {
      background-image: url('https://images.unsplash.com/photo-1528605105345-5344ea20e269?w=600&h=400&fit=crop');
      grid-row: 1 / 3;
      grid-column: 2;
    }

    .image-card:nth-child(3) {
      background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=600&h=400&fit=crop');
      grid-row: 2 / 3;
    }

    .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
      font-size: 0.9rem;
      font-weight: 600;
    }

    /* Section Styling */
    .section {
      padding: 6rem 3rem;
      position: relative;
      overflow: visible;
    }
    
    /* Override: Remove top padding when section follows page-hero - MUST come after .section definition */
    .page-hero + .section {
      padding-top: 0 !important;
      padding-bottom: 6rem !important;
      margin-top: 0 !important;
    }
    
    /* Additional aggressive spacing reduction */
    .page-content > .page-hero + .section {
      padding-top: 0 !important;
      margin-top: -1rem !important;
    }

    .section-alt {
      background: var(--gray-50);
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Reduce margin for section-header in regular sections (not page-hero) */
    .section .section-header {
      margin-bottom: 3rem;
    }

    .section-eyebrow {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: var(--navy);
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--gray-700);
      line-height: 1.7;
    }

    /* Spheres Grid - Using Real Logos */
    .spheres-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .sphere-card {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .sphere-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .sphere-card:hover::before {
      transform: scaleX(1);
    }

    .sphere-card:hover {
      transform: translateY(-8px);
      border-color: var(--blue);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .sphere-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sphere-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .sphere-name {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--navy);
    }

    .sphere-description {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .sphere-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(43, 108, 176, 0.1);
      color: var(--blue);
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .status-coming {
      background: rgba(113, 128, 150, 0.1);
      color: var(--gray-700);
    }

    /* Dashboard Preview */
    .dashboard-preview {
      background: white;
      border-radius: 24px;
      padding: 3.5rem;
      border: 2px solid rgba(26, 54, 93, 0.1);
      margin-top: 3rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    /* Education Sphere Card */
    .education-sphere-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      border: 2px solid rgba(49, 151, 149, 0.2);
      margin-top: 2rem;
      box-shadow: 0 8px 30px rgba(49, 151, 149, 0.1);
      border-left: 5px solid #319795;
      width: 100%;
      max-width: 100%;
    }

    .education-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 2px solid rgba(49, 151, 149, 0.1);
      width: 100%;
    }

    .education-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(49, 151, 149, 0.1);
      border-radius: 12px;
      padding: 0.75rem;
      flex-shrink: 0;
    }

    .education-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .education-header-text {
      flex: 1;
      min-width: 0;
    }

    .education-header-text h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .education-header-text p {
      color: var(--gray-700);
      font-size: 0.85rem;
    }

    .education-sphere-card .radar-container {
      gap: 3rem;
      width: 100%;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      align-items: stretch;
    }

    .education-sphere-card .radar-chart {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      align-self: stretch;
      min-width: 0;
    }

    .education-sphere-card .radar-chart svg {
      width: 100%;
      height: 100%;
      max-width: 380px;
      max-height: 380px;
      min-width: 300px;
      aspect-ratio: 1;
    }

    .education-sphere-card .domain-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      align-self: stretch;
      display: grid;
    }

    .education-sphere-card .domain-card {
      padding: 0.875rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 0;
      gap: 0.5rem;
      position: relative;
      cursor: pointer;
    }

    .education-sphere-card .domain-tooltip {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
      background: white;
      border: 2px solid var(--blue);
      border-radius: 12px;
      padding: 1.25rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      min-width: 280px;
      max-width: 320px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 10;
      margin-bottom: 0.5rem;
    }

    .education-sphere-card .domain-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid var(--blue);
    }

    .education-sphere-card .domain-card:hover .domain-tooltip {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .education-sphere-card .domain-tooltip h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .education-sphere-card .domain-tooltip p {
      font-size: 0.875rem;
      color: var(--gray-700);
      line-height: 1.6;
      margin: 0;
    }

    .education-sphere-card .domain-name {
      font-size: 0.75rem;
      margin-bottom: 0.25rem;
      line-height: 1.3;
    }

    .education-sphere-card .domain-score {
      font-size: 1.5rem;
      line-height: 1.2;
    }

    .education-sphere-card .domain-movement {
      font-size: 0.7rem;
      margin-top: auto;
    }

    .education-sphere-card .domain-stage {
      font-size: 0.7rem;
    }

    /* Chart Legend */
    .chart-legend {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(26, 54, 93, 0.1);
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.85rem;
      color: var(--gray-700);
      transition: all 0.3s ease;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
    }

    .legend-item.active {
      background: rgba(49, 151, 149, 0.1);
      color: #319795;
      font-weight: 600;
    }

    .legend-line {
      width: 40px;
      height: 3px;
      border-radius: 2px;
    }

    .legend-line.pre {
      background: #319795;
      opacity: 0.4;
      border-top: 2px dashed #319795;
      background: transparent;
      height: 0;
      border-radius: 0;
    }

    .legend-line.mid {
      background: #319795;
      opacity: 0.6;
    }

    .legend-line.post {
      background: #319795;
      opacity: 0.9;
    }

    .radar-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .radar-chart {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .radar-chart svg {
      display: block;
      width: 100%;
      max-width: 400px;
      height: auto;
    }

    .domain-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .domain-card {
      background: var(--gray-50);
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid rgba(26, 54, 93, 0.1);
      transition: all 0.3s ease;
    }

    .domain-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .domain-name {
      font-size: 0.85rem;
      color: var(--gray-700);
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.3;
    }

    .domain-score {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      display: inline-block;
    }

    .domain-movement {
      font-size: 0.9rem;
      color: var(--green);
      margin-top: 0.75rem;
      font-weight: 600;
    }

    /* Week Carousel Container */
    .week-carousel-container {
      margin-top: 3rem;
      position: relative;
      z-index: 1;
    }

    .week-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      z-index: 1;
    }

    /* Week Preview Cards */
    .week-preview {
      background: white;
      border-radius: 24px;
      padding: 3.5rem;
      border: 2px solid rgba(26, 54, 93, 0.1);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      display: block;
      transition: opacity 0.4s ease;
    }

    /* Sphere-specific colors */
    .week-card-family {
      border-left: 6px solid #E53E3E;
      background: linear-gradient(to right, rgba(229, 62, 62, 0.03) 0%, white 8%);
    }

    .week-card-economics {
      border-left: 6px solid #ED8936;
      background: linear-gradient(to right, rgba(237, 137, 54, 0.03) 0%, white 8%);
    }

    .week-card-family .week-number {
      color: #E53E3E;
    }

    .week-card-economics .week-number {
      color: #ED8936;
    }

    .week-header {
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid var(--gray-50);
    }

    .week-number {
      font-size: 0.9rem;
      color: var(--blue);
      margin-bottom: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .week-title {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .week-subtitle {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .video-section h4 {
      margin-bottom: 1.5rem;
      color: var(--navy);
      font-size: 1.1rem;
      font-weight: 700;
    }

    .video-group {
      background: var(--gray-50);
      border-radius: 16px;
      padding: 1.5rem;
      margin-bottom: 1rem;
    }

    .video-group-label {
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .video-card {
      background: white;
      border-radius: 12px;
      padding: 1.25rem;
      margin-bottom: 0.75rem;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      user-select: none;
    }

    .video-card:last-child {
      margin-bottom: 0;
    }

    .video-card:hover {
      border-color: var(--blue);
      transform: translateX(4px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .video-info h5 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
      color: var(--navy);
      font-weight: 600;
    }

    .video-info p {
      color: var(--gray-700);
      font-size: 0.9rem;
    }

    .play-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: white;
      transition: all 0.3s ease;
      flex-shrink: 0;
      pointer-events: none;
    }

    .video-card:hover .play-btn {
      background: var(--navy);
      transform: scale(1.1);
    }

    .reflection-prompt {
      background: linear-gradient(135deg, rgba(43, 108, 176, 0.05), rgba(49, 151, 149, 0.05));
      padding: 2rem;
      border-radius: 16px;
      border-left: 4px solid var(--blue);
      margin-top: 2rem;
    }

    .reflection-prompt p {
      color: var(--gray-700);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    .sphere-integration-card {
      background: white;
      border: 2px solid rgba(26, 54, 93, 0.1);
      border-radius: 16px;
      padding: 2.5rem;
      margin-top: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .sphere-integration-card:hover {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .sphere-integration-content {
      text-align: center;
    }

    .sphere-integration-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .sphere-integration-description {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .sphere-integration-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--navy);
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(26, 54, 93, 0.3);
    }

    .sphere-integration-link:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
    }


    /* Course Text Section */
    .course-text-section {
      margin-top: 0.5rem;
      padding-top: 0;
      border-top: none;
    }

    .course-text-content {
      background: var(--gray-50);
      padding: 1.5rem 2.5rem 2.5rem 2.5rem;
      border-radius: 16px;
      line-height: 1.9;
      color: var(--gray-700);
    }

    .course-text-content p {
      margin-bottom: 1.25rem;
      font-size: 1rem;
    }

    .course-text-content strong {
      color: var(--navy);
      font-weight: 700;
    }

    /* Scripture Cards */
    .scripture-card {
      background: rgba(235, 248, 255, 0.4);
      border-left: 3px solid;
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      position: relative;
    }

    .scripture-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .scripture-card-content {
      flex: 1;
    }

    .scripture-card p {
      margin: 0 0 0.75rem 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .scripture-card em {
      font-style: italic;
    }

    .scripture-card strong {
      font-weight: 700;
      display: inline;
      margin-right: 0.5rem;
    }

    .scripture-card-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.5rem;
      color: #718096;
      font-size: 0.85rem;
    }

    .scripture-sphere-number {
      font-weight: 600;
      color: #718096;
    }

    .scripture-title {
      color: #718096;
      font-style: italic;
    }

    .scripture-play-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: white;
      transition: all 0.3s ease;
      flex-shrink: 0;
      cursor: pointer;
      margin-top: 0.25rem;
    }

    /* Only show play button on scripture cards with video data */
    .scripture-card:not([data-video-url]) .scripture-play-btn {
      display: none;
    }

    .scripture-card:hover .scripture-play-btn {
      background: var(--navy);
      transform: scale(1.1);
    }

    /* Sphere-specific colors */
    .scripture-card-family {
      border-left-color: #E53E3E;
      background: rgba(229, 62, 62, 0.08);
    }

    .scripture-card-economics {
      border-left-color: #ED8936;
      background: rgba(237, 137, 54, 0.08);
    }

    .discussion-section {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(26, 54, 93, 0.1);
    }

    .discussion-section ul {
      margin-top: 1rem;
      padding-left: 1.5rem;
    }

    .discussion-section li {
      margin-bottom: 0.75rem;
      line-height: 1.7;
    }

    /* Sphereview Link */
    .sphereview-link {
      margin-top: 2.5rem;
      text-align: center;
    }

    /* YouTube Video Popup */
    .video-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.85);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      backdrop-filter: blur(5px);
    }

    .video-popup-overlay.active {
      display: flex;
    }

    .video-popup-container {
      position: relative;
      width: 90%;
      max-width: 900px;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .video-popup-overlay.active .video-popup-container {
      transform: scale(1);
    }

    .video-popup-container.compact {
      max-width: 560px;
    }

    .video-popup-container.fullscreen {
      width: 100%;
      max-width: 100%;
      height: 100vh;
      border-radius: 0;
    }

    .video-popup-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 1.5rem 1.5rem 1rem;
      background: white;
      border-bottom: 1px solid var(--gray-50);
    }

    .video-popup-title-section {
      flex: 1;
    }

    .video-popup-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 0.5rem 0;
    }

    .video-popup-scripture {
      font-size: 0.95rem;
      color: var(--gray-700);
      margin: 0;
    }

    .video-popup-controls {
      display: flex;
      gap: 0.75rem;
    }

    .video-popup-btn {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      color: var(--navy);
      padding: 0.5rem 1rem;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.2s ease;
    }

    .video-popup-btn:hover {
      background: var(--blue);
      color: white;
      border-color: var(--blue);
    }

    .video-popup-close {
      background: transparent;
      border: none;
      color: var(--gray-600);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.2s ease;
      line-height: 1;
    }

    .video-popup-close:hover {
      background: var(--gray-100);
      color: var(--navy);
    }

    .video-popup-iframe-container {
      background: #000;
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-popup-iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: none;
      display: block;
    }

    .video-popup-fallback {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.9);
      z-index: 10;
    }

    .video-popup-container.fullscreen .video-popup-iframe {
      height: calc(100vh - 120px);
      aspect-ratio: auto;
    }

    /* Transformation Flow Section */
    .transformation-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      margin: 3rem 0;
      flex-wrap: wrap;
      flex: 1;
    }

    .flow-step {
      flex: 1;
      min-width: 250px;
      max-width: 320px;
      text-align: center;
      padding: 0;
      background: white;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .flow-step-image {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    .flow-step-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    }

    .flow-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--blue);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 800;
      margin: -30px auto 1.5rem;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .flow-step h3,
    .flow-step p {
      padding: 0 2rem;
    }

    .flow-step p {
      padding-bottom: 2rem;
    }

    .flow-step h3 {
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .flow-step p {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .flow-arrow {
      font-size: 2rem;
      color: var(--blue);
      font-weight: 700;
    }

    /* Transformation Carousel */
    .transformation-carousel-container {
      margin-top: 3rem;
      position: relative;
      z-index: 2;
    }

    .transformation-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      z-index: 2;
    }

    .transformation-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .transformation-card {
      background: white;
      border-radius: 24px;
      padding: 3.5rem;
      border: 2px solid rgba(26, 54, 93, 0.1);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      display: none;
      transition: opacity 0.4s ease;
      min-height: 600px;
      align-items: stretch;
    }

    .transformation-card.active {
      display: flex;
      animation: fadeInUp 0.6s ease-out;
    }

    .transformation-card-content {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    /* Course Overview Card Styles */
    .course-overview-header {
      text-align: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid var(--gray-50);
    }

    .course-overview-header h3 {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .course-overview-intro {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
    }

    .course-flow-diagram {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2rem;
      flex: 1;
    }

    .flow-community-text {
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .flow-community-text h4 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0;
    }

    .flow-box {
      background: var(--navy);
      color: white;
      border-radius: 16px;
      padding: 2rem 2.5rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(26, 54, 93, 0.2);
      min-width: 400px;
      max-width: 600px;
      width: 100%;
    }

    /* Premium Sphere Box Style */
    .premium-sphere-box {
      background: white;
      color: var(--navy);
      border-radius: 20px;
      padding: 2.5rem;
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      text-align: left;
      min-width: 100%;
      max-width: 100%;
    }

    /* Colored left edge for PART 1 and PART 2 cards */
    .flow-box-part1 {
      border-left: 4px solid var(--blue);
    }

    .flow-box-part2 {
      border-left: 4px solid var(--teal);
    }

    .premium-sphere-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .premium-sphere-box:hover::before {
      transform: scaleX(1);
    }

    .premium-sphere-box:hover {
      transform: translateY(-8px);
      border-color: var(--blue);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .premium-sphere-box .flow-box-content h4 {
      color: var(--navy);
      text-align: left;
      margin-bottom: 0.5rem;
    }

    .premium-sphere-box .flow-box-subtitle {
      color: var(--gray-700);
      opacity: 1;
      text-align: left;
      margin-bottom: 1rem;
    }

    .premium-sphere-box .flow-box-description {
      color: var(--gray-700);
      opacity: 1;
      text-align: left;
      margin-bottom: 1.5rem;
    }

    .flow-box-content h4 {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .flow-box-subtitle {
      font-size: 0.9rem;
      opacity: 0.9;
      margin-top: 0.5rem;
      font-weight: 400;
    }

    .flow-box-description {
      font-size: 0.95rem;
      margin-top: 1rem;
      line-height: 1.6;
      opacity: 0.95;
      font-weight: 400;
    }

    .flow-box-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .flow-arrow-vertical {
      width: 4px;
      height: 40px;
      background: var(--blue);
      border-radius: 2px;
      position: relative;
    }

    .flow-arrow-vertical::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 12px solid var(--blue);
    }

    /* Spheres within PART 2 box */
    .spheres-in-box {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--gray-50);
    }

    .sphere-in-box-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      flex: 0 0 calc(14.28% - 0.86rem);
      min-width: 80px;
    }

    .sphere-in-box-item img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .premium-sphere-box:hover .sphere-in-box-item img {
      transform: scale(1.1);
    }

    .sphere-in-box-item span {
      color: var(--gray-700);
      font-size: 0.75rem;
      font-weight: 600;
      text-align: center;
    }

    /* Journey Card Styles */
    .journey-header {
      text-align: center;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid var(--gray-50);
    }

    .journey-header h3 {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .journey-subtitle {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
    }

    .journey-weeks-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
      flex: 1;
    }

    .journey-week-card {
      background: linear-gradient(135deg, rgba(237, 137, 54, 0.05) 0%, rgba(237, 137, 54, 0.02) 100%);
      border: 2px solid rgba(237, 137, 54, 0.15);
      border-left: 4px solid #ED8936;
      border-radius: 16px;
      padding: 1.75rem;
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      transition: all 0.3s ease;
    }

    .journey-week-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(237, 137, 54, 0.15);
      border-color: rgba(237, 137, 54, 0.3);
    }

    .journey-week-icon {
      font-size: 2.5rem;
      flex-shrink: 0;
      line-height: 1;
    }

    .journey-week-content {
      flex: 1;
    }

    .journey-week-label {
      display: block;
      font-size: 0.75rem;
      color: #ED8936;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .journey-week-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      line-height: 1.4;
    }

    /* Renewal Card Styles */
    .renewal-header {
      text-align: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid var(--gray-50);
    }

    .renewal-header h3 {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .renewal-subtitle {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Formation Principles */
    .formation-principles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .principle-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      border: 2px solid rgba(26, 54, 93, 0.1);
      transition: all 0.3s ease;
    }

    .principle-card:hover {
      border-color: var(--blue);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .principle-card h4 {
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
      font-weight: 700;
    }

    .principle-card p {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Domains Explanation */
    .domains-explanation {
      margin-bottom: 3rem;
    }

    .domain-explanation-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .domain-explanation-card {
      background: rgba(43, 108, 176, 0.05);
      padding: 1.75rem;
      border-radius: 12px;
      border-left: 4px solid var(--blue);
    }

    .domain-explanation-card h4 {
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
      font-weight: 700;
    }

    .domain-explanation-card p {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 0.9rem;
    }

    /* Week Carousel Navigation */
    .week-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin: 2rem 0 1rem;
    }

    .week-carousel-nav-top {
      margin-top: 0;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    }

    .carousel-nav-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(26, 54, 93, 0.2);
      background: white;
      color: var(--gray-700);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-weight: 700;
    }

    .carousel-nav-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(43, 108, 176, 0.05);
    }

    .carousel-nav-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .carousel-dots {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .carousel-dot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      border: none;
      background: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0.5rem 0.75rem;
      border-radius: 8px;
    }

    .carousel-dot:hover {
      background: rgba(26, 54, 93, 0.05);
    }

    .carousel-dot .dot-label {
      font-size: 0.85rem;
      color: var(--gray-700);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .carousel-dot::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(26, 54, 93, 0.2);
      transition: all 0.3s ease;
    }

    .carousel-dot.active::before {
      background: var(--blue);
      width: 10px;
      height: 10px;
    }

    .carousel-dot.active .dot-label {
      color: var(--blue);
      font-weight: 600;
    }

    /* Final Quote Section */
    .final-quote-section {
      position: relative;
      padding: 6rem 3rem;
      text-align: center;
      background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(49, 151, 149, 0.75) 100%),
                  url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
      background-blend-mode: overlay;
      color: white;
      margin-top: 4rem;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .final-quote-section.fade-in {
      opacity: 1;
      transform: translateY(0);
    }

    .final-quote-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(26, 54, 93, 0.7) 0%, rgba(49, 151, 149, 0.6) 100%);
      z-index: 0;
    }

    .final-quote-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .final-quote-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .final-quote-text {
      font-size: 1.25rem;
      line-height: 1.8;
      margin-bottom: 1rem;
      font-style: italic;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .final-quote-citation {
      font-size: 1rem;
      opacity: 0.95;
      font-weight: 500;
      margin-top: 1rem;
    }

    /* Footer */
    footer {
      padding: 4rem 3rem 2rem;
      text-align: center;
      border-top: 2px solid var(--gray-50);
      background: white;
    }

    footer p {
      color: var(--gray-700);
      font-size: 0.95rem;
    }

    /* Menu Item Modals (Dropdown from top) */
    .menu-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      z-index: 10001;
      backdrop-filter: blur(5px);
      overflow-y: auto;
    }

    .menu-modal-overlay.active {
      display: block;
    }

    .menu-modal-container {
      background: white;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: menuModalSlideDown 0.4s ease-out;
      min-height: 100vh;
    }

    @keyframes menuModalSlideDown {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .menu-modal-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: var(--gray-50);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.75rem;
      color: var(--gray-700);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .menu-modal-close:hover {
      background: var(--gray-700);
      color: white;
      transform: rotate(90deg);
    }

    .menu-modal-content {
      padding: 6rem 3rem 4rem;
    }

    .menu-modal-content .section-header {
      margin-bottom: 3rem;
    }

    @media (max-width: 1440px) {
      .menu-modal-container {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .menu-modal-container {
        max-width: 100%;
      }

      .menu-modal-content {
        padding: 5rem 1.5rem 3rem;
      }

      .menu-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
      }
    }

    /* Course Topics Modal Styles */
    .course-topics-hero {
      background: linear-gradient(135deg, rgba(43, 108, 176, 0.05) 0%, rgba(49, 151, 149, 0.05) 100%);
      padding: 3rem 2rem;
      border-radius: 20px;
      margin-bottom: 3rem;
      text-align: center;
    }
    .course-topics-hero h2 {
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 1rem;
      font-weight: 800;
    }
    .course-topics-hero .subtitle {
      font-size: 1.3rem;
      color: var(--blue);
      font-weight: 600;
      margin-bottom: 2rem;
    }
    .course-topics-hero p {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto;
    }
    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }
    .outcome-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .outcome-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .outcome-card:hover::before {
      transform: scaleX(1);
    }
    .outcome-card:hover {
      transform: translateY(-8px);
      border-color: var(--blue);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
    .outcome-card strong {
      color: var(--navy);
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.75rem;
    }
    .outcome-card p {
      color: var(--gray-700);
      line-height: 1.7;
      margin: 0;
    }
    .sourceview-highlight {
      background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(49, 151, 149, 0.1));
      padding: 2rem;
      border-radius: 16px;
      border-left: 4px solid var(--blue);
      margin: 2rem 0;
    }
    .sourceview-highlight p {
      color: var(--gray-700);
      line-height: 1.8;
      margin: 0;
    }
    .part-section {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      margin: 2rem 0;
      border: 2px solid transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .part-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .part-section:hover::before {
      transform: scaleX(1);
    }
    .part-section:hover {
      transform: translateY(-4px);
      border-color: var(--blue);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
    .part-section h3 {
      color: var(--navy);
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .week-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    .week-list li {
      padding: 1rem 1.5rem;
      margin-bottom: 0.75rem;
      background: var(--gray-50);
      border-radius: 12px;
      border-left: 4px solid var(--blue);
      transition: all 0.3s ease;
      color: var(--gray-700);
    }
    .week-list li:hover {
      background: rgba(43, 108, 176, 0.1);
      transform: translateX(4px);
      border-left-color: var(--teal);
    }
    .week-list li strong {
      color: var(--navy);
      font-weight: 600;
    }
    .table-container {
      overflow-x: auto;
      margin: 2rem 0;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .course-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      min-width: 800px;
    }
    .course-table thead {
      background: linear-gradient(135deg, var(--navy), var(--blue));
      color: white;
    }
    .course-table th {
      padding: 1.25rem 1rem;
      text-align: left;
      font-weight: 600;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .course-table td {
      padding: 1.25rem 1rem;
      border-bottom: 1px solid rgba(26, 54, 93, 0.1);
      color: var(--gray-700);
      transition: background 0.3s ease;
    }
    .course-table tbody tr:hover {
      background: rgba(43, 108, 176, 0.05);
    }
    .course-table tbody tr:last-child td {
      border-bottom: none;
    }
    .week-number {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.9rem;
    }
    .why-enroll {
      background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(49, 151, 149, 0.1));
      padding: 3rem;
      border-radius: 20px;
      margin-top: 3rem;
      text-align: center;
      border: 2px solid rgba(43, 108, 176, 0.2);
    }
    .why-enroll h3 {
      font-size: 2rem;
      color: var(--navy);
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .why-enroll p {
      font-size: 1.2rem;
      color: var(--gray-700);
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
    }
    .why-enroll p strong {
      color: var(--blue);
      font-weight: 700;
    }

    /* Floating Sign-Up Button */
    .floating-signup-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--navy);
      color: white;
      padding: 1rem 1.75rem;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(26, 54, 93, 0.4);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      z-index: 9999;
      transition: all 0.3s ease;
      font-weight: 600;
      font-size: 1rem;
      border: none;
    }

    .floating-signup-btn:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(26, 54, 93, 0.5);
    }

    .signup-btn-icon {
      transition: transform 0.3s ease;
    }

    .floating-signup-btn:hover .signup-btn-icon {
      transform: rotate(90deg);
    }

    /* Sign-Up Modal */
    .signup-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      backdrop-filter: blur(5px);
      padding: 2rem;
    }

    .signup-modal-overlay.active {
      display: flex;
    }

    /* Login Modal */
    .login-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10001;
      backdrop-filter: blur(5px);
      padding: 2rem;
    }

    .login-modal-overlay.active {
      display: flex;
    }

    .login-modal-container {
      background: white;
      border-radius: 24px;
      max-width: 480px;
      width: 100%;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: modalSlideIn 0.3s ease-out;
    }

    .login-modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--gray-50);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--gray-700);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .login-modal-close:hover {
      background: var(--gray-700);
      color: white;
    }

    .login-modal-content {
      padding: 3rem;
    }

    .login-modal-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .login-modal-subtitle {
      font-size: 1rem;
      color: var(--gray-700);
      text-align: center;
      margin-bottom: 2rem;
    }

    .login-options {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .login-google-btn {
      width: 100%;
      padding: 0.875rem 1.5rem;
      background: white;
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--gray-700);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      transition: all 0.3s ease;
    }

    .login-google-btn:hover {
      border-color: var(--blue);
      background: var(--gray-50);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .login-divider {
      position: relative;
      text-align: center;
      margin: 0.5rem 0;
    }

    .login-divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gray-200);
    }

    .login-divider span {
      background: white;
      padding: 0 1rem;
      color: var(--gray-500);
      font-size: 0.9rem;
      position: relative;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
    }

    .form-group input {
      padding: 0.875rem 1rem;
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
    }

    .form-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      color: var(--gray-700);
    }

    .remember-me input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: var(--blue);
    }

    .forgot-password {
      color: var(--blue);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .forgot-password:hover {
      color: var(--navy);
      text-decoration: underline;
    }

    .login-submit-btn {
      width: 100%;
      padding: 0.875rem 2rem;
      background: var(--navy);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    .login-submit-btn:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    .login-footer {
      text-align: center;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--gray-200);
    }

    .login-footer p {
      color: var(--gray-700);
      font-size: 0.95rem;
    }

    .login-footer a {
      color: var(--blue);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .login-footer a:hover {
      color: var(--navy);
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .login-modal-container {
        margin: 1rem;
        max-width: 100%;
      }

      .login-modal-content {
        padding: 2rem 1.5rem;
      }

      .login-modal-title {
        font-size: 1.5rem;
      }
    }

    .signup-modal-container {
      background: white;
      border-radius: 24px;
      max-width: 800px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .signup-modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--gray-50);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--gray-700);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .signup-modal-close:hover {
      background: var(--gray-700);
      color: white;
    }

    .signup-modal-content {
      padding: 3rem;
    }

    .signup-modal-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .signup-modal-subtitle {
      font-size: 1.1rem;
      color: var(--gray-700);
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .signup-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .signup-option-card {
      background: var(--gray-50);
      border: 2px solid transparent;
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: default;
    }

    .signup-option-card:hover {
      border-color: var(--blue);
      background: white;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .signup-option-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .signup-option-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .signup-option-description {
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .signup-option-btn {
      background: var(--navy);
      color: white;
      border: none;
      padding: 0.875rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .signup-option-btn:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .floating-signup-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
      }

      .signup-btn-text {
        display: none;
      }

      .signup-modal-container {
        margin: 1rem;
        max-height: 95vh;
      }

      .signup-modal-content {
        padding: 2rem 1.5rem;
      }

      .signup-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .signup-modal-title {
        font-size: 1.5rem;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeChartState {
      0%, 100% {
        opacity: 1;
      }
      33.33% {
        opacity: 0;
      }
      66.66% {
        opacity: 0;
      }
    }

    @keyframes fadeChartStateMid {
      0%, 100% {
        opacity: 0;
      }
      33.33% {
        opacity: 1;
      }
      66.66% {
        opacity: 0;
      }
    }

    @keyframes fadeChartStatePost {
      0%, 100% {
        opacity: 0;
      }
      33.33% {
        opacity: 0;
      }
      66.66% {
        opacity: 1;
      }
    }

    /* Animated chart states - only one visible at a time */
    #preState {
      animation: fadeChartState 9s ease-in-out infinite;
    }

    #midState {
      animation: fadeChartStateMid 9s ease-in-out infinite;
    }

    #postState {
      animation: fadeChartStatePost 9s ease-in-out infinite;
    }

    .chart-state {
      transition: opacity 1s ease-in-out;
    }

    .domain-score-container {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .education-sphere-card .domain-score-container {
      gap: 0.5rem;
      margin-bottom: 0.25rem;
      flex-wrap: wrap;
    }

    .domain-stage {
      font-size: 0.75rem;
      color: var(--gray-700);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .domain-score {
      transition: all 0.8s ease-in-out;
    }

    .domain-movement {
      min-height: 1.2rem;
      transition: opacity 0.5s ease-in-out;
    }

    .fade-in {
      animation: fadeInUp 0.8s ease-out;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-image {
        height: 400px;
      }

      .radar-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
      }

      .nav-login {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
      }

      .hero {
        padding: 6rem 1.5rem 3rem;
      }

      .section {
        padding: 4rem 1.5rem;
      }

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

      .dashboard-preview,
      .week-preview {
        padding: 2rem 1.5rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
      }

      .domain-cards {
        grid-template-columns: 1fr;
      }

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

      .image-card:nth-child(2) {
        grid-row: auto;
        grid-column: auto;
      }


      .course-text-content {
        padding: 1.5rem;
      }

      .video-popup-container {
        width: 95%;
      }

      .transformation-flow {
        flex-direction: column;
      }

      .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
      }

      .flow-step-image {
        height: 180px;
      }

      .flow-step h3,
      .flow-step p {
        padding: 0 1.5rem;
      }

      .formation-principles {
        grid-template-columns: 1fr;
      }

      .transformation-card {
        padding: 2rem 1.5rem;
        min-height: auto;
      }

      .course-overview-header h3,
      .journey-header h3,
      .renewal-header h3 {
        font-size: 1.75rem;
      }

      .flow-community-text h4 {
        font-size: 1.25rem;
      }

      .premium-sphere-box {
        padding: 1.5rem;
        min-width: 100%;
      }

      .premium-sphere-box .flow-box-content h4 {
        font-size: 1.1rem;
      }

      .spheres-in-box {
        gap: 0.75rem;
      }

      .sphere-in-box-item {
        flex: 0 0 calc(33.33% - 0.5rem);
        min-width: 70px;
      }

      .sphere-in-box-item img {
        width: 40px;
        height: 40px;
      }

      .sphere-in-box-item span {
        font-size: 0.7rem;
      }

      .journey-weeks-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .journey-week-card {
        padding: 1.25rem;
      }

      .journey-week-icon {
        font-size: 2rem;
      }

      .journey-week-content h4 {
        font-size: 1rem;
      }

      .domain-explanation-grid {
        grid-template-columns: 1fr;
      }

      @media (min-width: 1024px) {
        .domain-explanation-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .week-carousel-nav {
        flex-wrap: wrap;
        gap: 1rem;
      }

      .education-sphere-card {
        padding: 1.5rem;
      }

      .education-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
      }

      .education-icon {
        width: 50px;
        height: 50px;
      }

      .education-sphere-card .radar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      @media (min-width: 1024px) {
        .education-sphere-card .radar-container {
          grid-template-columns: 1.3fr 1fr;
        }
      }

      .education-sphere-card .radar-chart svg {
        max-width: 100%;
        min-width: 250px;
      }

      .education-sphere-card .domain-cards {
        grid-template-columns: 1fr;
      }

      .chart-legend {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
      }

      .carousel-dots {
        gap: 0.75rem;
      }

      .carousel-dot {
        padding: 0.25rem 0.5rem;
      }

      .final-quote-section {
        padding: 4rem 2rem;
      }

      .final-quote-title {
        font-size: 2rem;
      }

      .final-quote-text {
        font-size: 1.1rem;
      }

      .carousel-dot .dot-label {
        font-size: 0.75rem;
      }
    }
