 
    /* Nunito — rounded, friendly, close to Open Runde
    body { font-family: 'Nunito', system-ui, sans-serif; } */
    [dir="ltr"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin),
    [dir="ltr"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin)::before,
    [dir="ltr"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin)::after {
        font-family: 'Nunito', system-ui, sans-serif !important;
    }

    /* ═══ SCROLL ANIMATIONS — lightweight AOS replacement ═══
       Usage: data-anim="fade-up|fade-left|fade-right|zoom-in"
              data-delay="100" (ms)  data-duration="800" (ms)
       Elements start hidden, animate when entering viewport */
    [data-anim] {
      opacity: 0;
      transition-property: opacity, transform;
      transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    [data-anim="fade-up"] { transform: translateY(40px); }
    [data-anim="fade-down"] { transform: translateY(-40px); }
    [data-anim="fade-left"] { transform: translateX(60px); }
    [data-anim="fade-right"] { transform: translateX(-60px); }
    [data-anim="zoom-in"] { transform: scale(0.92); }
    [data-anim="zoom-in-up"] { transform: scale(0.92) translateY(40px); }
    /* Visible state */
    [data-anim].anim-in {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
    }

    :root[data-theme="light"] {
      --pico-primary: #1a1a2e;
      --pico-primary-hover: #2d2d4a;
      --pico-primary-background: #1a1a2e;
      --pico-primary-hover-background: #2d2d4a;
      --pico-primary-focus: rgba(26,26,46,0.1);
      --pico-primary-inverse: #fff;
      --pico-background-color: #f5f3ed;
      --pico-card-background-color: rgba(255,255,255,0.7);
      --pico-card-border-color: rgba(255,255,255,0);
      --pico-card-sectioning-background-color: transparent;
      --pico-border-radius: 24px;
      --pico-block-spacing-vertical: 1.75rem;
      --pico-block-spacing-horizontal: 1.75rem;
      /* Custom palette */
      --bg: #f5f3ed;
      --bg-blue: var(--page-g1);
      --bg-warm: #edeae2;
      --muted: #7a7a8a;
      --glass: rgba(255,255,255,0.7);
      --glass-light: rgba(255,255,255,0.25);
      --glass-nav: rgba(255,255,255,0.5);
      --blur: blur(10px);
      --r: 24px;
      /* Text colors */
      --text-primary: rgb(26,22,21);
      --text-secondary: rgb(117,113,112);
      --text-body: rgb(60,56,55);
      --text-card: rgb(69,63,61);
      /* Surfaces */
      --surface-btn-dark: rgba(26,22,21,0.85);
      --surface-btn-dark-hover: rgb(26,22,21);
      --surface-ghost: rgba(255,255,255,0.1);
      --surface-ghost-hover: rgba(255,255,255,0.3);
      --border-light: rgba(117,115,114,0.15);
      --border-card: rgba(0,0,0,0.08);
      --shadow-soft: rgba(26,22,21,0.08);
      /* Hero gradient */
      --hero-from: #9cc1e7;
      --hero-to: #eddfd0;
      /* Page body gradient */
      --page-g1: #dfe9f3;
      --page-g2: #eae7df;
      /* Chips */
      --chip-blue-bg: #e0edfb; --chip-blue: #2d7dd2;
      --chip-green-bg: #e2f5ea; --chip-green: #2a9d5c;
      --chip-purple-bg: #ede0fb; --chip-purple: #7c3aed;
      --chip-orange-bg: #fde8d8; --chip-orange: #d97706;
      --chip-pink-bg: #fce0ee; --chip-pink: #db2777;
      --chip-gray-bg: #eee; --chip-gray: #555;
      /* Pricing */
      --pr-toggle-bg: rgba(255,255,255,0.7);
      --pr-badge-bg: rgb(234,243,237);
      --pr-badge-color: rgb(0,168,45);
      /* Blog tags */
      --tag-brown: rgb(78,55,36);
      --tag-red: rgb(198,61,47);
      --tag-blue: rgb(29,78,216);
      --tag-gold: rgb(180,120,20);
      --tag-green: rgb(22,101,52);
      /* Footer */
      --foot-bg: rgba(255,255,255,0.25);
      --foot-border: rgba(117,115,114,0.15);
      --foot-bottom-border: rgba(117,113,112,0.2);
    }

    :root[data-theme="dark"] {
      --pico-primary: #c8c6ff;
      --pico-primary-hover: #e0dfff;
      --pico-primary-background: #2a2a4a;
      --pico-primary-hover-background: #3a3a5a;
      --pico-primary-focus: rgba(200,198,255,0.15);
      --pico-primary-inverse: #1a1615;
      --pico-background-color: #1a1615;
      --pico-card-background-color: rgba(40,36,34,0.7);
      --pico-card-border-color: rgba(255,255,255,0.05);
      --pico-card-sectioning-background-color: transparent;
      --pico-border-radius: 24px;
      --pico-block-spacing-vertical: 1.75rem;
      --pico-block-spacing-horizontal: 1.75rem;
      /* Custom palette */
      --bg: #1a1615;
      --bg-blue: #1e2a36;
      --bg-warm: #242019;
      --muted: #8a8a96;
      --glass: rgba(40,36,34,0.7);
      --glass-light: rgba(40,36,34,0.4);
      --glass-nav: rgba(30,27,25,0.65);
      --blur: blur(10px);
      --r: 24px;
      /* Text colors */
      --text-primary: rgb(235,230,225);
      --text-secondary: rgb(160,155,150);
      --text-body: rgb(190,185,180);
      --text-card: rgb(180,175,170);
      /* Surfaces */
      --surface-btn-dark: rgba(235,230,225,0.9);
      --surface-btn-dark-hover: rgb(235,230,225);
      --surface-ghost: rgba(255,255,255,0.06);
      --surface-ghost-hover: rgba(255,255,255,0.12);
      --border-light: rgba(255,255,255,0.08);
      --border-card: rgba(255,255,255,0.06);
      --shadow-soft: rgba(0,0,0,0.3);
      /* Hero gradient */
      --hero-from: #1a2a3a;
      --hero-to: #2a2219;
      /* Page body gradient */
      --page-g1: #1e2a36;
      --page-g2: #242019;
      /* Chips */
      --chip-blue-bg: rgba(45,125,210,0.15); --chip-blue: #6db3f8;
      --chip-green-bg: rgba(42,157,92,0.15); --chip-green: #5dd89a;
      --chip-purple-bg: rgba(124,58,237,0.15); --chip-purple: #b48aff;
      --chip-orange-bg: rgba(217,119,6,0.15); --chip-orange: #fbbf24;
      --chip-pink-bg: rgba(219,39,119,0.15); --chip-pink: #f472b6;
      --chip-gray-bg: rgba(255,255,255,0.08); --chip-gray: #aaa;
      /* Pricing */
      --pr-toggle-bg: rgba(40,36,34,0.7);
      --pr-badge-bg: rgba(42,157,92,0.15);
      --pr-badge-color: rgb(93,216,154);
      /* Blog tags */
      --tag-brown: rgb(210,170,130);
      --tag-red: rgb(248,130,120);
      --tag-blue: rgb(130,170,248);
      --tag-gold: rgb(240,190,80);
      --tag-green: rgb(100,210,140);
      /* Footer */
      --foot-bg: rgba(40,36,34,0.4);
      --foot-border: rgba(255,255,255,0.06);
      --foot-bottom-border: rgba(255,255,255,0.08);
    }

    body { background: var(--bg); font-size: 15px; }
    .container { max-width: 1072px; }
    /* Page body — unified gradient from hero to footer */
    .page-body {
       background: linear-gradient(180deg,
        var(--page-g1) 0%,
        var(--bg-warm) 12%,
        var(--page-g2) 20%,
        #f4f1ee 28%,
        #FAF6FD 35%,
        #edeae2 50%,
        #F5EEFB 65%,
        #EDE0F7 100%
      ) !important;

    /*  background: linear-gradient(180deg,
        var(--page-g1) 0%,
        #e8e6df 12%,
        var(--page-g2) 20%,
        #e6e3db 28%,
        #e6e4dc 35%,
        var(--page-g1) 50%,
        var(--page-g1) 65%,
        var(--page-g1) 100%
      );*/
    }
    /* Pico overrides — smaller, refined */
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important; font-weight: 800 !important; line-height: 1.1 !important; letter-spacing: -0.5px; color: var(--text-primary); }
    h4, h5 { margin: 0 !important; }
    p { margin-bottom: 0 !important; }
    /* Reduce Pico default section spacing */
    section { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    main section { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    /* Spacing utilities */
    .pt-0 { padding-top: 0 !important; }
    .pb-0 { padding-bottom: 0 !important; }
    .pt-sm { padding-top: 1rem !important; }
    .pb-sm { padding-bottom: 1rem !important; }
    .pt-md { padding-top: 2rem !important; }
    .pb-md { padding-bottom: 2rem !important; }
    .mt-0 { margin-top: 0 !important; }
    .mb-0 { margin-bottom: 0 !important; }

    /* ═══ Glass card — applied globally to Pico <article> ═══ */
    article {
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border: 1px solid rgba(255,255,255,0) !important;
      box-shadow: none !important;
    }

    /* ═══ Utilities ═══ */
    .tc { text-align: center; }
    .muted { color: var(--muted); }
    section { padding: 4rem 0; }
    .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--muted); margin-bottom: 0.4rem; }

    /* ═══ NAV ═══ */
    nav.sn {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 10;
      display: flex; align-items: center; justify-content: center;
      padding: 0.75rem 1rem;
      transition: padding 0.4s ease;
    }
    /* Inner pill — Desktop Primary (invisible) */
    .np {
      display: flex; align-items: center;
      width: auto;
      border-radius: 40px;
      border: 1px solid rgba(117,115,114,0);
      background: rgba(255,255,255,0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      box-shadow: none;
      padding: 0.4rem 0.4rem 0.4rem 1.4rem;
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .nb {
      font-weight: 600; font-size: 1.15rem; color: var(--text-primary);
      text-decoration: none; display: flex; align-items: center;
      gap: 0.4rem; white-space: nowrap; flex-shrink: 0;
      height: 45px;;
    }
    .nb img { height: 100%; }
    /* Spacers push logo left, CTA right, links center */
    .nav-spacer { flex: 1; min-width: 4rem; transition: min-width 0.4s ease; }
    .nl {
      display: flex; align-items: center; gap: 0;
      list-style: none; margin: 0; padding: 0; flex-shrink: 0;
    }
    .nl .nli { display: inline; }
    .nl a {
      color: var(--text-primary); text-decoration: none;
      font-size: 0.82rem; font-weight: 500; white-space: nowrap;
      padding: 0.45rem 0.75rem; border-radius: 100px;
      transition: background 0.2s;
    }
    .nl a:hover { background: rgba(255,255,255,0.3); }
    /* CTA inside pill — flip text hover */
    .nc {
      background: var(--text-primary); color: var(--pico-primary-inverse) !important;
      padding: 0.7rem 1.2rem; border-radius: 100px;
      font-size: 0.82rem !important; font-weight: 600 !important;
      text-decoration: none; flex-shrink: 0; margin-inline-start: 0.3rem;
      transition: background 0.3s ease; overflow: hidden; position: relative;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .nc:hover { opacity: 1 !important; background: rgba(26,22,21,0.85); }
    /* ═══ GLOBAL FLIP TEXT — applies to ALL buttons ═══ */
    .nc-wrap {
      display: flex; flex-direction: column; align-items: center;
      height: 1.2em; overflow: hidden; position: relative;
    }
    .nc-t1, .nc-t2 {
      display: block; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
      line-height: 1.2em; white-space: nowrap;
    }
    .nc-t2 { color: inherit; }
    /* Any parent with .nc-wrap: hover flips text up */
    a:hover .nc-wrap .nc-t1,
    button:hover .nc-wrap .nc-t1 { transform: translateY(-100%); }
    a:hover .nc-wrap .nc-t2,
    button:hover .nc-wrap .nc-t2 { transform: translateY(-100%); }
    .burger { display: none; background: none; border: none; cursor: pointer; padding: 0.3rem; margin-inline-start: auto; }
    .burger svg { width: 24px; height: 24px; color: var(--text-primary); }

    /* ═══ SCROLLED — glass pill appears, spacers shrink ═══ */
    nav.sn.sm .np {
      border: 1px solid var(--border-light);
      background: var(--glass-light);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: none;
      padding: 0.35rem 0.35rem 0.35rem 0.35rem;
    }
    nav.sn.sm .nav-spacer { min-width: 1rem; }
    nav.sn.sm .nc { padding: 0.65rem 1.1rem; }

    /* ═══ MOBILE DROPDOWN (inside nav) ═══ */
    .nav-mobile-dropdown {
      display: none; /* hidden on desktop */
    }
    .burger-close { display: none; }
    nav.sn.menu-open .burger-open { display: none; }
    nav.sn.menu-open .burger-close { display: block; }
    @keyframes dropSlide {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .nav-mobile-dropdown a {
      display: block; width: 100%; text-align: center;
      padding: 0.75rem 0; font-size: 0.95rem; font-weight: 600;
      color: var(--text-primary); text-decoration: none;
      transition: opacity 0.2s;
    }
    .nav-mobile-dropdown a:hover { opacity: 0.5; }
    .mob-cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%; text-align: center;
      padding: 16px 24px; border-radius: 100px;
      background: var(--text-primary); color: var(--pico-primary-inverse) !important;
      font-size: 0.82rem; font-weight: 600;
      text-decoration: none; margin-top: 0.3rem;
      overflow: hidden; position: relative;
    }
    .mob-cta:hover { background: var(--surface-btn-dark-hover); }
    /* ═══ CHIP CARDS — icon + text inline, any grid size ═══ */
    .chip-grid { display: grid; gap: 1rem; margin-top: 2rem; }
    .chip-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .chip-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .chip-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .chip {
      display: flex; align-items: center; gap: 0.85rem;
      background: var(--glass);
      backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border-radius: 16px; padding: 1rem 1.25rem;
      transition: transform 0.3s ease;
    }
    .chip:hover { transform: translateY(-2px); }
    .chip-icon {
      width: 42px; height: 42px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1.2rem;
    }
    .chip-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
    .chip-icon svg { width: 22px; height: 22px; }
    .chip-text { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
    /* Chip color variants */
    .chip--blue .chip-icon { background: var(--chip-blue-bg); color: var(--chip-blue); }
    .chip--green .chip-icon { background: var(--chip-green-bg); color: var(--chip-green); }
    .chip--purple .chip-icon { background: var(--chip-purple-bg); color: var(--chip-purple); }
    .chip--orange .chip-icon { background: var(--chip-orange-bg); color: var(--chip-orange); }
    .chip--pink .chip-icon { background: var(--chip-pink-bg); color: var(--chip-pink); }
    .chip--gray .chip-icon { background: var(--chip-gray-bg); color: var(--chip-gray); }
    @media (max-width: 768px) {
      .chip-grid.cols-3, .chip-grid.cols-4 { grid-template-columns: repeat(1, 1fr); }
    }
    /* ═══ BLOG ARTICLE — full post layout ═══ */
    .blog-article { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem; }
    .blog-article-header { margin-bottom: 2.5rem; }
    .blog-article-header .blog-tag { margin-bottom: 1rem; display: inline-block; }
    .blog-article-header h1 {
      font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
      line-height: 1.15; letter-spacing: -0.5px; color: var(--text-primary);
      margin-bottom: 1rem;
    }
    .blog-article-header p {
      font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
    }
    .blog-article-meta {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 1.25rem 0; border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 2.5rem;
    }
    .blog-article-meta img {
      width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
    }
    .blog-article-meta strong { font-size: 0.88rem; color: var(--text-primary); display: block; }
    .blog-article-meta span { font-size: 0.78rem; color: var(--text-secondary); }
    .blog-article-meta .blog-article-date { margin-inline-start: auto; font-size: 0.8rem; color: var(--text-secondary); }
    .blog-article-cover {
      border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem;
    }
    .blog-article-cover img { width: 100%; height: auto; display: block; }
    /* Article body typography */
    .blog-article-body h4 {
      font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
      margin: 2rem 0 0.75rem; line-height: 1.3;
    }
    .blog-article-body p {
      font-size: 0.95rem; line-height: 1.8; color: var(--text-body);
      margin-bottom: 1.25rem;
    }
    .blog-article-body ol, .blog-article-body ul {
      padding-inline-start: 1.5rem; margin-bottom: 1.25rem;
    }
    .blog-article-body li {
      font-size: 0.95rem; line-height: 1.8; color: var(--text-body);
      margin-bottom: 0.4rem;
    }
    .blog-article-body strong { color: var(--text-primary); }
    /* Share bar */
    .blog-share {
      display: flex; align-items: center; gap: 0.75rem;
      padding-top: 2rem; margin-top: 2rem;
      border-top: 1px solid var(--border-light);
    }
    .blog-share span { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
    .blog-share a {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--text-primary); display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s; box-shadow: 0 4px 50px rgba(97,74,68,0.1);
    }
    .blog-share a:hover { transform: scale(1.08); }
    .blog-share a svg { width: 16px; height: 16px; fill: var(--pico-primary-inverse); }

    /* ═══ HERO ═══ */
    .hero {
      position: relative;
      padding: 10rem 0 0;
      overflow: clip;
      display: flex; flex-direction: column; align-items: center;
      background: linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 100%);
    }
    /* Home hero — fixed height for dashboard crop */
    .hero--home {
      height: 1020px; min-height: 80vh;
    }
    /* Page hero — flexible height, centered content */
    .hero--page {
      min-height: auto; padding: 8rem 0 4rem !important;
      text-align: center;
    }
    .hero--page .hero-content {
      max-width: 760px; margin: 0 auto; padding: 0 1.5rem; 
    }
    .hero--page .hero-badge {
      display: inline-block; padding: 0.35rem 1rem; border-radius: 100px;
      font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
      background: var(--surface-ghost); color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }
    .hero--page h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800;
      line-height: 1.1; letter-spacing: -1px; color: var(--text-primary);
      margin: 0 0 1rem;
    }
    .hero--page .hero-sub {
      color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65;
      max-width: 540px; margin: 0 auto;
    }
    /* Page hero — blog variant with author + image */
    .hero--page .hero-author {
      display: flex; align-items: center; gap: 0.75rem;
      justify-content: center; margin-top: 1.5rem;
    }
    .hero--page .hero-author-img {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--border-light);
    }
    .hero--page .hero-author-info { text-align: start; }
    .hero--page .hero-author-name {
      font-size: 0.88rem; font-weight: 600; color: var(--text-primary); line-height: 1.3;
    }
    .hero--page .hero-author-role {
      font-size: 0.78rem; color: var(--text-secondary); line-height: 1.3;
    }
    .hero--page .hero-cover-badge {
      position: absolute; top: 1rem; inset-inline-end: 1rem;
      padding: 0.4rem 1rem; border-radius: 100px;
      background: rgb(201,80,46); color: #fff;
      font-size: 0.72rem; font-weight: 600;
    }
    /* Page hero — contact form */
    .hero--page .hero-form {
      max-width: 560px; margin: 2.5rem auto 0; padding: 2rem;
      background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border-radius: 20px; border: 1px solid var(--border-light);
      text-align: start;
    }
    .hero--page .hero-form label {
      display: block; font-size: 0.85rem; font-weight: 500;
      color: var(--text-card); margin-bottom: 0.35rem;
    }
    .hero--page .hero-form input,
    .hero--page .hero-form textarea,
    .hero--page .hero-form select {
      width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
      border: 1px solid var(--border-light); background: var(--glass-light);
      color: var(--text-primary); font-size: 0.88rem; font-family: inherit;
      margin-bottom: 1rem; outline: none;
      transition: border-color 0.2s;
    }
    .hero--page .hero-form input:focus,
    .hero--page .hero-form textarea:focus,
    .hero--page .hero-form select:focus {
      border-color: var(--text-secondary);
    }
    .hero--page .hero-form textarea { min-height: 120px; resize: vertical; }
    .hero--page .hero-form .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .hero--page .hero-form .btn-dark { width: 100%; margin-top: 0.5rem; }
    /* Hero cover — cropped at bottom via hero overflow:clip, zoom-out on load */
    .hero--page .hero-cover {
      margin-top: 2.5rem; border-radius: 20px 20px 0 0; overflow: hidden;
      max-width: 760px; margin-inline: auto; position: relative;
    }
    .hero--page .hero-cover img {
      display: block; width: 100%; height: auto; object-fit: cover;
      border-radius: 20px 20px 0 0;
      animation: heroZoomOut 1.2s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
    }
    @keyframes heroZoomOut {
      from { transform: scale(1.15); }
      to { transform: scale(1); }
    }
    .hero--page .hero-cover-badge {
      position: absolute; top: 1rem; inset-inline-end: 1rem;
      padding: 0.4rem 1rem; border-radius: 100px;
      background: rgb(201,80,46); color: #fff;
      font-size: 0.72rem; font-weight: 600; z-index: 1;
    }
    /* Blog hero — crop from bottom like home dashboard */
    .hero--blog { padding-bottom: 0; }

    /* ═══ PROSE SECTION — plain text, no background ═══ */
    .prose-section {
      max-width: 680px; margin: 0 auto;
      padding: var(--pico-spacing) 1.5rem;
    }
    .prose-section p {
      font-size: 0.95rem; line-height: 1.85; color: var(--text-body);
      margin-bottom: 1.25rem;
    }
    .prose-section p:last-child { margin-bottom: 0; }
    /* Clouds — no z-index so they appear properly */
    .cloud-l, .cloud-r {
      position: absolute; width: 480px; pointer-events: none; z-index: 1;
      will-change: transform;
    }
    .cloud-l { left: -280px; top: 180px; }
    .cloud-r { right: -280px; top: 180px; }
    .cloud-l img, .cloud-r img { width: 100%; height: auto; }
    .hero hgroup h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800;
      line-height: 1.1; letter-spacing: -1px; color: var(--text-primary);
    }
    .hero hgroup p {
      max-width: 650px; margin: 1.2rem auto 0;
      color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65;
    }
    /* Hero buttons — smaller, matching Mlsoon padding: 18px 24px → ~0.72rem 1.2rem */
    .hero-btns {
      display: flex; gap: 0.5rem; justify-content: center;
      margin-top: 2rem;
    }
    .btn-dark {
      background-color: var(--text-primary); color: var(--pico-primary-inverse);
      border: 1px solid rgba(227,225,225,0); border-style: solid;
      padding: 18px 24px; border-radius: 100px; font-size: 0.82rem;
      font-weight: 600; text-decoration: none; display: inline-flex;
      align-items: center; justify-content: center; gap: 8px; cursor: pointer;
      transition: background 0.3s ease; overflow: hidden; position: relative;
      width: min-content; height: min-content;
    }
    .btn-dark:hover { background-color: var(--surface-btn-dark); }
    .btn-ghost {
      background-color: var(--surface-ghost); color: var(--text-primary);
      border: 1px solid rgba(227,225,225,0); border-style: solid;
      padding: 18px 24px; border-radius: 100px; font-size: 0.82rem;
      font-weight: 600; text-decoration: none; display: inline-flex;
      align-items: center; justify-content: center; gap: 8px; cursor: pointer;
      transition: background 0.3s ease; overflow: hidden; position: relative;
      width: min-content; height: min-content;
    }
    .btn-ghost:hover { background-color: var(--surface-ghost-hover); }
    /* Dashboard — centered, crops from bottom via hero overflow:clip */
    .hero-dash {
      margin-top: 5rem; width: 100%; max-width: 1072px;
      padding: 0 2.5rem; flex-shrink: 0;
      margin-inline: auto;
    }
    .hero-dash-inner {
      border-radius: 16px 16px 0 0;
      border: 1px solid var(--border-card);
      border-bottom: none;
      transform: perspective(1000px) translateY(-40px) scale(0.9) rotateX(10.3deg);
      -webkit-transform: perspective(1000px) translateY(-40px) scale(0.9) rotateX(10.3deg);
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .hero-dash img {
      display: block; width: 100%; height: auto;
      object-fit: cover; object-position: center top;
      border-radius: 16px 16px 0 0;
    }

    /* ═══ LOGOS TICKER — reusable scrolling component ═══
       Usage: wrap .ticker-mask > .ticker-track > .ticker-logo items
       Customize: --ticker-speed, --ticker-gap
       Duplicate logos inside .ticker-track for seamless loop */
    .logos-ticker {
      padding: 1.5rem 0 2rem ;
      overflow: hidden;
    }
    .ticker-label {
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.88rem;
      font-weight: 400;
      margin-bottom: 1.8rem;
      letter-spacing: 0;
    }
    .ticker-mask {
      max-width: 960px;
      margin: 0 auto;
      overflow: hidden;
      mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 8%, rgb(0,0,0) 92%, rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 8%, rgb(0,0,0) 92%, rgba(0,0,0,0) 100%);
    }
    .ticker-track {
      display: flex;
      align-items: center;
      gap: 8px;
      width: max-content;
      will-change: transform;
    }
    .ticker-logo {
      flex-shrink: 0;
      height: 28px;
      width: auto;
      color: var(--text-primary);
      opacity: 0.7;
      display: flex; align-items: center;
    }
    .ticker-logo svg { height: 100%; width: auto; display: block; }

    /* ═══ SHOWCASE CAROUSEL — reusable image switcher with scroll-zoom ═══
       Usage: .showcase-box > .showcase-slides > .showcase-slide (images)
              .showcase-nav (pill with toggle buttons) centered at bottom
       Scroll effect: image starts zoomed in (scale 1.3) → shrinks to 1.0 on scroll */
    .showcase-section {
      padding: 4rem 0 0;
    }
    .showcase-section .label {
      text-align: center; margin-bottom: 0.4rem;
    }
    .showcase-section h2 {
      text-align: center; font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.5px;
      color: var(--text-primary); margin-bottom: 3rem;
    }
    .showcase-box {
      position: relative;
      width: 100%; max-width: 1072px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      background: rgb(249,248,248);
      aspect-ratio: 16/10;
    }
    .showcase-slide {
      position: absolute; inset: 0;
      border-radius: 24px;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.6s ease;
      will-change: transform;
    }
    .showcase-slide.active { opacity: 1; }
    .showcase-slide img {
      display: block; width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      border-radius: 24px;
      transform: scale(1.3);
      transition: transform 0.05s linear;
      will-change: transform;
    }
    /* Nav pill centered at bottom of box */
    .showcase-nav {
      position: absolute;
      bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      z-index: 5;
      display: inline-flex; align-items: center; gap: 0;
      border-radius: 40px;
      border: 1px solid var(--border-light);
      background: var(--glass-light);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 0.3rem;
    }
    .showcase-btn {
      background-color: var(--surface-ghost); color: var(--text-primary);
      border: 1px solid rgba(227,225,225,0.25); border-style: solid;
      padding: 0.65rem 1.2rem; border-radius: 100px;
      font-size: 0.82rem; font-weight: 600;
      cursor: pointer; white-space: nowrap;
      transition: background 0.3s, color 0.3s;
      overflow: hidden; position: relative;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .showcase-btn.active {
      background-color: var(--text-primary); color: var(--pico-primary-inverse);
      border-color: rgba(227,225,225,0);
    }
    .showcase-btn:not(.active):hover {
      background: rgba(255,255,255,0.15);
    }

    /* ═══ FEATURE BLOCKS — reusable split image+text with parallax ═══ */
    .feat-block {
      display: grid; grid-template-columns: 55fr 45fr; gap: 2rem;
      align-items: stretch; margin: 2rem 0;
    }
    .feat-block--rev .feat-img { order: 2; }
    .feat-block--rev .feat-text { order: 1; }
    .feat-img {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      min-height: 560px;
      display: flex; align-items: center; justify-content: center;
      padding: 10px;
    }
    .feat-img-bg {
      position: absolute; inset: 0; z-index: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 100%);
    }
    .feat-img-bg img {
      display: block; width: 100%; height: 100%;
      object-fit: fill; border-radius: inherit;
    }
    .feat-img-inner {
      position: relative; z-index: 1;
      width: calc(100% - 3rem);
      border-radius: 16px; overflow: hidden;
      transform: translateY(120px);
      will-change: transform;
      transition: transform 0.05s linear;
    }
    .feat-img-inner img {
      display: block; width: 100%; height: auto;
      object-fit: cover; object-position: center top;
      border-radius: inherit;
      padding: 10px;
    }
    /* Text side */
    .feat-txt {
      display: flex; flex-direction: column; justify-content: center;
      padding: 0;
    }
    .feat-txt > .label,
    .feat-txt > h2,
    .feat-txt > p,
    .feat-txt > .feat-cta { margin: 0; padding: 0; }
    .feat-txt .label {
      margin-bottom: 0.6rem !important;
      font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2.5px;
      color: var(--muted);
    }
    .feat-txt h2 {
      font-size: clamp(2rem, 4vw, 2.8rem) !important; font-weight: 800 !important;
      line-height: 1.1 !important; letter-spacing: -0.5px;
      color: var(--text-primary);
      margin-bottom: 1rem !important;
    }
    .feat-txt > p {
      color: var(--muted); font-size: 0.92rem !important; line-height: 1.7 !important;
      margin-bottom: 2rem !important;
    }
    .feat-txt > p strong { color: var(--text-primary); }
    .feat-cta { margin-bottom: 0 !important; }
    /* Tag pills */
    .feat-tags {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
      margin-top: var(--pico-spacing) !important; padding: 0 !important;
    }
    .feat-tag {
      display: flex; align-items: center; justify-content: center;
      gap: 0.45rem;
      padding: 0.6rem 0.8rem;
      border: 1px solid rgba(0, 0, 0, 0.14);
      
      border-radius: 100px;
      font-size: 0.78rem; font-weight: 500;
      color: var(--text-primary);
      background: transparent;
      white-space: nowrap;
    }
    .feat-tag svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }

    /* Keep old utilities for other sections */
    .pl { display: inline-block; padding: 0.1rem 0.45rem; border-radius: 50px; font-size: 0.64rem; font-weight: 600; }
    .pg { background: var(--chip-green-bg); color: var(--chip-green); } .pb { background: var(--chip-blue-bg); color: var(--chip-blue); } .po { background: var(--chip-orange-bg); color: var(--chip-orange); }

    /* ═══ BENEFITS — 5-box grid with scroll-driven logo rows ═══ */
    .benefits-section { padding: 3rem 0 !important; }
    .benefits-header { text-align: center; margin-bottom: 3rem; }
    .benefits-header .label { margin-bottom: 0.4rem; }
    .benefits-header h2 {
      font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
      line-height: 1.1; color: var(--text-primary); letter-spacing: -0.5px;
    }
    /* Top row: 2 large cards */
    .ben-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    /* Bottom row: 3 equal cards */
    .ben-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
    /* Shared card style — generous padding like Mlsoon */
    .ben-card {
      background: rgb(240,234,229);
      border-radius: 24px;
      padding: 2rem 2rem 2.5rem;
      display: flex; flex-direction: column;
      gap: 0; overflow: hidden;
      position: relative;
    }
    .ben-card h5 {
      font-size: 1.1rem; font-weight: 700; line-height: 1.3;
      color: var(--text-primary); margin: 0;
    }
    .ben-card > p {
      font-size: 0.88rem; line-height: 1.65; color: var(--muted);
      margin: 0;
    }
    .ben-card > p strong { color: var(--text-primary); }
    /* Card 1: illustration in middle */
    .ben-card--illust .ben-illust {
      margin: 2rem -0.5rem;
      overflow: hidden;
    }
    .ben-card--illust .ben-illust img {
      width: 100%; display: block;
    }
    /* Card 2: scroll-driven logo rows */
    .ben-card--logos { overflow: hidden; }
    .ben-logos-wrap {
      margin: 1.8rem -0.5rem 1.8rem;
      display: flex; flex-direction: column; gap: 1rem;
      overflow: hidden;
      mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 10%, rgb(0,0,0) 90%, rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 10%, rgb(0,0,0) 90%, rgba(0,0,0,0) 100%);
    }
    .ben-logo-row {
      display: flex; gap: 0.75rem;
      will-change: transform;
     
    }
    .ben-logo-row img {
      width: 68px; height: 68px; border-radius: 50%;
      flex-shrink: 0; display: block;
      background: rgba(255,255,255,0.6);
      padding: 6px;
    }
    /* Bottom 3 cards */
    .ben-card--sm .ben-icon {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--bg); display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 40px rgba(97,74,68,0.08);
      margin-bottom: 3rem;
      flex-shrink: 0;
      font-size: 1rem;
    }
    .ben-card--sm .ben-icon svg { width: 22px; height: 22px; color: var(--text-primary); stroke-width: 1.5; }
    .ben-card--sm h5 { margin-bottom: 0.6rem; }
    .ben-card--sm p { font-size: 0.85rem; }

    /* ═══ TESTIMONIALS — Mlsoon style: big quote + scrolling cards ═══ */
    .reviews-section { padding: 3.5rem 0 2.5rem !important; overflow: hidden; }
    /* Big hero quote */
    .review-hero { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
    .review-hero blockquote {
      border: none; padding: 0; margin: 0 0 2rem;
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      font-weight: 800; line-height: 1.12;
      color: var(--text-primary); font-style: normal;
      letter-spacing: -0.5px;
    }
    .review-hero-author {
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    }
    .review-hero-avatar {
      width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
      border: 2px solid var(--bg);
    }
    .review-hero-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .review-hero-author strong { font-size: 0.9rem; color: var(--text-primary); display: block; }
    .review-hero-author span { font-size: 0.8rem; color: var(--text-secondary); }
    /* Scrolling review cards ticker */
    .review-ticker-wrap {
      max-width: 1072px; margin: 0 auto; padding: 0 1rem;
      overflow: hidden;
      mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 8%, rgb(0,0,0) 92%, rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 8%, rgb(0,0,0) 92%, rgba(0,0,0,0) 100%);
    }
    .review-track {
      display: flex; gap: 1.5rem;
      width: max-content;
      will-change: transform;
      /* JS-driven smooth scroll instead of CSS animation to avoid jump */
    }
    .review-card {
      flex-shrink: 0; width: 360px;
      background: var(--glass);
      border-radius: 24px;
      padding: 2rem;
      display: flex; flex-direction: column;
      justify-content: space-between;
    }
    .review-card p {
      font-size: 0.92rem; line-height: 1.65;
      color: var(--text-primary); margin: 0 0 1.5rem;
    }
    .review-card-author {
      display: flex; align-items: center; gap: 0.7rem;
    }
    .review-card-avatar {
      width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
      flex-shrink: 0; border: 1px solid var(--border-light);
    }
    .review-card-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .review-card-author strong { font-size: 0.85rem; color: var(--text-primary); display: block; }
    .review-card-author span { font-size: 0.78rem; color: var(--text-secondary); }

    /* ═══ PRICING (Mlsoon refined) ═══ */
    .pr-cards {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
      align-items: end;
    }
    .pr-card {
      background: var(--glass);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border-radius: 24px;
      padding: 1.75rem 1.5rem;
      text-align: start;
      border: 1px solid rgba(255,255,255,0);
      transition: transform 0.3s;
    }
    .pr-card:hover { transform: translateY(-3px); }
    .pr-card.feat {
      border: 5px solid #AB82CE;
      border-radius: 24px;
      padding: 0;
      overflow: hidden;
      background: linear-gradient(180deg, #C9ACE2 0%, #DCC8EE 20%, #EDE0F7 40%, #FDF0C8 70%, #FEF6E0 100%);
      align-self: stretch;
    }
    .pr-card.feat:hover { transform: translateY(-3px); }
    .feat-top {
      padding: 1.25rem 1.5rem 0.75rem;
      display: flex; justify-content: center;
    }
    /* Toggle pill — Mlsoon style */
    .tw-pill {
      display: inline-flex;
      border-radius: 60px; padding: 4px;
      background: rgb(244,241,238);
      gap: 4px;
    }
    .tw-pill button {
      padding: 0.55rem 1.8rem;
      font-size: 0.8rem;
      cursor: pointer; border: none;
      background: transparent;
      color: var(--pico-primary);
      font-weight: 600;
      transition: all 0.3s;
      border-radius: 60px;
    }
    .tw-pill button.on {
      background: var(--glass);
      box-shadow: 0 4px 30px rgba(97,74,68,0.06);
    }
    .tw-pill button:not(.on):hover {
      background: rgba(0,0,0,0.06);
    }
    .feat-body { padding: 1rem 1.5rem 1.75rem; }
    .pr-name { font-size: 0.85rem; font-weight: 500; color: var(--text-card); display: inline; }
    .pr-badge {
      display: inline-block; margin-inline-start: 0.4rem;
      font-size: 0.68rem; font-weight: 500;
      padding: 0.15rem 0.55rem; border-radius: 50px;
      background: var(--pr-badge-bg); color: var(--pr-badge-color);
      border: 1px solid rgb(0,168,45);
      vertical-align: middle;
    }
    /* Price */
    .pr-price {
      font-size: 2.4rem; font-weight: 800; color: var(--pico-primary);
      margin: 0.15rem 0 0.1rem !important; line-height: 1.1;
    }
    .pr-price small { font-size: 0.9rem; font-weight: 500; }
    .pr-price .nc-wrap { height: 1.15em; align-items: flex-start; }
    .pr-price .nc-t1, .pr-price .nc-t2 { line-height: 1.15em; }
    .pr-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.2rem !important; }
    .pr-list { list-style: none; padding: 0; margin: 0 0 1.5rem !important; }
    .pr-list li {
      padding: 0.45rem 0; font-size: 0.85rem;
      display: flex; align-items: center; gap: 0.5rem;
      color: var(--text-primary);
    }
    .chk { width: 16px; height: 16px; flex-shrink: 0; color: rgb(0,168,45); }
    /* Buttons — hover goes dark */
    .pr-btn {
      display: flex; align-items: center; justify-content: center;
      width: 100%; text-align: center;
      padding: 16px 24px; border-radius: 100px;
      font-size: 0.8rem; font-weight: 600;
      text-decoration: none;
      cursor: pointer; border: none;
      overflow: hidden; position: relative;
      transition: all 0.3s ease;
    }
    .pr-btn-dark { background: var(--text-primary); color: var(--pico-primary-inverse); }
    .pr-btn-dark:hover { background: rgb(50,45,43); }
    .pr-btn-light { background: rgb(244,241,238); color: var(--pico-primary); }
    .pr-btn-light:hover { background: var(--text-primary); color: var(--pico-primary-inverse); }

    /* ═══ BLOG — Mlsoon style ═══ */
    .blog-featured {
      display: grid; grid-template-columns: 1fr 1fr;
      background: var(--glass);
      border-radius: 16px; overflow: hidden;
      margin-top: 2rem; text-decoration: none; color: inherit;
    }
    .blog-featured:hover { color: inherit; }
    .blog-featured-img {
      overflow: hidden; border-radius: 16px; margin: 1rem; margin-inline-end: 0;
      aspect-ratio: 1/1;
    }
    .blog-featured-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      border-radius: 16px;
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .blog-featured:hover .blog-featured-img img { transform: scale(1.12); }
    .blog-featured-body {
      padding: 2rem 2rem 2rem 1.5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .blog-tag {
      display: inline-block; font-size: 0.68rem; font-weight: 600;
      padding: 0.3rem 0.8rem; border-radius: 100px; color: var(--pico-primary-inverse) !important;
      width: fit-content; text-transform: uppercase; letter-spacing: 0.3px;
      text-decoration: none;
    }
    .blog-tag--brown { background: rgb(97,74,68); }
    .blog-tag--blue { background: rgb(54,134,214); }
    .blog-tag--gold { background: rgb(214,163,54); }
    .blog-tag--green { background: rgb(28,184,124); }
    .blog-tag--red { background: rgb(201,80,46); }
    .blog-featured-body h3 {
      font-size: 1.5rem; font-weight: 800; line-height: 1.2;
      margin: 0.8rem 0 0.6rem !important; color: var(--text-primary);
    }
    .blog-featured-body > p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
    .blog-author {
      display: flex; align-items: center; gap: 0.6rem; margin-top: auto; padding-top: 2.5rem;
    }
    .blog-author-avatar {
      width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
      border: 2px solid var(--bg); flex-shrink: 0;
      background: var(--glass); padding: 1px;
    }
    .blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
    .blog-author strong { font-size: 0.82rem; display: block; color: var(--text-primary); }
    .blog-author span { font-size: 0.75rem; color: var(--muted); }
    .blog-author-tags { margin-inline-start: auto; }
    /* 3-col small cards */
    .blog-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 1.5rem;
    }
    .blog-sm { cursor: pointer; }
    .blog-sm-img {
      border-radius: 16px; overflow: hidden;
      aspect-ratio: 4/3;
    }
    .blog-sm-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .blog-sm:hover .blog-sm-img img { transform: scale(1.12); }
    .blog-sm-info {
      display: flex; align-items: flex-start; gap: 0.5rem;
      margin-top: 0.8rem; justify-content: space-between;
    }
    .blog-sm-info h5 { font-size: 0.88rem; font-weight: 700; line-height: 1.35; color: var(--text-primary); flex: 1; }
    .blog-sm-info p { font-size: 0.8rem; line-height: 1.55; color: var(--text-secondary); margin: 0.3rem 0 0; }

    /* ═══ COMMUNITY — Mlsoon style ═══ */
    .community-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 2rem;
      max-width: 952px; margin-inline: auto;
    }
    .community-card {
      background: var(--glass);
      backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border-radius: 24px; padding: 2.25rem;
      display: flex; flex-direction: column; gap: 1.5rem;
    }
    .community-card-top {
      display: flex; align-items: center; justify-content: space-between;
    }
    .community-card-logo {
      width: 60px; height: 60px; border-radius: 16px; overflow: hidden; flex-shrink: 0;
    }
    .community-card-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .community-card-top span {
      font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.5px; color: var(--muted);
    }
    .community-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
    .community-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
    .community-card-btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.65rem 1.5rem; border-radius: 100px;
      border: 1px solid var(--border-light); background: transparent;
      font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
      text-decoration: none; width: fit-content; margin-top: 0.5rem;
      transition: all 0.3s; cursor: pointer;
      overflow: hidden;
    }
    .community-card-btn:hover { background: var(--text-primary); color: var(--pico-primary-inverse); border-color: transparent; }

    /* ═══ CTA ═══ */
    .cta {
      padding: 5rem 0 !important;
      position: relative; overflow: hidden;
    }
    .cta .cloud-l, .cta .cloud-r { position: absolute; top: 50%; transform: translateY(-50%); width: 300px; pointer-events: none; transition: transform 0.4s ease-out, opacity 0.4s ease-out; }
    .cta .cloud-l { left: -30px; }
    .cta .cloud-r { right: -30px; }
    .cta .cloud-l img, .cta .cloud-r img { width: 100%; display: block; }

    /* ═══ FOOTER (Mlsoon — glass card on blue bg) ═══ */
    .foot-section { padding: 2.5rem 0 3rem !important; }
    .foot-card {
      background: var(--glass-light);
      backdrop-filter: var(--blur);
      -webkit-backdrop-filter: var(--blur);
      border-radius: 32px;
      border: 1px solid var(--border-light);
      padding: 2.75rem 3rem 2rem;
    }
    .fg { display: grid; grid-template-columns: 1fr auto auto; gap: 5rem; }
    .fb-desc { color: var(--muted); font-size: 0.9rem; margin-top: 0.6rem; line-height: 1.65; max-width: 300px; }
    .fb-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
    .fb-social a {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--text-primary); color: var(--pico-primary-inverse);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 0.85rem; font-weight: 700;
      transition: transform 0.2s; box-shadow: 0 4px 50px rgba(97,74,68,0.1);
    }
    .fb-social a:hover { transform: scale(1.08); }
    .fb-social a svg { width: 16px; height: 16px; fill: var(--pico-primary-inverse); }
    .fcol strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 1rem; font-weight: 700; color: var(--text-primary); }
    .fcol ul { list-style: none; padding: 0; margin: 0; list-style-type: none; }
    .fcol li { margin-bottom: 0.65rem; list-style: none; }
    .fcol a { color: var(--text-primary); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: opacity 0.2s; }
    .fcol a:hover { opacity: 0.5; }
    .foot-line {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 2.5rem; padding-top: 1.5rem;
      border-top: 1px solid rgba(117,113,112,0.2);
      font-size: 0.8rem; color: var(--muted);
    }
    .foot-line a { color: var(--text-primary); font-weight: 700; text-decoration: none; }
    /* Payment icons — standalone bar below footer */
    .foot-payments {
      display: flex; align-items: center; justify-content: center;
      gap: 0.75rem; padding: 1.25rem 1.5rem; flex-wrap: wrap;
    }
    .foot-payments-label {
      font-size: 0.75rem; color: var(--muted); font-weight: 500;
    }
    .foot-payments-icons {
      display: flex; align-items: center; gap: 0.5rem;
    }
    .foot-payments-icons img {
      height: 28px; width: auto; opacity: 0.6;
      transition: opacity 0.2s;
      filter: grayscale(0.3);
    }
    .foot-payments-icons img:hover { opacity: 1; filter: grayscale(0); }

    /* ═══ ANIMATIONS ═══ */
    @keyframes rise { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    .an { opacity: 0; transform: translateY(16px); }
    .an.v { animation: rise 0.45s ease-out forwards; }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 768px) {
      .feat-block,.pr-cards { grid-template-columns: 1fr; }
      .feat-block--rev .feat-img { order: 0; }
      .feat-block--rev .feat-text { order: 0; }
      .feat-img { min-height: 380px; }
      .feat-img-inner { width: calc(100% - 3rem); }
      .feat-txt { padding: 0 var(--pico-spacing); }
      .feat-cta .btn-dark { width: 100%; max-width: none; }
      .feat-tags { grid-template-columns: 1fr 1fr; margin-top: var(--pico-spacing) !important; }
      .ben-top, .ben-bottom { grid-template-columns: 1fr; }
      .dr { grid-template-columns: 1fr; }
      .fg { grid-template-columns: 1fr; gap: 2rem; }
      .nl, .nc, .nav-spacer { display: none !important; }
      .burger { display: flex !important; }
      nav.sn { width: 100%; left: 0; right: 0; transform: none; padding: 0.5rem 0.75rem; flex-wrap: wrap; }
      nav.sn .np {
        border: 1px solid var(--border-light);
        background: var(--glass-nav);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--shadow-soft) 0px 0.6px 0.6px -0.8px, var(--shadow-soft) 0px 2.3px 2.3px -1.7px, var(--shadow-soft) 0px 10px 10px -2.5px;
        padding: 0.5rem 0.75rem 0.5rem 1.1rem; width: 100%; justify-content: space-between;
        border-radius: 32px;
      }
      /* Mobile menu open state — separate card below nav with gap */
      nav.sn.menu-open .np { border-radius: 32px; }
      nav.sn.menu-open .nav-mobile-dropdown {
        display: flex; flex-direction: column; align-items: center;
        width: 100%;
        background: var(--glass-nav);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--border-light);
        border-radius: 32px;
        padding: 0.75rem 1rem 1rem;
        margin-top: 10px;
        box-shadow: var(--shadow-soft) 0px 0.6px 0.6px -0.8px, var(--shadow-soft) 0px 2.3px 2.3px -1.7px, var(--shadow-soft) 0px 10px 10px -2.5px;
        animation: dropSlide 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
      }
      .cloud-l, .cloud-r { width: 150px !important; }
      .cta .cloud-l, .cta .cloud-r { width: 120px !important; }
      .hero.hero--home { padding-top: 5.5rem; height: 100vh; min-height: 700px; max-height: 900px; padding-bottom: 0; }
      .hero--page { padding: 6rem 0 3rem; }
      .hero--page .hero-form .form-row { grid-template-columns: 1fr; }
      .hero hgroup h1 { font-size: 2rem; }
      .hero-btns { flex-direction: column; align-items: center; }
      .btn-dark, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
      /* Dashboard mobile: wider, shifted right, pushed to bottom of hero */
      .hero-dash {
        padding: 0; margin-top: 27%;
        max-width: none; width: 120%; margin-inline-start: 5%;
      }
      .hero-dash-inner {
        border-radius: 16px;
        border: 1px solid var(--border-card);
        box-shadow: 0 8px 40px rgba(0,0,0,0.1);
        transform: perspective(500px) translateY(-10px) scale(0.95) rotateX(6deg);
        -webkit-transform: perspective(500px) translateY(-10px) scale(0.95) rotateX(6deg);
      }
      .hero-dash img { border-radius: 16px; }
      /* Blog mobile */
      .blog-featured { grid-template-columns: 1fr; }
      .blog-featured-img { margin: 1rem 1rem 0; aspect-ratio: 16/10; }
      .blog-featured-body { padding: 1.25rem; }
      .blog-featured-body h3 { font-size: 1.2rem; }
      .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .blog-sm-img { aspect-ratio: 16/9; }
      /* Community mobile */
      .community-grid { grid-template-columns: 1fr; }
      .community-card { padding: 1.75rem; }
      /* Pricing mobile */
      .pr-cards { gap: 0.75rem; }
      .pr-card { padding: 1.5rem 1.25rem; }
      .feat-top { padding: 1rem 1.25rem 0.5rem; }
      .feat-body { padding: 0.75rem 1.25rem 1.5rem; }
      /* Reviews mobile */
      .review-hero blockquote { font-size: 1.6rem; }
      .review-card { width: 280px; padding: 1.5rem; }
      /* Footer mobile */
      .foot-card { padding: 2rem 1.5rem 1.5rem; border-radius: 24px; }
      .fb-desc { max-width: 100%; }
      .foot-line { flex-direction: column; gap: 0.5rem; text-align: center; }
    }
    /* ═══ STEPS TIMELINE — 3 Variations ═══ */

    /* ── Shared step base ── */
    .step-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--glass); border: 1px solid var(--border-light);
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 2; flex-shrink: 0;
      font-size: 1rem;
    }
    .step-icon svg {
      width: 30px; height: 30px; stroke: var(--text-primary); stroke-width: 1.8;
      fill: none; stroke-linecap: round; stroke-linejoin: round;
    }
    .step-title {
      font-size: 0.95rem; font-weight: 700; color: var(--text-primary); line-height: 1.35;
    }
    .step-desc {
      font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55;
      margin-top: 0.35rem;
    }
    .step-num {
      font-size: 0.7rem; font-weight: 800; color: var(--text-secondary);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.3rem;
    }

    /* ══════════════════════════════════════
       VARIATION 1 — Scroll-Reveal Draw Line
       ══════════════════════════════════════ */
    .steps--reveal {
      display: flex; align-items: flex-start; justify-content: center;
      position: relative; gap: 0; margin-top: 2.5rem;
      background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border-radius: 24px; padding: 3rem 2rem 2.5rem;
    }
    .steps--reveal .step {
      flex: 1; display: flex; flex-direction: column; align-items: center;
      text-align: center; position: relative; z-index: 1;
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .steps--reveal .step.anim-in { opacity: 1; transform: translateY(0); }
    .steps--reveal .step-title { margin-top: 1.2rem; }
    .steps--reveal .step-desc { max-width: 200px; }
    /* SVG connector line that draws itself */
    .steps--reveal .step-connector {
      position: absolute; top: 36px; z-index: 0;
      inset-inline-start: calc(50% + 40px);
      width: calc(100% - 80px); height: 2px;
    }
    .steps--reveal .step-connector line {
      stroke: var(--border-light); stroke-width: 2;
      stroke-dasharray: 500; stroke-dashoffset: 500;
      transition: stroke-dashoffset 1s ease 0.3s;
    }
    .steps--reveal .step.anim-in .step-connector line { stroke-dashoffset: 0; }
    /* Pulse ring on icon */
    .steps--reveal .step-icon::before {
      content: ''; position: absolute; inset: -6px;
      border-radius: 50%; border: 2px solid rgba(26,22,21,0);
      transition: border-color 0.4s, transform 0.6s;
      transform: scale(0.8);
    }
    .steps--reveal .step.anim-in .step-icon::before {
      border-color: rgba(26,22,21,0.12); transform: scale(1);
    }
    @media (max-width: 768px) {
      .steps--reveal { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
      .steps--reveal .step {
        flex-direction: row; text-align: start; align-items: flex-start;
        gap: 1rem; padding-bottom: 2rem;
      }
      .steps--reveal .step:last-child { padding-bottom: 0; }
      .steps--reveal .step-icon { width: 56px; height: 56px; min-width: 56px; }
      .steps--reveal .step-icon svg { width: 24px; height: 24px; }
      .steps--reveal .step-title { margin-top: 0; }
      .steps--reveal .step-desc { max-width: none; }
      .steps--reveal .step-connector {
        top: 60px; inset-inline-start: 28px;
        width: 2px; height: calc(100% - 60px);
      }
      .steps--reveal .step-connector line { stroke-dasharray: 200; stroke-dashoffset: 200; }
    }

    /* ══════════════════════════════════════
       VARIATION 2 — Stacked Card Reveal
       ══════════════════════════════════════ */
    .steps--cards {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .steps--cards .step {
      background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border-radius: 20px; padding: 2rem 1.5rem;
      text-align: center; position: relative;
      opacity: 0; transform: translateY(60px) scale(0.92);
      transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                  transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
      overflow: hidden;
    }
    .steps--cards .step.anim-in { opacity: 1; transform: translateY(0) scale(1); }
    .steps--cards .step-icon { margin: 0 auto 1rem; }
    /* Gradient glow behind icon */
    .steps--cards .step::before {
      content: ''; position: absolute;
      top: -40px; left: 50%; transform: translateX(-50%);
      width: 120px; height: 120px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,22,21,0.06) 0%, transparent 70%);
      opacity: 0; transition: opacity 0.6s ease 0.2s;
    }
    .steps--cards .step.anim-in::before { opacity: 1; }
    /* Step number pill */
    .steps--cards .step-num {
      display: inline-block; background: rgba(26,22,21,0.05);
      padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 0.8rem;
    }
    /* Hover lift */
    .steps--cards .step { transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                  transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .steps--cards .step.anim-in:hover {
      transform: translateY(-6px) scale(1);
    }
    @media (max-width: 768px) {
      .steps--cards { grid-template-columns: 1fr 1fr; gap: 1rem; }
    }
    @media (max-width: 480px) {
      .steps--cards { grid-template-columns: 1fr; }
    }

    /* ═══ FAQ ACCORDION ═══ */    /* ═══ FAQ ACCORDION ═══ */    /* ═══ FAQ ACCORDION ═══ */
    .faq-grid { max-width: 760px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border-light);
    }
    .faq-item:first-child { border-top: 1px solid var(--border-light); }
    .faq-section .faq-grid .faq-item:last-child { border-bottom: none; }
    .faq-section { padding-top: var(--pico-spacing); }
    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      padding: 1.25rem 0; background: none; border: none; cursor: pointer;
      font-size: 1rem; font-weight: 600; color: var(--text-primary);
      text-align: start; font-family: inherit; line-height: 1.4;
      box-shadow: none !important;
    }
    .faq-q:hover { color: var(--text-secondary); }
    .faq-icon {
      width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
      background: none; display: flex; align-items: center; justify-content: center;
    }
    .faq-icon svg { width: 14px; height: 14px; stroke: var(--text-secondary); stroke-width: 2; fill: none; transition: transform 0.3s; }
    .faq-item.open .faq-icon svg { stroke: var(--text-primary); transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.25,0.1,0.25,1), padding 0.35s;
      padding: 0 0;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
    .faq-a p {
      font-size: 0.92rem; line-height: 1.75; color: var(--text-body); margin: 0;
    }

    /* ═══ FAQ PAGE LAYOUT (sidebar + content) ═══ */
    .faq-page {
      display: grid; grid-template-columns: 220px 1fr; gap: 3rem;
      margin-top: 2rem; align-items: start;
    }
    .faq-sidebar {
      position: sticky; top: 100px;
      display: flex; flex-direction: column; gap: 0;
    }
    .faq-cat {
      display: block; padding: 0.7rem 1rem; border-radius: 10px;
      font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
      cursor: pointer; background: none; border: none; text-align: start;
      font-family: inherit; transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .faq-cat:hover { color: var(--text-primary); background: var(--surface-ghost); }
    .faq-cat.active {
      color: var(--text-primary); font-weight: 700;
      background: var(--surface-ghost);
    }
    .faq-content { min-width: 0; }
    .faq-content .faq-grid { max-width: 100%; margin-top: 0; }
    .faq-cat-title {
      font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
      margin: 2.5rem 0 0.5rem; padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-light);
    }
    .faq-cat-title:first-child { margin-top: 0; }
    @media (max-width: 768px) {
      .faq-page { grid-template-columns: 1fr; gap: 1.5rem; }
      .faq-sidebar {
        position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem;
        padding-bottom: 1rem; border-bottom: 1px solid var(--border-light);
      }
      .faq-cat { padding: 0.5rem 0.9rem; border-radius: 100px; font-size: 0.82rem; }
    }

    /* ═══ RTL OVERRIDES ═══ */
    [dir="rtl"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin),
    [dir="rtl"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin)::before,
    [dir="rtl"] *:not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.fa-light):not(.fa-thin)::after {
        font-family: 'IBM Plex Sans Arabic', 'Nunito', system-ui, sans-serif !important;
    }
    [dir="rtl"] .hero hgroup h1 { letter-spacing: 0; }
    [dir="rtl"] .label { letter-spacing: 1px; }
    /* Flip clouds in RTL */
    /* Tickers & review scroll always LTR regardless of page direction */
    .ticker-mask, .review-ticker-wrap, .b-logo-row { direction: ltr; }
    [dir="rtl"] .cloud-l { left: auto; right: -80px; }
    [dir="rtl"] .cloud-r { right: auto; left: -80px; }
    [dir="rtl"] .cta .cloud-l { left: auto; right: -30px; }
    [dir="rtl"] .cta .cloud-r { right: auto; left: -30px; }
    [dir="rtl"] nav.sn { transform: none; }

    /* ═══ SMOOTH SCROLL ═══ */
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    /* ═══ FLOATING ACTION BUTTONS — lang + share + chatbot ═══ */
    .fab-stack {
      position: fixed; bottom: 24px; z-index: 100;
      inset-inline-end: 24px;
      display: flex; flex-direction: column; align-items: center; gap: 12px;
    }
    .fab {
      width: 48px !important; height: 48px !important; min-width: 48px; min-height: 48px;
      max-width: 48px; max-height: 48px;
      border-radius: 50%; padding: 0 !important; margin: 0 !important;
      background: var(--text-primary); color: var(--pico-primary-inverse);
      border: none !important; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px var(--shadow-soft), 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
    }
    .fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px var(--shadow-soft); }
    .fab:active { transform: scale(0.95); }
    .fab svg { width: 24px !important; height: 24px !important; fill: none; stroke: currentColor; stroke-width: 2; display: block; }
    .fab--chat { width: 54px !important; height: 54px !important; min-width: 54px; min-height: 54px; max-width: 54px; max-height: 54px; }
    .fab--chat svg { width: 28px !important; height: 28px !important; }

    /* ── Share popup ── */
    .share-popup {
      position: absolute; bottom: 54px; inset-inline-end: 0;
      background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
      border: 1px solid var(--border-light); border-radius: 20px;
      padding: 12px; min-width: 200px;
      box-shadow: 0 8px 32px var(--shadow-soft);
      opacity: 0; transform: translateY(8px) scale(0.95); pointer-events: none;
      transition: opacity 0.25s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
    }
    .share-popup.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    .share-popup-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); padding: 4px 8px 10px; }
    .share-popup a {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 12px; border-radius: 12px;
      color: var(--text-primary); text-decoration: none;
      font-size: 0.85rem; font-weight: 500;
      transition: background 0.2s;
    }
    .share-popup a:hover { background: var(--surface-ghost-hover); }
    .share-popup a svg { width: 18px; height: 18px; fill: currentColor; stroke: none; flex-shrink: 0; }

    /* ── Chatbot ── */
    .chat-window {
      position: fixed; bottom: 90px; z-index: 101;
      inset-inline-end: 24px;
      width: 370px; max-width: calc(100vw - 48px);
      max-height: 520px; height: 70vh;
      background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-light); border-radius: 24px;
      box-shadow: 0 12px 48px var(--shadow-soft), 0 4px 12px rgba(0,0,0,0.08);
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(16px) scale(0.95); pointer-events: none;
      transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    .chat-header {
      display: flex; align-items: center; gap: 10px;
      padding: 16px 20px; border-bottom: 1px solid var(--border-light);
    }
    .chat-header-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
    .chat-header-info strong { font-size: 0.88rem; color: var(--text-primary); display: block; }
    .chat-header-info span { font-size: 0.72rem; color: var(--text-secondary); }
    .chat-header-close {
      margin-inline-start: auto; background: none; border: none; cursor: pointer;
      color: var(--text-secondary); font-size: 1.2rem; padding: 4px;
      transition: color 0.2s;
    }
    .chat-header-close:hover { color: var(--text-primary); }
    .chat-body {
      flex: 1; overflow-y: auto; padding: 16px 20px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .chat-msg {
      max-width: 82%; padding: 10px 14px;
      border-radius: 16px; font-size: 0.85rem; line-height: 1.55;
    }
    .chat-msg--bot {
      align-self: flex-start;
      background: var(--surface-ghost); color: var(--text-primary);
      border-end-start-radius: 4px;
    }
    .chat-msg--user {
      align-self: flex-end;
      background: var(--text-primary); color: var(--pico-primary-inverse);
      border-end-end-radius: 4px;
    }
    .chat-input-wrap {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 16px; border-top: 1px solid var(--border-light);
    }
    .chat-input {
      flex: 1; border: none; background: var(--surface-ghost);
      border-radius: 12px; padding: 12px 16px;
      font-size: 0.88rem; color: var(--text-primary);
      outline: none; font-family: inherit;
      min-height: 44px; box-sizing: border-box;
    }
    .chat-input::placeholder { color: var(--text-secondary); }
    .chat-send {
      width: 44px !important; height: 44px !important; min-width: 44px; max-width: 44px;
      border-radius: 50%; padding: 0 !important; margin: 0 !important;
      background: var(--text-primary); color: var(--pico-primary-inverse);
      border: none !important; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s; flex-shrink: 0;
    }
    .chat-send:hover { transform: scale(1.08); }
    .chat-send svg { width: 20px !important; height: 20px !important; fill: none; stroke: currentColor; stroke-width: 2; display: block; }

    /* ── Language modal ── */
    .lang-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,0.25);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .lang-overlay.open { opacity: 1; pointer-events: auto; }
    .lang-modal {
      background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-light); border-radius: 24px;
      padding: 1.5rem; width: 340px; max-width: calc(100vw - 48px);
      box-shadow: 0 16px 48px var(--shadow-soft);
      transform: translateY(12px) scale(0.96);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .lang-overlay.open .lang-modal { transform: translateY(0) scale(1); }
    .lang-modal-title {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--text-secondary);
      margin-bottom: 0.75rem; padding-inline-start: 4px;
    }
    .lang-modal-close {
      position: absolute; top: 16px; inset-inline-end: 16px;
      background: none; border: none; cursor: pointer;
      color: var(--text-secondary); font-size: 1.2rem;
    }
    .lang-modal { position: relative; }
    .lang-list { display: flex; flex-direction: column; gap: 4px; }
    .lang-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 12px; border-radius: 14px;
      color: var(--text-primary); text-decoration: none;
      font-size: 0.88rem; font-weight: 500; cursor: pointer;
      transition: background 0.2s;
    }
    .lang-item:hover { background: var(--surface-ghost-hover); }
    .lang-item.active { background: var(--surface-ghost); font-weight: 700; }
    .lang-item span.lang-flag { font-size: 1.15rem; }
    .lang-item span.lang-native { color: var(--text-secondary); font-size: 0.78rem; margin-inline-start: auto; }

    /* ── Cookie consent banner ── */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-inner {
      max-width: 560px; margin: 0 auto 1.25rem;
      padding: 1.25rem 1.5rem;
      background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-light); border-radius: 20px;
      box-shadow: 0 8px 32px var(--shadow-soft);
      display: flex; align-items: center; gap: 1rem;
      margin-inline: 1rem;
    }
    .cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
    .cookie-text { flex: 1; }
    .cookie-text p {
      font-size: 0.82rem; line-height: 1.55; color: var(--text-body); margin: 0;
    }
    .cookie-text a {
      color: var(--text-primary); font-weight: 600; text-decoration: underline;
      text-underline-offset: 2px;
    }
    .cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
    .cookie-accept {
      padding: 0.55rem 1.1rem !important; border-radius: 100px;
      background: var(--surface-btn-dark); color: var(--pico-primary-inverse);
      border: none !important; font-size: 0.78rem; font-weight: 600;
      cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .cookie-accept:hover { background: var(--text-primary); }
    .cookie-decline {
      padding: 0.55rem 1.1rem !important; border-radius: 100px;
      background: transparent; color: var(--text-secondary);
      border: 1px solid var(--border-light) !important; font-size: 0.78rem; font-weight: 600;
      cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap;
    }
    .cookie-decline:hover { background: var(--surface-ghost-hover); color: var(--text-primary); }
    @media (max-width: 560px) {
      .cookie-inner { flex-direction: column; align-items: stretch; text-align: center; }
      .cookie-icon { display: none; }
      .cookie-btns { justify-content: center; }
    }

    /* ── Language detection dialog ── */
    .lang-detect-overlay {
      position: fixed; inset: 0; z-index: 195;
      background: rgba(0,0,0,0.25);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .lang-detect-overlay.open { opacity: 1; pointer-events: auto; }
    .lang-detect-modal {
      position: relative;
      background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-light); border-radius: 24px;
      padding: 2rem 1.5rem 1.5rem; width: 380px; max-width: calc(100vw - 48px);
      box-shadow: 0 16px 48px var(--shadow-soft);
      transform: translateY(12px) scale(0.96);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
      text-align: center;
    }
    .lang-detect-overlay.open .lang-detect-modal { transform: translateY(0) scale(1); }
    .lang-detect-close {
      position: absolute; top: 14px; inset-inline-end: 14px;
      background: none; border: none !important; padding: 0 !important;
      cursor: pointer; color: var(--text-secondary); font-size: 1.2rem;
      width: auto !important; height: auto !important;
    }
    .lang-detect-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
    .lang-detect-title {
      font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
      margin-bottom: 0.35rem; line-height: 1.35;
    }
    .lang-detect-sub {
      font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55;
      margin-bottom: 1.5rem;
    }
    .lang-detect-btns { display: flex; gap: 0.5rem; justify-content: center; }
    .lang-detect-btns .btn-dark {
      padding: 0.65rem 1.5rem !important; font-size: 0.82rem;
      width: auto !important;
    }
    .lang-detect-btns .cookie-decline {
      padding: 0.65rem 1.5rem !important;
    }
  .content-card {
  background: var(--glass);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--r);
  border: 1px solid var(--border-card);
  padding: 2rem;
}
.content-card .ben-icon { margin-bottom: 1.5rem; }
.content-card .ben-icon i { font-size: 20px; color: var(--text-primary); }
.content-card h5 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.6rem !important;
}
.content-card > p { font-size: 0.85rem; line-height: 1.65; color: var(--muted); }
.content-grid { margin-top: 1.5rem; }
.content-featured { margin-top: 2rem; }
.pr-old { color: var(--muted); font-size: 0.35em; margin-right: 0.25rem; }
:where(.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-brands, [class*="fa-"]):where(i, span) {
    font-family: revert;
}
  /* ╔══════════════════════════════════════════════════════════════╗
       ║  🎨 MLSOON THEME OVERRIDE                                   ║
       ║  Change colors here to apply your brand identity.           ║
       ║  Delete this entire <style> block to restore defaults.      ║
       ╚══════════════════════════════════════════════════════════════╝ */
 

    /* ── LIGHT MODE ── */
    :root[data-theme="light"] {

      /* 🎨 Page backgrounds
         --bg           → Main page background (body)
         --bg-warm      → Warm sections background
         --page-g1      → Page body gradient: start color (blue-ish)
         --page-g2      → Page body gradient: mid color (warm/beige)
      */
      /* --bg: #f5f3ed; */
      /* --bg-warm: #edeae2; */
       --page-g1: #FAF9F7; 
      /* --page-g2: #eae7df; */

      /* 🌅 Hero gradient
         --hero-from    → Hero top color (sky blue)
         --hero-to      → Hero bottom color (warm peach)
      */
       --hero-from:#C9ACE2;
      /* --hero-to: #eddfd0; */

      /* ✏️ Text colors
         --text-primary    → Headings, nav links, strong text (darkest)
         --text-secondary  → Subtitles, labels, muted text
         --text-body       → Paragraph body text
         --text-card       → Text inside cards
         --muted           → Very muted/disabled text
      */
       --text-primary: #2D1B69 
      /* --text-secondary: rgb(117,113,112); */
      /* --text-body: rgb(60,56,55); */
      /* --text-card: rgb(69,63,61); */
      /* --muted: #7a7a8a; */

      /* 🔘 Buttons
         --surface-btn-dark        → Dark button background (CTA)
         --surface-btn-dark-hover  → Dark button hover
         --pico-primary-inverse    → Dark button text color (white)
         --surface-ghost           → Ghost/transparent button background
         --surface-ghost-hover     → Ghost button hover
      */
      /* --surface-btn-dark: rgba(26,22,21,0.85); */
      /* --surface-btn-dark-hover: rgb(26,22,21); */
      /* --pico-primary-inverse: #fff; */
      /* --surface-ghost: rgba(255,255,255,0.1); */
      /* --surface-ghost-hover: rgba(255,255,255,0.3); */

      /* 🪟 Glass / Cards
         --glass       → Glass card background (navbar, cards, modals)
         --glass-light → Lighter glass (form inputs, overlays)
         --glass-nav   → Navigation bar glass
         --blur        → Backdrop blur amount
      */
      /* --glass: rgba(255,255,255,0.7); */
      /* --glass-light: rgba(255,255,255,0.25); */
      /* --glass-nav: rgba(255,255,255,0.5); */
      /* --blur: blur(10px); */

      /* 📏 Borders & Shadows
         --border-light → General light borders
         --border-card  → Card borders
         --shadow-soft  → Soft drop shadows
      */
      /* --border-light: rgba(117,115,114,0.15); */
      /* --border-card: rgba(0,0,0,0.08); */
      /* --shadow-soft: rgba(26,22,21,0.08); */

      /* 🏷️ Chip / Badge colors (feature cards)
         Each chip has: --chip-{color}-bg (background) + --chip-{color} (icon/text)
      */
      /* --chip-blue-bg: #e0edfb;    --chip-blue: #2d7dd2; */
      /* --chip-green-bg: #e2f5ea;   --chip-green: #2a9d5c; */
      /* --chip-purple-bg: #ede0fb;  --chip-purple: #7c3aed; */
      /* --chip-orange-bg: #fde8d8;  --chip-orange: #d97706; */
      /* --chip-pink-bg: #fce0ee;    --chip-pink: #db2777; */
      /* --chip-gray-bg: #eee;       --chip-gray: #555; */

      /* 💰 Pricing section
         --pr-toggle-bg   → Toggle switch background
         --pr-badge-bg    → "Save 20%" badge background
         --pr-badge-color → "Save 20%" badge text
      */
      /* --pr-toggle-bg: rgba(255,255,255,0.7); */
      /* --pr-badge-bg: rgb(234,243,237); */
      /* --pr-badge-color: rgb(0,168,45); */

      /* 📝 Blog tag colors */
      /* --tag-brown: rgb(78,55,36); */
      /* --tag-red: rgb(198,61,47); */
      /* --tag-blue: rgb(29,78,216); */
      /* --tag-gold: rgb(180,120,20); */
      /* --tag-green: rgb(22,101,52); */

      /* 🦶 Footer
         --foot-bg            → Footer card background
         --foot-border        → Footer card border
         --foot-bottom-border → Copyright line border
      */
      /* --foot-bg: rgba(255,255,255,0.25); */
      /* --foot-border: rgba(117,115,114,0.15); */
      /* --foot-bottom-border: rgba(117,113,112,0.2); */
    }

    /* ── DARK MODE ── */
    :root[data-theme="dark"] {

      /* 🎨 Page backgrounds */
      /* --bg: #1a1615; */
      /* --bg-warm: #242019; */
      /* --page-g1: #1e2a36; */
      /* --page-g2: #242019; */

      /* 🌅 Hero gradient */
      /* --hero-from: #1a2a3a; */
      /* --hero-to: #2a2219; */

      /* ✏️ Text colors */
      /* --text-primary: rgb(235,230,225); */
      /* --text-secondary: rgb(160,155,150); */
      /* --text-body: rgb(190,185,180); */
      /* --text-card: rgb(180,175,170); */
      /* --muted: #8a8a96; */

      /* 🔘 Buttons (inverted in dark mode) */
      /* --surface-btn-dark: rgba(235,230,225,0.9); */
      /* --surface-btn-dark-hover: rgb(235,230,225); */
      /* --pico-primary-inverse: #1a1615; */
      /* --surface-ghost: rgba(255,255,255,0.06); */
      /* --surface-ghost-hover: rgba(255,255,255,0.12); */

      /* 🪟 Glass / Cards */
      /* --glass: rgba(40,36,34,0.7); */
      /* --glass-light: rgba(40,36,34,0.4); */
      /* --glass-nav: rgba(30,27,25,0.65); */

      /* 📏 Borders & Shadows */
      /* --border-light: rgba(255,255,255,0.08); */
      /* --border-card: rgba(255,255,255,0.06); */
      /* --shadow-soft: rgba(0,0,0,0.3); */

      /* 🏷️ Chips (semi-transparent in dark mode) */
      /* --chip-blue-bg: rgba(45,125,210,0.15);    --chip-blue: #6db3f8; */
      /* --chip-green-bg: rgba(42,157,92,0.15);    --chip-green: #5dd89a; */
      /* --chip-purple-bg: rgba(124,58,237,0.15);  --chip-purple: #b48aff; */
      /* --chip-orange-bg: rgba(217,119,6,0.15);   --chip-orange: #fbbf24; */
      /* --chip-pink-bg: rgba(219,39,119,0.15);    --chip-pink: #f472b6; */
      /* --chip-gray-bg: rgba(255,255,255,0.08);   --chip-gray: #aaa; */

      /* 💰 Pricing */
      /* --pr-toggle-bg: rgba(40,36,34,0.7); */
      /* --pr-badge-bg: rgba(42,157,92,0.15); */
      /* --pr-badge-color: rgb(93,216,154); */

      /* 📝 Blog tags (lighter in dark mode) */
      /* --tag-brown: rgb(210,170,130); */
      /* --tag-red: rgb(248,130,120); */
      /* --tag-blue: rgb(130,170,248); */
      /* --tag-gold: rgb(240,190,80); */
      /* --tag-green: rgb(100,210,140); */

      /* 🦶 Footer */
      /* --foot-bg: rgba(40,36,34,0.4); */
      /* --foot-border: rgba(255,255,255,0.06); */
      /* --foot-bottom-border: rgba(255,255,255,0.08); */
    }
  
