  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .ihsan-hero {
    font-family: 'Poppins', sans-serif;
    background: #0d2a1f;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* ===== BACKGROUND LAYERS ===== */
  .ihsan-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* Radial glow behind phone */
  .ihsan-hero__bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-20%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(45,106,79,0.45) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Bottom golden glow */
  .ihsan-hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to top, rgba(184,134,11,0.08), transparent);
    pointer-events: none;
  }

  /* Mosque silhouette SVG strip */
  .ihsan-hero__mosque {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    opacity: 0.18;
    z-index: 1;
    display: flex;
    align-items: flex-end;
  }

  .ihsan-hero__mosque svg {
    width: 100%;
    height: 100%;
  }

  /* Floating particles */
  .ihsan-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(184,134,11,0.5);
    animation: floatUp linear infinite;
  }

  @keyframes floatUp {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-120vh) scale(0.5); opacity: 0; }
  }

  /* ===== MAIN LAYOUT ===== */
  .ihsan-hero__inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 64px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    align-items: center;
    min-height: 100vh;
  }

  /* ===== LEFT COLUMN ===== */
  .ihsan-hero__left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 32px;
    padding-top: 40px;
  }

  /* Eyebrow */
  .ihsan-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,106,79,0.3);
    border: 1px solid rgba(184,134,11,0.35);
    border-radius: 100px;
    padding: 6px 16px;
    width: fit-content;
  }

  .ihsan-hero__eyebrow span {
    font-size: 12px;
    font-weight: 600;
    color: #B8860B;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ihsan-hero__eyebrow-dot {
    width: 5px;
    height: 5px;
    background: #B8860B;
    border-radius: 50%;
    opacity: 0.7;
  }

  /* Headline */
  .ihsan-hero__headline {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 800;
    color: #F8F8F8;
    line-height: 1.13;
    letter-spacing: -0.02em;
  }

  .ihsan-hero__headline em {
    font-style: normal;
    color: #2D6A4F;
    position: relative;
    display: inline-block;
  }

  /* Gold underline accent */
  .ihsan-hero__headline em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, transparent);
    border-radius: 2px;
  }

  /* Sub-headline */
  .ihsan-hero__sub {
    font-size: 17px;
    font-weight: 400;
    color: rgba(253,246,227,0.75);
    line-height: 1.65;
    max-width: 420px;
  }

  /* Body copy */
  .ihsan-hero__body {
    font-size: 14px;
    font-weight: 400;
    color: rgba(253,246,227,0.55);
    line-height: 1.7;
    max-width: 400px;
  }

  /* CTA Buttons */
  .ihsan-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .ihsan-hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2D6A4F 0%, #1A4A3A 100%);
    border: 1px solid rgba(184,134,11,0.4);
    color: #FDF6E3;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(45,106,79,0.4);
    position: relative;
    overflow: hidden;
  }

  .ihsan-hero__cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,134,11,0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .ihsan-hero__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45,106,79,0.55);
  }

  .ihsan-hero__cta-primary:hover::before { opacity: 1; }

  .ihsan-hero__cta-arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
  }

  .ihsan-hero__cta-primary:hover .ihsan-hero__cta-arrow {
    transform: translateX(4px);
  }

  .ihsan-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #FDF6E3;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
  }

  .ihsan-hero__cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,134,11,0.4);
    transform: translateY(-2px);
  }

  .ihsan-hero__play-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(253,246,227,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ihsan-hero__play-icon svg {
    width: 10px;
    height: 10px;
    fill: #FDF6E3;
    margin-left: 2px;
  }

  /* Hadith Quote */
  .ihsan-hero__hadith {
    background: rgba(26,74,58,0.35);
    border: 1px solid rgba(184,134,11,0.2);
    border-left: 3px solid #B8860B;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    max-width: 420px;
    backdrop-filter: blur(6px);
  }

  .ihsan-hero__hadith-quote {
    font-size: 13px;
    font-style: italic;
    color: rgba(253,246,227,0.85);
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .ihsan-hero__hadith-quote::before {
    content: '\201C';
    font-size: 22px;
    color: #B8860B;
    font-style: normal;
    line-height: 0;
    vertical-align: -6px;
    margin-right: 3px;
  }

  .ihsan-hero__hadith-source {
    font-size: 11.5px;
    color: rgba(184,134,11,0.9);
    font-weight: 500;
  }

  .ihsan-hero__hadith-source strong {
    color: #B8860B;
  }

  /* ===== RIGHT COLUMN — PHONE MOCKUP ===== */
  .ihsan-hero__right {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
  }

  /* Phone frame */
  .ihsan-phone {
    width: 238px;
    background: #0a1a12;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.6),
      0 30px 80px rgba(0,0,0,0.7),
      0 0 60px rgba(45,106,79,0.3),
      inset 0 1px 0 rgba(255,255,255,0.08);
    padding: 16px 14px 20px;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
  }

  /* Notch */
  .ihsan-phone__notch {
    width: 80px;
    height: 24px;
    background: #0a1a12;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-top: none;
  }

  .ihsan-phone__notch-camera {
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .ihsan-phone__notch-speaker {
    width: 28px;
    height: 4px;
    background: #1a1a2e;
    border-radius: 2px;
  }

  /* Status bar */
  .ihsan-phone__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px 10px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(253,246,227,0.8);
  }

  .ihsan-phone__icons {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  /* Screen content */
  .ihsan-phone__screen {
    background: linear-gradient(160deg, #0f2b1e 0%, #091a10 100%);
    border-radius: 24px;
    padding: 16px 14px;
    min-height: 420px;
  }

  .ihsan-phone__screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .ihsan-phone__screen-title {
    font-size: 14px;
    font-weight: 700;
    color: #FDF6E3;
  }

  .ihsan-phone__level-badge {
    background: linear-gradient(135deg, #B8860B, #8B6508);
    color: #FDF6E3;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
  }

  /* Tree illustration */
  .ihsan-phone__tree-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 14px;
    position: relative;
  }

  .ihsan-phone__tree-svg {
    width: 140px;
    height: 130px;
  }

  .ihsan-phone__tree-status {
    font-size: 13px;
    font-weight: 700;
    color: #B8860B;
    margin-top: 8px;
    text-align: center;
  }

  .ihsan-phone__tree-xp {
    font-size: 10px;
    color: rgba(253,246,227,0.5);
    margin-top: 2px;
  }

  /* XP Progress bar */
  .ihsan-phone__progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    height: 6px;
    margin: 8px 0 14px;
    overflow: hidden;
  }

  .ihsan-phone__progress-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, #2D6A4F, #B8860B);
    border-radius: 20px;
    position: relative;
    animation: growBar 1.8s ease-out forwards;
  }

  @keyframes growBar {
    from { width: 0; }
    to   { width: 72%; }
  }

  /* Today's Impact */
  .ihsan-phone__impact-title {
    font-size: 10px;
    font-weight: 600;
    color: rgba(253,246,227,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }

  .ihsan-phone__stats {
    display: flex;
    justify-content: space-around;
  }

  .ihsan-phone__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .ihsan-phone__stat-ring {
    width: 42px;
    height: 42px;
    position: relative;
  }

  .ihsan-phone__stat-ring svg {
    width: 42px;
    height: 42px;
    transform: rotate(-90deg);
  }

  .ihsan-phone__stat-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 4;
  }

  .ihsan-phone__stat-ring-fill {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 110;
    animation: fillRing 1.6s ease-out forwards;
  }

  @keyframes fillRing {
    from { stroke-dashoffset: 110; }
  }

  .ihsan-phone__stat-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .ihsan-phone__stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(253,246,227,0.6);
  }

  .ihsan-phone__stat-pct {
    font-size: 11px;
    font-weight: 700;
    color: #FDF6E3;
  }

  /* ===== FLOATING SIDE CARD — Journey ===== */
  .ihsan-journey-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 188px;
    background: rgba(15,35,25,0.85);
    border: 1px solid rgba(184,134,11,0.25);
    border-radius: 20px;
    padding: 18px 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    z-index: 6;
  }

  .ihsan-journey-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #FDF6E3;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .ihsan-journey-card__steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ihsan-journey-step {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ihsan-journey-step__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
  }

  .ihsan-journey-step__icon--done {
    background: #2D6A4F;
    border-color: #2D6A4F;
  }

  .ihsan-journey-step__icon--active {
    background: rgba(184,134,11,0.2);
    border-color: #B8860B;
  }

  .ihsan-journey-step__text {
    font-size: 11.5px;
    color: rgba(253,246,227,0.7);
    line-height: 1.3;
  }

  .ihsan-journey-step--active .ihsan-journey-step__text {
    color: #FDF6E3;
    font-weight: 600;
  }

  /* Seedling at bottom right of card */
  .ihsan-journey-card__sprout {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    opacity: 0.7;
  }

  /* ===== TRUST STRIP ===== */
  .ihsan-hero__trust {
    grid-column: 1 / 3;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 48px;
    padding-bottom: 8px;
  }

  .ihsan-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(45,106,79,0.18);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(253,246,227,0.85);
    backdrop-filter: blur(6px);
    white-space: nowrap;
  }

  .ihsan-hero__trust-icon {
    color: #B8860B;
    font-size: 13px;
  }

  .ihsan-hero__trust-sep {
    color: rgba(255,255,255,0.15);
    font-size: 18px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .ihsan-hero__inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      padding: 48px 24px 60px;
      gap: 40px;
    }

    .ihsan-hero__left {
      grid-column: 1;
      grid-row: 1;
      padding-right: 0;
      padding-top: 0;
    }

    .ihsan-hero__right {
      grid-column: 1;
      grid-row: 2;
      min-height: 460px;
    }

    .ihsan-hero__trust {
      grid-column: 1;
      grid-row: 3;
    }

    .ihsan-journey-card {
      right: 0;
      top: auto;
      bottom: 20px;
      transform: none;
      width: 160px;
    }
  }

  @media (max-width: 540px) {
    .ihsan-hero__inner { padding: 36px 18px 48px; }
    .ihsan-hero__ctas { flex-direction: column; align-items: flex-start; }
    .ihsan-hero__trust { gap: 6px; }
    .ihsan-hero__trust-sep { display: none; }
    .ihsan-journey-card { display: none; }
  }


