/* ==========================================================================
   Iran SuJok Academy - learn.css
   External Page Stylesheet
   ========================================================================== */

/* --- Source: learn/index.html --- */
* {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: var(--text-main, #082b3a);
      background: var(--bg-gradient);
      line-height: 1.9;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .shell {
      width: min(1220px, calc(100% - 36px));
      margin: auto;
    }

    /* ==========================================
       HERO SECTION STYLES
       ========================================== */
    .hero {
      padding: 70px 0 60px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #052a36 0%, #083b4c 50%, #0e9ca8 100%) !important;
      color: #ffffff !important;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding: 7px 16px;
      border: 1px solid rgba(21, 202, 219, 0.35);
      border-radius: 999px;
      color: #15cadb;
      background: rgba(21, 202, 219, 0.15);
      backdrop-filter: blur(8px);
      font-weight: 800;
      font-size: 0.9rem;
    }

    .hero h1, .hero-title {
      font-size: clamp(1.8rem, 3.8vw, 2.7rem) !important;
      line-height: 1.35 !important;
      margin: 16px 0 !important;
      font-weight: 900 !important;
      color: #ffffff !important;
      letter-spacing: -0.5px;
    }

    .hero p, .hero-description {
      font-size: 1rem !important;
      color: #d1e4ec !important;
      max-width: 720px;
      line-height: 1.9 !important;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 24px;
      border-radius: 16px;
      font-weight: 800;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--teal-main, #0e9ca8), var(--primary-deep, #083b4c));
      color: #ffffff;
      box-shadow: 0 12px 30px rgba(14, 156, 168, 0.28);
    }

    .btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(14, 156, 168, 0.38);
    }

    .btn.secondary {
      background: #ffffff;
      color: var(--primary-dark, #052a36);
      border-color: var(--border-color, rgba(14, 156, 168, 0.2));
      box-shadow: 0 4px 16px rgba(5, 42, 54, 0.05);
    }

    .btn.secondary:hover {
      background: var(--teal-light, #e6f9fa);
      border-color: var(--teal-main, #0e9ca8);
      color: var(--teal-main, #0e9ca8);
      transform: translateY(-2px);
    }

    .hero-art {
      position: relative;
    }

    .hero-art::before {
      content: "";
      position: absolute;
      inset: 6% -6% -6% 6%;
      background: linear-gradient(135deg, var(--teal-main, #0e9ca8), var(--accent-gold, #e5a93b));
      border-radius: 38% 62% 56% 44%/46% 39% 61% 54%;
      opacity: 0.12;
      filter: blur(20px);
    }

    .hero-art img {
      position: relative;
      border-radius: 28px;
      box-shadow: var(--shadow-lg, 0 20px 48px rgba(14, 156, 168, 0.15));
      border: 4px solid #ffffff;
      transform: rotate(-1deg);
      transition: transform 0.5s ease;
    }

    .hero-art img:hover {
      transform: rotate(0deg) scale(1.02);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 36px;
    }

    .stat {
      padding: 16px;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color, rgba(14, 156, 168, 0.15));
      border-radius: 18px;
      transition: transform 0.25s ease;
    }

    .stat:hover {
      transform: translateY(-3px);
      background: #ffffff;
      border-color: var(--teal-main);
    }

    .stat strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--primary-dark, #052a36);
    }

    .stat span {
      display: block;
      font-size: 0.82rem;
      color: var(--text-muted, #486875);
      margin-top: 2px;
    }

    /* ==========================================
       INTRO BANNER
       ========================================== */
    .intro {
      padding: 20px 0 60px;
    }

    .introbox {
      background: linear-gradient(135deg, var(--primary-dark, #052a36) 0%, var(--primary-deep, #083b4c) 60%, var(--teal-main, #0e9ca8) 100%);
      color: #ffffff;
      border-radius: 28px;
      padding: 38px 44px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .introbox::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      pointer-events: none;
    }

    .introbox h2 {
      font-size: 1.7rem;
      font-weight: 900;
      margin: 0 0 10px;
      color: #ffffff;
    }

    .introbox p {
      margin: 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.05rem;
      line-height: 1.95;
    }

    /* ==========================================
       LEARNING HUB MODULES SECTION (Fixed Styles)
       ========================================== */
    .hub-section {
      padding: 70px 0 50px;
      background: rgba(255, 255, 255, 0.65);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .hub-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 28px;
      margin-top: 40px;
    }

    .hub-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .hub-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--teal-main);
    }

    .hub-card-top {
      margin-bottom: 22px;
    }

    .hub-badge {
      display: inline-block;
      padding: 5px 14px;
      background: var(--teal-light);
      color: var(--teal-main);
      border: 1px solid rgba(14, 156, 168, 0.2);
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .hub-title {
      font-size: 1.35rem;
      font-weight: 900;
      color: var(--primary-dark);
      margin: 0 0 12px;
      line-height: 1.4;
    }

    .hub-desc {
      font-size: 0.96rem;
      color: var(--text-muted);
      line-height: 1.9;
      margin: 0 0 16px;
    }

    .hub-img-preview {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      margin: 12px 0 18px;
      background: #ffffff;
      padding: 6px;
    }

    .hub-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      background: var(--teal-main);
      color: #ffffff;
      border-radius: 14px;
      font-weight: 800;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s ease;
      align-self: flex-start;
      box-shadow: 0 6px 18px rgba(14, 156, 168, 0.2);
    }

    .hub-btn:hover {
      background: var(--primary-dark);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(5, 42, 54, 0.25);
    }

    /* ==========================================
       8-STEP PATH ROADMAP STYLES
       ========================================== */
    .path {
      padding: 80px 0 40px;
    }

    .section-head {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    .section-head h2 {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--primary-dark);
      margin: 0 0 12px;
    }

    .section-head p {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin: 0;
      line-height: 1.9;
    }

    .step {
      display: grid;
      grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
      gap: 50px;
      align-items: center;
      padding: 50px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .step:last-child {
      border-bottom: none;
    }

    .step:nth-child(even) .visual {
      order: 2;
    }

    .visual {
      position: relative;
    }

    .visual img {
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      border: 3px solid #ffffff;
      transition: transform 0.4s ease;
    }

    .visual img:hover {
      transform: scale(1.02);
    }

    .num {
      position: absolute;
      top: -18px;
      right: -18px;
      width: 60px;
      height: 60px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
      display: grid;
      place-items: center;
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 1.4rem;
      box-shadow: 0 10px 24px rgba(229, 169, 59, 0.35);
      border: 2px solid #ffffff;
    }

    .copy .kicker {
      color: var(--accent-gold);
      font-weight: 900;
      font-size: 0.92rem;
      display: inline-block;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .copy h3 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      line-height: 1.4;
      margin: 4px 0 14px;
      color: var(--primary-dark);
      font-weight: 900;
    }

    .copy p {
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.95;
    }

    .points {
      display: grid;
      gap: 10px;
      margin-top: 20px;
    }

    .point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.96rem;
      color: var(--text-main);
      font-weight: 600;
    }

    .point::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 auto;
      margin-top: 11px;
      border-radius: 50%;
      background: var(--teal-main);
      box-shadow: 0 0 0 5px rgba(14, 156, 168, 0.18);
    }

    /* ==========================================
       VIDEO SHOWCASE SECTION
       ========================================== */
    .video-section {
      padding: 80px 0;
      background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
      color: #ffffff;
    }

    .video-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 30px;
      padding: 32px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    video {
      width: 100%;
      max-height: 520px;
      border-radius: 20px;
      background: #000000;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
      outline: none;
    }

    .video-title {
      padding: 24px 10px 6px;
    }

    .video-title h2 {
      font-size: 1.8rem;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .video-title p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.02rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.9;
    }

    /* ==========================================
       INSTRUCTOR SHOWCASE
       ========================================== */
    .instructor-section {
      padding: 80px 0;
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .instructor-single-card {
      background: linear-gradient(135deg, var(--teal-light) 0%, #ffffff 100%);
      border: 1px solid var(--border-color);
      border-radius: 30px;
      padding: 44px;
      box-shadow: var(--shadow-md);
      max-width: 980px;
      margin: 0 auto;
    }

    .instructor-layout-grid {
      display: grid;
      grid-template-columns: 270px 1fr;
      gap: 40px;
      align-items: center;
    }

    /* ==========================================
       FAQ ACCORDION STYLES
       ========================================== */
    .faq-section {
      padding: 80px 0;
    }

    .faq-container {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.3s ease;
    }

    .faq-item.active {
      border-color: var(--teal-main);
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      width: 100%;
      text-align: right;
      background: none;
      border: none;
      padding: 20px 24px;
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--primary-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: inherit;
    }

    .faq-icon {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      color: var(--teal-main);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 24px;
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.95;
      background: rgba(244, 249, 250, 0.5);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px 24px;
      border-top: 1px dashed var(--border-color);
    }

    /* ==========================================
       CTA & FOOTER WRAPPER
       ========================================== */
    .cta {
      padding: 40px 0 90px;
    }

    .cta-card {
      text-align: center;
      background: linear-gradient(135deg, #ffffff 0%, var(--teal-light) 100%);
      border: 1px solid var(--border-color);
      border-radius: 32px;
      padding: 56px 30px;
      box-shadow: var(--shadow-lg);
    }

    .cta-card h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--primary-dark);
      margin: 0 0 12px;
    }

    .contact {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .chip {
      padding: 12px 20px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      font-weight: 800;
      color: var(--primary-dark);
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
    }

    .chip:hover {
      border-color: var(--teal-main);
      color: var(--teal-main);
      transform: translateY(-2px);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.on {
      opacity: 1;
      transform: none;
    }

    /* ==========================================
       RESPONSIVE BREAKPOINTS
       ========================================== */
    @media(max-width: 900px) {
      .hero-grid,
      .step,
      .introbox,
      .instructor-layout-grid {
        grid-template-columns: 1fr;
      }

      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero {
        padding-top: 45px;
      }

      .hero-art {
        max-width: 540px;
        margin: auto;
      }

      .step:nth-child(even) .visual {
        order: 0;
      }

      .step {
        gap: 30px;
      }

      .copy {
        text-align: right;
      }

      .instructor-single-card {
        padding: 30px 20px;
        text-align: center;
      }
    }

    @media(max-width: 560px) {
      .shell {
        width: min(100% - 24px, 1220px);
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .actions .btn {
        width: 100%;
      }

      .step {
        padding: 36px 0;
      }

      .num {
        width: 50px;
        height: 50px;
        right: 4px;
        top: 4px;
        border-radius: 16px;
        font-size: 1.2rem;
      }

      .introbox,
      .cta-card {
        padding: 30px 20px;
      }

      .video-card {
        padding: 16px;
      }

      .hub-grid {
        grid-template-columns: 1fr;
      }
    }

.curriculum-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 28px;
          margin-bottom: 40px;
        }

        .curr-card {
          background: #ffffff;
          border-radius: 24px;
          padding: 32px;
          border: 1px solid var(--border-color);
          box-shadow: var(--shadow-md);
          display: flex;
          flex-direction: column;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .curr-card:hover {
          transform: translateY(-6px);
          box-shadow: var(--shadow-hover);
          border-color: var(--teal-main);
        }

        .curr-level-badge {
          align-self: flex-start;
          background: var(--teal-light);
          color: var(--teal-main);
          border: 1px solid rgba(14, 156, 168, 0.2);
          padding: 5px 14px;
          border-radius: 999px;
          font-size: 0.8rem;
          font-weight: 800;
          margin-bottom: 16px;
        }

        .curr-title {
          font-size: 1.3rem;
          font-weight: 900;
          color: var(--primary-dark);
          margin-bottom: 10px;
          line-height: 1.4;
        }

        .curr-duration {
          font-size: 0.88rem;
          color: var(--accent-gold);
          font-weight: 800;
          margin-bottom: 16px;
          display: block;
        }

        .curr-topics {
          list-style: none;
          padding: 0;
          margin: 0 0 24px 0;
          flex-grow: 1;
        }

        .curr-topics li {
          position: relative;
          padding-right: 22px;
          font-size: 0.92rem;
          color: var(--text-main);
          line-height: 1.85;
          margin-bottom: 10px;
        }

        .curr-topics li::before {
          content: "✔";
          position: absolute;
          right: 0;
          color: var(--teal-main);
          font-size: 0.85rem;
          font-weight: 900;
        }

        .curr-outcome {
          padding: 14px 18px;
          background: var(--teal-light);
          border-radius: 16px;
          font-size: 0.88rem;
          color: var(--primary-dark);
          font-weight: 700;
          line-height: 1.65;
          border: 1px solid rgba(14, 156, 168, 0.15);
        }

/* --- Source: learn/smile-meditation.html --- */
body {
      margin: 0;
      font-family: 'Vazirmatn', sans-serif;
      color: var(--ink);
      background: var(--bg-gradient);
      line-height: 1.95;
    }

    .hero-smile {
      background: linear-gradient(135deg, #114239 0%, #052a36 60%, #173f39 100%);
      color: #ffffff;
      padding: 65px 0 55px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-smile::before {
      content: "";
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(211, 173, 97, 0.18), transparent 70%);
      pointer-events: none;
    }

    .shell {
      width: min(1100px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav-breadcrumbs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .nav-breadcrumbs a {
      color: var(--gold);
      text-decoration: none;
    }

    .hero-smile h1 {
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900;
      margin: 10px 0;
      color: #ffffff;
    }

    .hero-smile p {
      color: rgba(255, 255, 255, 0.88);
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.12rem;
      line-height: 1.85;
    }

    .source-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(211, 173, 97, 0.4);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--gold);
      margin-top: 18px;
      max-width: 100%;
      box-sizing: border-box;
      flex-wrap: wrap;
      justify-content: center;
      word-break: break-all;
    }

    .main-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 42px;
      box-shadow: var(--shadow);
      margin: 40px 0;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--green2);
      margin-top: 0;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .key-points-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin: 32px 0;
    }

    .point-card {
      background: #ffffff;
      border: 1px solid rgba(13, 79, 69, 0.12);
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .point-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 18px 45px rgba(7, 47, 41, 0.12);
    }

    .point-number {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--gold);
      color: var(--green2);
      font-weight: 900;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .point-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--green2);
      margin: 0 0 10px;
    }

    .point-card p {
      font-size: 0.95rem;
      color: #4a615b;
      margin: 0;
      line-height: 1.85;
    }

    .steps-box {
      background: linear-gradient(135deg, rgba(13, 79, 69, 0.05), rgba(211, 173, 97, 0.1));
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 32px;
      margin: 36px 0;
    }

    .steps-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0 0;
      display: grid;
      gap: 16px;
    }

    .steps-list li {
      background: #ffffff;
      border: 1px solid rgba(13, 79, 69, 0.1);
      border-radius: 16px;
      padding: 18px 22px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .step-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .step-text strong {
      display: block;
      color: var(--green2);
      font-size: 1.05rem;
      margin-bottom: 4px;
    }

    .step-text span {
      font-size: 0.94rem;
      color: #4a615b;
    }

    .quote-box {
      text-align: center;
      padding: 30px;
      background: var(--green2);
      color: #ffffff;
      border-radius: 20px;
      margin-top: 36px;
    }

    .quote-box p {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--gold);
      margin: 0 0 8px;
    }

    .quote-box small {
      color: rgba(255, 255, 255, 0.75);
    }

    @media (max-width: 768px) {
      .hero-smile {
        padding: 50px 0 40px;
      }
      .main-card {
        padding: 24px 18px;
        border-radius: 20px;
        margin: 24px 0;
      }
      .section-title {
        font-size: 1.35rem;
        gap: 8px;
        flex-wrap: wrap;
        line-height: 1.4;
      }
      .section-title[style*="margin-top"] {
        margin-top: 26px !important;
      }
      .key-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
      }
      .point-card {
        padding: 20px 16px;
        border-radius: 16px;
      }
      .point-card h3 {
        font-size: 1.1rem;
      }
      .steps-box {
        padding: 22px 18px;
        border-radius: 18px;
        margin: 24px 0;
      }
      .steps-list {
        gap: 12px;
        margin-top: 16px;
      }
      .steps-list li {
        padding: 16px 14px;
        border-radius: 14px;
        gap: 12px;
      }
      .quote-box {
        padding: 22px 18px;
        border-radius: 16px;
        margin-top: 26px;
      }
      .quote-box p {
        font-size: 1.05rem;
        line-height: 1.75;
      }
    }

    @media (max-width: 480px) {
      .hero-smile {
        padding: 42px 0 32px;
      }
      .hero-smile h1 {
        font-size: 1.55rem;
        line-height: 1.35;
      }
      .hero-smile p {
        font-size: 0.95rem;
        line-height: 1.75;
      }
      .source-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
      }
      .main-card {
        padding: 18px 14px;
        border-radius: 16px;
        margin: 18px 0;
      }
      .section-title {
        font-size: 1.18rem;
        gap: 6px;
        line-height: 1.45;
      }
      .section-title[style*="margin-top"] {
        margin-top: 20px !important;
      }
      .point-card {
        padding: 16px 14px;
        border-radius: 14px;
      }
      .point-number {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
        border-radius: 10px;
        margin-bottom: 10px;
      }
      .point-card h3 {
        font-size: 1.02rem;
      }
      .point-card p {
        font-size: 0.9rem;
        line-height: 1.75;
      }
      .steps-box {
        padding: 16px 12px;
        border-radius: 14px;
        margin: 18px 0;
      }
      .steps-list li {
        padding: 12px 10px;
        gap: 10px;
        border-radius: 12px;
      }
      .step-icon {
        font-size: 1.2rem;
      }
      .step-text strong {
        font-size: 0.94rem;
      }
      .step-text span {
        font-size: 0.88rem;
        line-height: 1.7;
      }
      .quote-box {
        padding: 18px 14px;
        border-radius: 14px;
        margin-top: 20px;
      }
      .quote-box p {
        font-size: 0.98rem;
      }
      .quote-box small {
        font-size: 0.82rem;
      }
    }

/* --- Source: learn/sujok-ki.html --- */
body {
      margin: 0;
      font-family: 'Vazirmatn', sans-serif;
      color: var(--ink);
      background: var(--bg-gradient);
      line-height: 1.95;
    }

    .hero-ki {
      background: linear-gradient(135deg, #052a36 0%, var(--green) 60%, var(--green2) 100%);
      color: #ffffff;
      padding: 65px 0 55px;
      text-align: center;
      position: relative;
    }

    .shell {
      width: min(1100px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav-breadcrumbs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--gold);
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .nav-breadcrumbs a {
      color: var(--gold);
      text-decoration: none;
    }

    .hero-ki h1 {
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900;
      margin: 10px 0;
      color: #ffffff;
    }

    .hero-ki p {
      color: rgba(255, 255, 255, 0.88);
      max-width: 820px;
      margin: 0 auto;
      font-size: 1.12rem;
      line-height: 1.85;
    }

    .main-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 42px;
      box-shadow: var(--shadow);
      margin: 40px 0;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--green2);
      margin-top: 0;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .analogy-box {
      background: linear-gradient(135deg, rgba(13, 79, 69, 0.08), rgba(211, 173, 97, 0.12));
      border-right: 5px solid var(--gold);
      border-radius: 18px;
      padding: 26px 30px;
      margin: 28px 0;
    }

    .analogy-box h3 {
      margin-top: 0;
      color: var(--green2);
      font-size: 1.25rem;
      font-weight: 800;
    }

    .ki-points-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin: 36px 0;
    }

    .ki-card {
      background: #ffffff;
      border: 1px solid rgba(13, 79, 69, 0.12);
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .ki-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 18px 45px rgba(7, 47, 41, 0.12);
    }

    .ki-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--green);
      color: #ffffff;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .ki-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--green2);
      margin: 0 0 10px;
    }

    .ki-card p {
      font-size: 0.95rem;
      color: #4a615b;
      margin: 0;
      line-height: 1.85;
    }

    .algorithm-box {
      background: rgba(13, 79, 69, 0.04);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 32px;
      margin: 36px 0;
    }

    .algorithm-box ul {
      margin: 16px 0 0 0;
      padding-right: 22px;
    }

    .algorithm-box li {
      font-size: 0.98rem;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.8;
    }

    @media (max-width: 768px) {
      .main-card {
        padding: 24px 18px;
        border-radius: 20px;
        margin: 24px 0;
      }
      .section-title {
        font-size: 1.35rem;
        gap: 8px;
        flex-wrap: wrap;
        line-height: 1.4;
      }
      .analogy-box {
        padding: 18px 16px;
        border-radius: 14px;
        margin: 20px 0;
      }
      .analogy-box h3 {
        font-size: 1.1rem;
      }
      .ki-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
      }
      .ki-card {
        padding: 20px 16px;
        border-radius: 16px;
      }
      .ki-card h3 {
        font-size: 1.1rem;
      }
      .algorithm-box {
        padding: 20px 16px;
        border-radius: 18px;
        margin: 24px 0;
      }
    }

    @media (max-width: 480px) {
      .hero-ki {
        padding: 45px 0 35px;
      }
      .hero-ki h1 {
        font-size: 1.6rem;
      }
      .hero-ki p {
        font-size: 0.95rem;
      }
      .main-card {
        padding: 18px 14px;
        border-radius: 16px;
        margin: 18px 0;
      }
      .section-title {
        font-size: 1.2rem;
        line-height: 1.45;
        margin-bottom: 14px;
      }
      .analogy-box {
        padding: 14px 12px;
        border-right-width: 4px;
        border-radius: 12px;
        margin: 16px 0;
      }
      .analogy-box h3 {
        font-size: 1.02rem;
        line-height: 1.4;
      }
      .analogy-box p {
        font-size: 0.92rem !important;
        line-height: 1.8 !important;
      }
      .ki-points-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
      }
      .ki-card {
        padding: 16px 14px;
        border-radius: 14px;
      }
      .ki-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 10px;
      }
      .ki-card h3 {
        font-size: 1.02rem;
        line-height: 1.4;
        margin-bottom: 8px;
      }
      .ki-card p {
        font-size: 0.88rem;
        line-height: 1.75;
      }
      .algorithm-box {
        padding: 16px 14px;
        border-radius: 14px;
        margin: 20px 0;
      }
      .algorithm-box ul {
        padding-right: 18px;
      }
      .algorithm-box li {
        font-size: 0.88rem;
        line-height: 1.75;
        margin-bottom: 10px;
      }
    }