/* ===== Stats second section css code ===== */
.ihsan-stats {
    font-family: 'Poppins', sans-serif;
    background: #F8F8F8;
    width: 100%;
    padding: 0 24px;
  }
 
  .ihsan-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(45,106,79,0.1);
    box-shadow:
      0 4px 24px rgba(26,74,58,0.08),
      0 1px 4px rgba(0,0,0,0.04);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    transform: translateY(-28px);
  }
 
  /* Stat item */
  .ihsan-stats__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }
 
  /* Icon circle */
  .ihsan-stats__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45,106,79,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
  }
 
  .ihsan-stats__item:hover .ihsan-stats__icon {
    transform: scale(1.1);
    background: rgba(45,106,79,0.14);
  }
 
  .ihsan-stats__icon svg {
    width: 22px;
    height: 22px;
  }
 
  /* Text */
  .ihsan-stats__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
  }
 
  .ihsan-stats__number {
    font-size: 28px;
    font-weight: 800;
    color: #1A4A3A;
    line-height: 1;
    letter-spacing: -0.02em;
  }
 
  .ihsan-stats__label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.3;
    white-space: nowrap;
  }
 
  /* Divider */
  .ihsan-stats__divider {
    width: 1px;
    height: 44px;
    background: rgba(45,106,79,0.12);
    flex-shrink: 0;
  }
 
  /* Icon colours per stat */
  .ihsan-stats__icon--roles   { background: rgba(45,106,79,0.08); }
  .ihsan-stats__icon--maturity { background: rgba(184,134,11,0.1); }
  .ihsan-stats__icon--actions  { background: rgba(45,106,79,0.08); }
  .ihsan-stats__icon--cadences { background: rgba(45,106,79,0.08); }
  .ihsan-stats__icon--weeks    { background: rgba(184,134,11,0.1); }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 860px) {
    .ihsan-stats__inner {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px 32px;
      padding: 28px 28px;
      transform: translateY(-20px);
    }
    .ihsan-stats__divider { display: none; }
    .ihsan-stats__item { flex: 0 0 calc(50% - 32px); }
  }
 
  @media (max-width: 480px) {
    .ihsan-stats__inner {
      padding: 24px 20px;
      transform: translateY(-16px);
    }
    .ihsan-stats__item { flex: 0 0 calc(50% - 20px); }
    .ihsan-stats__number { font-size: 24px; }
  }

/* ===== The gap third section css code ===== */

 .ihsan-gap {
    font-family: 'Poppins', sans-serif;
    background: #F8F8F8;
    width: 100%;
    padding: 80px 40px;
  }
 
  .ihsan-gap__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.15fr;
    gap: 24px;
    align-items: stretch;
  }
 
  /* ===== LEFT COLUMN ===== */
  .ihsan-gap__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 32px 32px 0;
  }
 
  .ihsan-gap__eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #2D6A4F;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
 
  .ihsan-gap__headline {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: #1A4A3A;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
 
  .ihsan-gap__body {
    font-size: 14.5px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
  }
 
  .ihsan-gap__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #2D6A4F;
    text-decoration: none;
    transition: gap 0.2s ease;
  }
 
  .ihsan-gap__link:hover { gap: 12px; }
 
  .ihsan-gap__link-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
  }
 
  .ihsan-gap__link:hover .ihsan-gap__link-arrow {
    transform: translateX(4px);
  }
 
  /* ===== MIDDLE COLUMN — Most Apps Do ===== */
  .ihsan-gap__apps {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
 
  .ihsan-gap__apps-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.4;
  }
 
  .ihsan-gap__apps-label span {
    color: #c0392b;
    font-weight: 700;
  }
 
  .ihsan-gap__apps-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
  }
 
  .ihsan-gap__apps-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
 
  .ihsan-gap__apps-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.8px solid #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  .ihsan-gap__apps-icon svg {
    width: 10px;
    height: 10px;
  }
 
  .ihsan-gap__apps-text {
    font-size: 14px;
    color: #444;
    line-height: 1.55;
  }
 
  /* VS badge */
  .ihsan-gap__vs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
 
  .ihsan-gap__vs {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #888;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
 
  /* ===== RIGHT COLUMN — What IHSAN Does ===== */
  .ihsan-gap__ihsan {
    background: #fff;
    border: 1.5px solid rgba(45,106,79,0.2);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }
 
  .ihsan-gap__ihsan-label {
    font-size: 14px;
    font-weight: 700;
    color: #1A4A3A;
    margin-bottom: 24px;
  }
 
  .ihsan-gap__ihsan-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
  }
 
  .ihsan-gap__ihsan-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
 
  .ihsan-gap__check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #2D6A4F;
  }
 
  .ihsan-gap__check svg {
    width: 18px;
    height: 18px;
  }
 
  .ihsan-gap__ihsan-text {
    font-size: 14px;
    color: #333;
    line-height: 1.55;
  }
 
  .ihsan-gap__ihsan-text strong {
    color: #1A4A3A;
    font-weight: 600;
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .ihsan-gap {
      padding: 64px 24px;
    }
 
    .ihsan-gap__inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }
 
    .ihsan-gap__left {
      padding: 0;
    }
 
    .ihsan-gap__vs-wrap {
      display: none;
    }
  }

  /* ===== what is ihsan section 4 css code ===== */
  .ihsan-what {
    font-family: 'Poppins', sans-serif;
    background: #1A4A3A;
    width: 100%;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }

  /* ── Geometric background pattern ── */
  .ihsan-what__geo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
  }

  .ihsan-what__geo svg {
    width: 100%;
    height: 100%;
  }

  /* Radial glow centre */
  .ihsan-what__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(184,134,11,0.18) 0%, transparent 68%);
    z-index: 0;
    pointer-events: none;
  }

  /* ── Inner layout ── */
  .ihsan-what__inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  /* ── Arabic Ayah ── */
  .ihsan-what__ayah-wrap {
    margin-bottom: 36px;
  }

  .ihsan-what__ayah {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #B8860B;
    line-height: 1.5;
    direction: rtl;
    letter-spacing: 0.04em;
    text-shadow: 0 0 40px rgba(184,134,11,0.35);
  }

  .ihsan-what__ayah-trans {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: rgba(253,246,227,0.6);
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  /* ── Gold divider ornament ── */
  .ihsan-what__ornament {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 44px;
    width: 100%;
    max-width: 520px;
  }

  .ihsan-what__ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,134,11,0.5), transparent);
  }

  .ihsan-what__ornament-diamond {
    width: 8px;
    height: 8px;
    background: #B8860B;
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.8;
  }

  /* ── Hadith Card ── */
  .ihsan-what__hadith-card {
    background: rgba(253,246,227,0.06);
    border: 1px solid rgba(184,134,11,0.25);
    border-radius: 24px;
    padding: 40px 48px;
    margin-bottom: 48px;
    position: relative;
    backdrop-filter: blur(10px);
    max-width: 780px;
    width: 100%;
  }

  /* Opening quote mark */
  .ihsan-what__hadith-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 40px;
    font-size: 80px;
    color: #B8860B;
    line-height: 1;
    opacity: 0.35;
    font-family: Georgia, serif;
  }

  .ihsan-what__hadith-text {
    font-size: clamp(17px, 2.2vw, 22px);
    font-style: italic;
    font-weight: 400;
    color: #FDF6E3;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .ihsan-what__hadith-text em {
    font-style: normal;
    color: #B8860B;
    font-weight: 600;
  }

  .ihsan-what__hadith-source {
    font-size: 13px;
    font-weight: 500;
    color: rgba(184,134,11,0.8);
    letter-spacing: 0.02em;
  }

  /* ── Definition Pillars ── */
  .ihsan-what__definition {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(253,246,227,0.75);
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 52px;
    font-weight: 300;
  }

  .ihsan-what__definition strong {
    color: #FDF6E3;
    font-weight: 600;
  }

  /* ── Four Pillars Row ── */
  .ihsan-what__pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 860px;
  }

  .ihsan-what__pillar {
    background: rgba(253,246,227,0.05);
    border: 1px solid rgba(184,134,11,0.18);
    border-radius: 16px;
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    cursor: default;
  }

  .ihsan-what__pillar:hover {
    background: rgba(184,134,11,0.1);
    border-color: rgba(184,134,11,0.4);
    transform: translateY(-4px);
  }

  .ihsan-what__pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184,134,11,0.15);
    border: 1px solid rgba(184,134,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .ihsan-what__pillar-name {
    font-size: 13px;
    font-weight: 700;
    color: #FDF6E3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .ihsan-what__pillar-desc {
    font-size: 12px;
    color: rgba(253,246,227,0.5);
    line-height: 1.5;
    text-align: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 760px) {
    .ihsan-what { padding: 72px 24px; }
    .ihsan-what__hadith-card { padding: 32px 28px; }
    .ihsan-what__pillars { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .ihsan-what__pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ihsan-what__hadith-card { padding: 28px 22px; }
    .ihsan-what__hadith-card::before { font-size: 56px; left: 22px; }
  }

  /* ===== Framework Section 5 ===== */
.ihsan-fw {
  font-family: 'Poppins', sans-serif;
  background: #FDF6E3;
  width: 100%;
  padding: 88px 40px;
  overflow: hidden;
}

.ihsan-fw__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  gap: 32px;
  align-items: center;
}

/* ─── LEFT ─── */
.ihsan-fw__left { display: flex; flex-direction: column; gap: 16px; }

.ihsan-fw__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #2D6A4F;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ihsan-fw__headline {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: #1A4A3A;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ihsan-fw__body {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
}