/* --- Source: learn/sujok-lerning-aims.html --- */
.aim-hero-badge {
      background: rgba(21, 202, 219, 0.12);
      color: #15cadb;
      border: 1px solid rgba(21, 202, 219, 0.3);
      padding: 6px 18px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .aim-grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 28px;
    }
    .aim-summary-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-fast);
      position: relative;
      overflow: hidden;
    }
    .aim-summary-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--teal-main);
    }
    .aim-summary-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 100%;
      background: var(--teal-main);
      border-radius: 0 4px 4px 0;
    }
    .aim-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: var(--teal-light);
      color: var(--teal-main);
      border: 1px solid rgba(14, 156, 168, 0.18);
      box-shadow: 0 4px 12px rgba(14, 156, 168, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
      transition: all 0.25s ease;
    }
    .aim-card:hover .aim-icon-box {
      background: var(--teal-main);
      color: #ffffff;
      border-color: var(--teal-main);
      box-shadow: 0 8px 20px rgba(14, 156, 168, 0.25);
    }
    .skill-list {
      list-style: none;
      padding: 0;
      margin: 16px 0 0;
    }
    .skill-list li {
      position: relative;
      padding-right: 26px;
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: var(--text-main);
      line-height: 1.7;
    }
    .skill-list li::before {
      content: '✓';
      position: absolute;
      right: 0;
      top: 0;
      color: var(--teal-main);
      font-weight: 900;
      font-size: 1rem;
    }
    .vision-card {
      background: linear-gradient(135deg, #ffffff 0%, #f4f9fa 100%);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-fast);
    }
    .vision-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--teal-bright);
    }
    .vision-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--teal-main);
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .behavior-card {
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      transition: all var(--transition-fast);
    }
    .behavior-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--teal-main);
    }
    .behavior-badge {
      background: rgba(14, 156, 168, 0.1);
      color: var(--teal-main);
      font-size: 0.78rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 6px;
    }
    .behavior-icon {
      font-size: 2rem;
      background: var(--teal-light);
      color: var(--teal-main);
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all var(--transition-fast);
    }
    .behavior-card:hover .behavior-icon {
      background: var(--teal-main);
      color: #ffffff;
      transform: scale(1.05);
    }
    .behavior-content {
      width: 100%;
    }
    .behavior-content h4 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin: 0 0 6px;
      line-height: 1.45;
    }
    .behavior-content p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }
    .behavior-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }

    /* Cognitive Section 1 Styles */
    .cognitive-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .cognitive-card {
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: all var(--transition-fast);
    }
    .cognitive-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
      border-color: var(--teal-main);
    }
    .cognitive-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--teal-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 12px;
      flex-shrink: 0;
      transition: all var(--transition-fast);
    }
    .cognitive-card:hover .cognitive-icon {
      background: var(--teal-main);
      transform: scale(1.05);
    }
    .cognitive-card h4 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin: 0 0 6px;
      line-height: 1.45;
    }
    .cognitive-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }
    .vision-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
    }

    @media (max-width: 768px) {
      .aim-section {
        padding: 24px 18px !important;
        border-radius: 20px;
        margin-bottom: 32px !important;
      }
      .aim-section-header {
        gap: 12px;
        margin-bottom: 16px !important;
      }
      .aim-section-header h2 {
        font-size: 1.25rem !important;
        line-height: 1.4;
      }
      .cognitive-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      .cognitive-card {
        padding: 18px 16px;
      }
      .cognitive-card-full {
        grid-column: auto !important;
      }
      .vision-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
      }
      .behavior-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      .behavior-card {
        padding: 20px 16px;
        gap: 14px;
        border-radius: 16px;
      }
      .behavior-icon {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        border-radius: 14px;
      }
      .behavior-content h4 {
        font-size: 1.02rem;
      }
    }

    @media (max-width: 480px) {
      .aim-section {
        padding: 18px 14px !important;
        border-radius: 16px;
        margin-bottom: 24px !important;
      }
      .aim-section-header {
        gap: 10px;
        flex-direction: column !important;
        align-items: flex-start !important;
      }
      .cognitive-card {
        padding: 16px 14px;
        border-radius: 14px;
      }
      .cognitive-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        border-radius: 12px;
        margin-bottom: 10px;
      }
      .cognitive-card h4 {
        font-size: 0.98rem;
      }
      .cognitive-card p {
        font-size: 0.86rem;
        line-height: 1.65;
      }
      .aim-section-header h2 {
        font-size: 1.15rem !important;
      }
      .aim-section-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
        border-radius: 12px !important;
      }
      .behavior-card {
        padding: 15px 12px;
        gap: 12px;
        border-radius: 14px;
      }
      .behavior-icon {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
        border-radius: 12px;
      }
      .behavior-badge {
        font-size: 0.74rem;
        padding: 3px 8px;
      }
      .behavior-content h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
      }
      .behavior-content p {
        font-size: 0.84rem;
        line-height: 1.65;
      }
    }