.ihsan-fw__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1A4A3A;
  color: #1A4A3A;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  width: fit-content;
  transition: background 0.22s, color 0.22s;
  margin-top: 6px;
}
.ihsan-fw__cta:hover { background: #1A4A3A; color: #FDF6E3; }
.ihsan-fw__cta-arrow { transition: transform 0.2s; }
.ihsan-fw__cta:hover .ihsan-fw__cta-arrow { transform: translateX(4px); }

/* ─── CENTRE: ORBIT DIAGRAM ─── */
.ihsan-fw__orbit-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
}

.ihsan-fw__orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Centre score circle */
.ihsan-fw__score-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ihsan-fw__score-label-top {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.ihsan-fw__score-label-sub {
  font-size: 10px;
  color: #999;
  margin-bottom: 1px;
}

.ihsan-fw__score-num {
  font-size: 44px;
  font-weight: 800;
  color: #1A4A3A;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ihsan-fw__score-grade {
  font-size: 13px;
  font-weight: 600;
  color: #2D6A4F;
}

/* Progress ring */
.ihsan-fw__ring-bg   { fill: none; stroke: #e8e0cc; stroke-width: 7; }
.ihsan-fw__ring-fill {
  fill: none;
  stroke: #2D6A4F;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 1.6s cubic-bezier(.4,0,.2,1);
}
.ihsan-fw__ring-gold {
  fill: none;
  stroke: #B8860B;
  stroke-width: 2;
  stroke-dasharray: 4 8;
  opacity: 0.4;
}

/* Role nodes */
.ihsan-fw__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
  cursor: default;
  z-index: 5;
}

.ihsan-fw__node-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.ihsan-fw__node:hover .ihsan-fw__node-bubble {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* Animated pulse ring on hover */
.ihsan-fw__node-bubble::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  transition: opacity 0.25s;
}
.ihsan-fw__node:hover .ihsan-fw__node-bubble::after { opacity: 0.3; }

.ihsan-fw__node-name {
  font-size: 11px;
  font-weight: 700;
  color: #1A4A3A;
  text-align: center;
  white-space: nowrap;
}
.ihsan-fw__node-sub {
  font-size: 9.5px;
  color: #888;
  text-align: center;
  white-space: nowrap;
  margin-top: -3px;
}

/* Connector lines SVG inside orbit-wrap */
.ihsan-fw__connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ─── RIGHT: Top Focus Areas ─── */
.ihsan-fw__right {
  background: #fff;
  border: 1px solid rgba(45,106,79,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(26,74,58,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ihsan-fw__right-title {
  font-size: 14px;
  font-weight: 700;
  color: #1A4A3A;
}

.ihsan-fw__focus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ihsan-fw__focus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ihsan-fw__focus-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(45,106,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #2D6A4F;
  flex-shrink: 0;
  margin-top: 1px;
}

.ihsan-fw__focus-text { flex: 1; }
.ihsan-fw__focus-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

/* Score bar */
.ihsan-fw__score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ihsan-fw__score-bar-bg {
  flex: 1;
  height: 5px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.ihsan-fw__score-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #2D6A4F, #B8860B);
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.ihsan-fw__score-val {
  font-size: 11px;
  font-weight: 700;
  color: #B8860B;
  white-space: nowrap;
}

/* Right CTA */
.ihsan-fw__right-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2D6A4F, #1A4A3A);
  color: #FDF6E3;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.ihsan-fw__right-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* tooltip */
.ihsan-fw__tooltip {
  position: absolute;
  background: #1A4A3A;
  color: #FDF6E3;
  font-size: 11px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 20;
  white-space: nowrap;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.ihsan-fw__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1A4A3A;
}
.ihsan-fw__node:hover .ihsan-fw__tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .ihsan-fw__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ihsan-fw__orbit-wrap { max-width: 360px; }
  .ihsan-fw__right { max-width: 400px; margin: 0 auto; width: 100%; }
}

@media (max-width: 520px) {
  .ihsan-fw { padding: 64px 20px; }
  .ihsan-fw__orbit-wrap { max-width: 300px; }
  .ihsan-fw__node-bubble { width: 44px; height: 44px; font-size: 18px; }
  .ihsan-fw__node-name { font-size: 10px; }
}

/* ─── The frame work 8 - section 6 ─── */
.ihsan-mc {
  font-family: 'Poppins', sans-serif;
  background: #F8F8F8;
  width: 100%;
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}

/* Subtle background watermark number */
.ihsan-mc__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 340px;
  font-weight: 900;
  color: rgba(45,106,79,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  letter-spacing: -0.06em;
}

.ihsan-mc__inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.ihsan-mc__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.ihsan-mc__header-left { max-width: 580px; }

.ihsan-mc__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #2D6A4F;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ihsan-mc__headline {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #1A4A3A;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.ihsan-mc__headline span {
  color: #B8860B;
}

.ihsan-mc__sub {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  font-weight: 400;
}

/* ── 8-Card Grid ── */
.ihsan-mc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.ihsan-mc__card {
  background: #ffffff;
  border: 1.5px solid rgba(45,106,79,0.1);
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ihsan-mc__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ihsan-mc__card:hover {
  box-shadow: 0 12px 40px rgba(26,74,58,0.12);
  border-color: rgba(45,106,79,0.3);
  transform: translateY(-5px);
}

/* Number watermark inside card */
.ihsan-mc__card-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(45,106,79,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Icon circle */
.ihsan-mc__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.ihsan-mc__card:hover .ihsan-mc__card-icon {
  transform: scale(1.12) rotate(-4deg);
}

.ihsan-mc__card-body { display: flex; flex-direction: column; gap: 5px; }

.ihsan-mc__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A4A3A;
  letter-spacing: -0.01em;
}

.ihsan-mc__card-question {
  font-size: 12.5px;
  color: #888;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

/* Score progress ring on card */
.ihsan-mc__card-score {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ihsan-mc__card-ring {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ihsan-mc__card-ring svg { width: 36px; height: 36px; }

.ihsan-mc__ring-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 4;
}

.ihsan-mc__ring-fill {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 1.2s cubic-bezier(.4,0,.2,1);
}

.ihsan-mc__card-score-text { display: flex; flex-direction: column; }

.ihsan-mc__card-score-val {
  font-size: 13px;
  font-weight: 700;
  color: #1A4A3A;
}

.ihsan-mc__card-score-label {
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Maturity Scale Bar ── */
.ihsan-mc__scale {
  background: #fff;
  border: 1px solid rgba(45,106,79,0.12);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(26,74,58,0.06);
}

.ihsan-mc__scale-title {
  font-size: 13px;
  font-weight: 700;
  color: #1A4A3A;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ihsan-mc__scale-track {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  height: 44px;
  gap: 2px;
}

.ihsan-mc__scale-seg {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 10px;
  transition: transform 0.2s ease;
  cursor: default;
}

.ihsan-mc__scale-seg:hover { transform: scaleY(1.08); }

.ihsan-mc__scale-seg-range {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ihsan-mc__scale-seg-label {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* Pointer marker on scale */
.ihsan-mc__scale-pointer {
  margin-top: 10px;
  padding: 0 2px;
  position: relative;
  height: 24px;
}

.ihsan-mc__scale-marker {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: translateX(-50%);
  transition: left 1s cubic-bezier(.4,0,.2,1);
}

.ihsan-mc__scale-marker-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #B8860B;
}

.ihsan-mc__scale-marker-label {
  font-size: 10px;
  font-weight: 700;
  color: #B8860B;
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .ihsan-mc__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ihsan-mc { padding: 64px 20px; }
  .ihsan-mc__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ihsan-mc__card { padding: 20px 16px 18px; }
  .ihsan-mc__scale { padding: 22px 18px; }
  .ihsan-mc__scale-seg-label { display: none; }
  .ihsan-mc__header { flex-direction: column; align-items: flex-start; }
}
  
/* ── RESPONSIVE ── */

/* ── Section 7: Daily Check-In Experience ── */
.ci {
  font-family: 'Poppins', sans-serif;
  background: #F5F0E8;
  width: 100%;
  padding: 72px 32px 48px;
  position: relative;
  overflow: hidden;
}

/* very subtle warm radial behind tree */
.ci::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 100%;
  background: radial-gradient(ellipse at 50% 55%, rgba(45,106,79,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── TOP HEADER ── */
.ci__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 2;
}
.ci__eyebrow {
  font-size: 11px; font-weight: 700; color: #2D6A4F;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
.ci__headline {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800; color: #1A2E1A;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 8px;
}
.ci__sub {
  font-size: 15px; color: #666; font-weight: 400;
}

/* ── MAIN 3-COL LAYOUT ── */
.ci__body {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 28px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

/* ── SHARED CARD ── */
.ci__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 24px 20px;
}

/* ── LEFT CARD: Today's Ihsan Challenge ── */
.ci__card-title {
  font-size: 13px; font-weight: 700; color: #1A2E1A;
  margin-bottom: 18px;
}

.ci__task-list { display: flex; flex-direction: column; gap: 2px; }

.ci__task {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 10px; border-radius: 12px;
  cursor: pointer; transition: background 0.18s;
  user-select: none;
}
.ci__task:hover { background: #F5F5F5; }
.ci__task.is-done { opacity: 0.75; }

.ci__task-icon-wrap {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  background: #F0F7F3;
}

.ci__task-body { flex: 1; min-width: 0; }
.ci__task-name {
  font-size: 13.5px; font-weight: 600; color: #1A2E1A;
  display: block; line-height: 1.3;
}
.ci__task.is-done .ci__task-name {
  text-decoration: line-through;
  color: #aaa;
}
.ci__task-sub {
  font-size: 11px; color: #aaa; font-weight: 400;
}

/* Circle checkbox */
.ci__task-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.ci__task.is-done .ci__task-check {
  background: #2D6A4F; border-color: #2D6A4F;
}
.ci__task-check svg {
  width: 11px; height: 11px; stroke: #fff; stroke-width: 2.5;
  fill: none; opacity: 0; transform: scale(0.4);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.ci__task.is-done .ci__task-check svg { opacity: 1; transform: scale(1); }

/* Add own action */
.ci__add-action {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 10px; margin-top: 6px;
  color: #2D6A4F; font-size: 12.5px; font-weight: 600;
  cursor: pointer; border-radius: 10px;
  transition: background 0.18s;
}
.ci__add-action:hover { background: #F0F7F3; }

/* ── CENTRE: Tree + Progress Ring ── */
.ci__centre {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.ci__progress-label {
  font-size: 12px; font-weight: 600; color: #888;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Ring wrapper */
.ci__ring-outer {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}

.ci__ring-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ci__ring-track {
  fill: none; stroke: #E8E0D0; stroke-width: 8;
  stroke-linecap: round;
}
.ci__ring-prog {
  fill: none; stroke: #2D6A4F; stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0 900;
  transition: stroke-dasharray 1.6s cubic-bezier(.4,0,.2,1);
}

/* Tree island sits inside ring */
.ci__tree-island {
  position: relative;
  width: 240px; height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  z-index: 2;
}

/* SVG tree */
.ci__tree-svg {
  width: 200px; height: 200px;
  position: relative; z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(45,106,79,0.3));
}

/* Island base */
.ci__island {
  width: 170px; height: 38px;
  background: radial-gradient(ellipse at 50% 40%, #5A8A3A 0%, #3A6A20 60%, #2A4A10 100%);
  border-radius: 50%;
  margin-top: -20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  z-index: 2;
  flex-shrink: 0;
}
.ci__island::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 15px; right: 15px; height: 14px;
  background: rgba(40,60,20,0.35);
  border-radius: 50%;
  filter: blur(6px);
}

/* XP count under ring */
.ci__xp-row {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin-top: 4px;
}
.ci__xp-val {
  font-size: 28px; font-weight: 800; color: #2D6A4F;
  letter-spacing: -0.02em;
}
.ci__xp-note {
  font-size: 12.5px; font-weight: 500; color: #888; font-style: italic;
}

/* Score big display inside ring */
.ci__score-hub {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 1;
}
.ci__score-num {
  font-size: 52px; font-weight: 900; color: #1A2E1A; line-height: 1;
  letter-spacing: -0.04em;
}
.ci__score-den {
  font-size: 18px; font-weight: 600; color: #aaa;
}
.ci__score-label {
  font-size: 13px; font-weight: 600; color: #888; margin-top: 2px;
  display: block;
}

/* ── RIGHT COLUMN ── */
.ci__right { display: flex; flex-direction: column; gap: 16px; }

/* Streak card */
.ci__streak-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 20px;
}
.ci__streak-top {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.ci__streak-icon { font-size: 22px; }
.ci__streak-title { font-size: 14px; font-weight: 700; color: #1A2E1A; }
.ci__streak-sub { font-size: 12px; color: #888; }

/* Day pills */
.ci__day-row {
  display: flex; gap: 6px;
}
.ci__day-pill {
  flex: 1; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.ci__day-pill--active {
  background: #2D6A4F; color: #fff;
}
.ci__day-pill--rest {
  background: #F0F0F0; color: #bbb;
}

/* Next action card */
.ci__next-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 20px;
}
.ci__next-header {
  font-size: 13px; font-weight: 700; color: #1A2E1A; margin-bottom: 14px;
}
.ci__next-item {
  display: flex; align-items: center; gap: 12px;
  background: #F5F0E8; border-radius: 14px; padding: 13px 14px;
}
.ci__next-icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: #E8F0E8;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ci__next-body { flex: 1; }
.ci__next-name { font-size: 13.5px; font-weight: 700; color: #1A2E1A; display: block; }
.ci__next-time { font-size: 11.5px; color: #888; }
.ci__next-reward {
  font-size: 12px; font-weight: 700; color: #2D6A4F;
  background: #E8F5EE; padding: 4px 10px; border-radius: 20px;
}

/* Save button */
.ci__save-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #2D6A4F, #1A4A3A);
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 14.5px; font-weight: 700;
  padding: 15px 20px; border-radius: 50px;
  cursor: pointer; text-decoration: none; border: none;
  box-shadow: 0 6px 22px rgba(45,106,79,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ci__save-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(45,106,79,0.45); }

.ci__microcopy {
  text-align: center; font-size: 11.5px; color: #aaa;
}

/* ── BOTTOM STRIP ── */
.ci__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E0D8CC;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  max-width: 1160px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}

.ci__strip-item {
  background: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 24px;
}
.ci__strip-icon { font-size: 22px; flex-shrink: 0; }
.ci__strip-text { font-size: 13.5px; font-weight: 600; color: #1A2E1A; }

/* ── TREE SVG ANIMATION: glowing bulbs ── */
@keyframes bulbOn {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px #F5C518) drop-shadow(0 0 10px #F5C518); }
  50%       { opacity: 0.25; filter: none; }
}
@keyframes bulbOff {
  0%, 100% { opacity: 0.25; filter: none; }
  50%       { opacity: 1; filter: drop-shadow(0 0 4px #F5C518) drop-shadow(0 0 10px #F5C518); }
}
.ci-bulb { animation: bulbOn 2.4s ease-in-out infinite; }
.ci-bulb-b { animation: bulbOff 2.4s ease-in-out infinite; }
.ci-bulb-c { animation: bulbOn 2.4s ease-in-out 0.8s infinite; }
.ci-bulb-d { animation: bulbOff 2.4s ease-in-out 0.4s infinite; }
.ci-bulb-e { animation: bulbOn 2.4s ease-in-out 1.2s infinite; }
.ci-bulb-f { animation: bulbOff 2.4s ease-in-out 1.6s infinite; }
.ci-bulb-g { animation: bulbOn 2.4s ease-in-out 2.0s infinite; }

/* foliage gentle sway */
@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  25%  { transform: rotate(0.8deg); }
  75%  { transform: rotate(-0.8deg); }
}
.ci-foliage { transform-origin: 50% 90%; animation: sway 5s ease-in-out infinite; }

/* island glow pulse */
@keyframes islandGlow {
  0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.18), 0 0 0 rgba(45,106,79,0); }
  50% { box-shadow: 0 8px 20px rgba(0,0,0,0.18), 0 0 30px rgba(45,106,79,0.25); }
}
.ci__island { animation: islandGlow 3s ease-in-out infinite; }

/* ── REVEAL ANIMATIONS ── */
.ci__card, .ci__streak-card, .ci__next-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ci__centre {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease 0.1s, transform 0.65s ease 0.1s;
}
.ci-revealed { opacity: 1 !important; transform: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .ci__body { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ci__centre { grid-column: 1 / 3; order: -1; }
  .ci__ring-outer { width: 260px; height: 260px; }
  .ci__strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ci { padding: 56px 16px 36px; }
  .ci__body { grid-template-columns: 1fr; }
  .ci__centre { grid-column: 1; }
  .ci__ring-outer { width: 230px; height: 230px; }
  .ci__strip { grid-template-columns: 1fr 1fr; }
  .ci__strip-item { padding: 14px 16px; }
}

/* - section 8 how it works -*/

.hiw {
  font-family: 'Poppins', sans-serif;
  background: #F8F8F8;
  width: 100%;
  padding: 80px 40px;
}

.hiw__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

/* ── LEFT: headline block ── */
.hiw__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hiw__left.hiw-vis { opacity: 1; transform: none; }

.hiw__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #2D6A4F;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hiw__headline {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #1A2E1A;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hiw__sub {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  font-weight: 400;
}

/* ── RIGHT: steps row ── */
.hiw__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Arrow between steps */
.hiw__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 6px;
  color: #ccc;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hiw__arrow.hiw-vis { opacity: 1; }

.hiw__arrow svg {
  width: 22px; height: 22px;
}

/* Step card */
.hiw__step {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 18px;
  padding: 28px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: default;
}
.hiw__step.hiw-vis {
  opacity: 1;
  transform: none;
}
.hiw__step:hover {
  box-shadow: 0 8px 32px rgba(26,74,58,0.10);
  border-color: rgba(45,106,79,0.25);
}

/* Icon */
.hiw__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F0F7F3;
  border: 1.5px solid rgba(45,106,79,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.22s;
}
.hiw__step:hover .hiw__step-icon {
  transform: scale(1.1);
  background: #E0F0E8;
}
.hiw__step-icon svg {
  width: 26px; height: 26px;
  stroke: #2D6A4F;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Step number + title */
.hiw__step-num {
  font-size: 12px;
  font-weight: 700;
  color: #2D6A4F;
}

.hiw__step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1A2E1A;
  line-height: 1.25;
  margin-top: -4px;
}

.hiw__step-q {
  font-size: 12.5px;
  color: #999;
  font-style: italic;
  font-weight: 400;
  margin-top: -6px;
}

/* Divider */
.hiw__step-divider {
  height: 1px;
  background: #F0F0F0;
}

.hiw__step-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hiw__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hiw__steps {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hiw__step { flex: 1 1 calc(50% - 16px); min-width: 200px; }
  .hiw__arrow { display: none; }
}

@media (max-width: 540px) {
  .hiw { padding: 60px 20px; }
  .hiw__step { flex: 1 1 100%; }
}