/* --- Source: learn/titles.html --- */
body {
      margin: 0;
      font-family: 'Vazirmatn', sans-serif;
      color: var(--ink);
      background: var(--bg-gradient);
      line-height: 1.9;
    }

    .titles-hero {
      background: linear-gradient(135deg, var(--green2) 0%, var(--green) 100%);
      color: #ffffff;
      padding: 60px 0 50px;
      text-align: center;
      position: relative;
    }

    .titles-hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      margin: 12px 0;
      color: #ffffff;
    }

    .titles-hero p {
      color: rgba(255, 255, 255, 0.85);
      max-width: 780px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    .shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav-breadcrumbs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .nav-breadcrumbs a {
      color: var(--gold);
      text-decoration: none;
    }

    .titles-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin: 50px 0;
    }

    .title-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 36px;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .title-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 25px 60px rgba(7, 47, 41, 0.18);
      border-color: var(--gold);
    }

    .title-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(13, 79, 69, 0.1);
      padding-bottom: 16px;
    }

    .title-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: var(--green);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(13, 79, 69, 0.2);
    }

    .title-badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(211, 173, 97, 0.18);
      color: var(--green2);
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .title-h3 {
      font-size: 1.45rem;
      font-weight: 900;
      color: var(--green2);
      margin: 0;
    }

    .title-body p {
      font-size: 1rem;
      color: #425853;
      line-height: 1.9;
      margin-bottom: 16px;
    }

    .title-highlights {
      background: rgba(13, 79, 69, 0.04);
      border-right: 4px solid var(--gold);
      border-radius: 12px;
      padding: 18px 22px;
      margin: 16px 0;
    }

    .title-highlights ul {
      margin: 8px 0 0 0;
      padding-right: 20px;
    }

    .title-highlights li {
      color: var(--ink);
      font-size: 0.95rem;
      margin-bottom: 6px;
    }

    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--green);
      color: #ffffff;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.25s ease, transform 0.25s ease;
      margin-top: 10px;
    }

    .btn-action:hover {
      background: var(--green2);
      transform: translateY(-2px);
    }

    .img-correspondence-box {
      max-width: 580px;
      margin: 20px auto;
      text-align: center;
    }

    .img-correspondence-box img {
      width: 100%;
      border-radius: 18px;
      border: 2px solid var(--gold);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .img-caption {
      font-size: 0.88rem;
      color: var(--muted);
      margin-top: 8px;
      font-weight: 600;
    }

/* --- Source: learn/twist-therapy.html --- */
body {
      margin: 0;
      font-family: 'Vazirmatn', sans-serif;
      color: var(--ink, #052a36);
      background: var(--bg-gradient, #f8fafc);
      line-height: 1.95;
    }

    .hero-twist {
      background: linear-gradient(135deg, #063842 0%, #052a36 50%, #0e9ca8 100%);
      color: #ffffff;
      padding: 65px 0 55px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-twist::before {
      content: "";
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(21, 202, 219, 0.15), transparent 70%);
      pointer-events: none;
    }

    .shell {
      width: min(1100px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav-breadcrumbs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.9rem;
      color: #15cadb;
      margin-bottom: 14px;
    }

    .nav-breadcrumbs a {
      color: #15cadb;
      text-decoration: none;
    }

    .hero-twist h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      margin: 10px 0;
      color: #ffffff;
    }

    .hero-twist p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 820px;
      margin: 0 auto;
      font-size: 1.12rem;
      line-height: 1.85;
    }

    .source-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(21, 202, 219, 0.4);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      color: #15cadb;
      margin-top: 18px;
    }

    .main-card {
      background: #ffffff;
      border: 1px solid var(--border-color, rgba(14, 156, 168, 0.2));
      border-radius: 28px;
      padding: 42px;
      box-shadow: 0 10px 30px rgba(5, 42, 54, 0.06);
      margin: 40px 0;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: #052a36;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title i {
      color: #0e9ca8;
      font-size: 1.8rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .feature-box {
      background: #f8fafc;
      border: 1px solid rgba(14, 156, 168, 0.15);
      border-radius: 20px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-box h4 {
      font-size: 1.15rem;
      font-weight: 800;
      color: #052a36;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-box p {
      font-size: 0.93rem;
      color: #486875;
      line-height: 1.85;
      margin: 0;
    }

    .quote-box {
      background: linear-gradient(135deg, rgba(8, 59, 76, 0.05) 0%, rgba(14, 156, 168, 0.09) 100%);
      border-right: 5px solid #0e9ca8;
      border-radius: 16px;
      padding: 24px 28px;
      margin: 28px 0;
      font-size: 1.02rem;
      color: #052a36;
      line-height: 2;
    }

    .triorigin-forces-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin: 24px 0;
    }

    .force-card {
      background: #ffffff;
      border: 1px solid rgba(14, 156, 168, 0.2);
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden;
    }

    .force-card .bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
    }

    .force-card h5 {
      font-size: 1.1rem;
      font-weight: 800;
      color: #052a36;
      margin: 0 0 6px;
    }

    .force-card .role {
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 10px;
      display: block;
    }

    .force-card p {
      font-size: 0.88rem;
      color: #486875;
      line-height: 1.75;
      margin: 0;
    }

    .rules-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 20px;
    }

    .rules-list li {
      background: #f8fafc;
      border: 1px solid rgba(14, 156, 168, 0.15);
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .rule-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #0e9ca8;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
    }

    .btn-portal {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      background: #0e9ca8;
      color: #ffffff;
      border-radius: 12px;
      font-weight: 800;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .btn-portal:hover {
      background: #083b4c;
      transform: translateY(-2px);
    }

