:root {
        --bg-0: #f4f8fa;
        --bg-1: #edf5f7;
        --bg-2: #e3eef1;
        --panel: rgba(255, 255, 255, 0.92);
        --panel-strong: rgba(255, 255, 255, 1);
        --line: rgba(63, 61, 62, 0.12);
        --line-strong: rgba(34, 207, 227, 0.28);
        --text-main: #222526;
        --text-soft: #555b5d;
        --text-muted: #8a9295;
        --accent: #14BFD1;
        --accent-strong: #14BFD1;
        --accent-alt: #22CFE3;
        --accent-alt-strong: #14BFD1;
        --radius-lg: 1.75rem;
        --radius-md: 1.25rem;
      }

      /* RESET */
      #navbar { display: none !important; }
      body {
        margin: 0;
        padding: 0;
        font-family: 'Manrope', sans-serif;
        background:
          radial-gradient(circle at 10% 0%, rgba(34, 207, 227, 0.12), transparent 32%),
          radial-gradient(circle at 88% 8%, rgba(63, 61, 62, 0.08), transparent 34%),
          linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--bg-2) 100%);
        color: var(--text-main);
      }
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image:
          radial-gradient(rgba(20, 32, 51, 0.07) 1.4px, transparent 1.4px);
        background-size: 26px 26px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 55%);
        z-index: -1;
      }
      html { scroll-behavior: smooth; }
      a { color: inherit; }

      .blog-posts { padding-top: 100px; }

      .bg-white { background-color: rgba(8, 17, 30, 0.72) !important; }
      .bg-gray-50 { background-color: rgba(10, 18, 32, 0.78) !important; }
      .bg-gray-100 { background-color: rgba(15, 23, 42, 0.82) !important; }
      .bg-gray-200 { background-color: rgba(30, 41, 59, 0.82) !important; }
      .bg-gray-300 { background-color: rgba(71, 85, 105, 0.72) !important; }
      .bg-gray-800 { background-color: rgba(7, 12, 22, 0.94) !important; }
      .bg-gray-900 { background: linear-gradient(180deg, rgba(10, 16, 27, 0.98), rgba(5, 9, 16, 0.98)) !important; }
      .bg-blue-50 { background-color: rgba(15, 37, 63, 0.74) !important; }
      .bg-blue-100 { background-color: rgba(18, 58, 99, 0.82) !important; }
      .bg-purple-50 { background-color: rgba(18, 30, 60, 0.76) !important; }
      .bg-purple-100 { background-color: rgba(30, 46, 94, 0.82) !important; }
      .bg-orange-50 { background-color: rgba(57, 32, 10, 0.8) !important; }
      .bg-orange-100 { background-color: rgba(98, 54, 15, 0.82) !important; }
      .bg-indigo-50 { background-color: rgba(17, 27, 59, 0.78) !important; }
      .bg-indigo-100 { background-color: rgba(28, 43, 92, 0.84) !important; }
      .bg-teal-50 { background-color: rgba(11, 42, 44, 0.8) !important; }
      .bg-teal-100 { background-color: rgba(18, 70, 71, 0.82) !important; }
      .bg-red-50 { background-color: rgba(61, 19, 23, 0.78) !important; }
      .bg-red-100 { background-color: rgba(104, 35, 45, 0.82) !important; }
      .bg-yellow-50 { background-color: rgba(58, 42, 12, 0.8) !important; }
      .bg-yellow-100 { background-color: rgba(95, 69, 18, 0.84) !important; }
      .bg-pink-50 { background-color: rgba(69, 23, 50, 0.76) !important; }
      .bg-pink-100 { background-color: rgba(113, 43, 83, 0.82) !important; }
      body[data-theme="light"] .bg-white { background-color: rgba(255, 255, 255, 0.84) !important; }
      body[data-theme="light"] .bg-gray-50 { background-color: rgba(246, 249, 253, 0.92) !important; }
      body[data-theme="light"] .bg-gray-100 { background-color: rgba(241, 245, 249, 0.98) !important; }
      body[data-theme="light"] .bg-gray-200 { background-color: rgba(226, 232, 240, 0.96) !important; }
      body[data-theme="light"] .bg-gray-300 { background-color: rgba(203, 213, 225, 0.94) !important; }
      body[data-theme="light"] .bg-gray-800 { background-color: rgba(255, 255, 255, 0.94) !important; }
      body[data-theme="light"] .bg-gray-900 { background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.98)) !important; }
      body[data-theme="light"] .bg-blue-50 { background-color: rgba(231, 242, 255, 0.92) !important; }
      body[data-theme="light"] .bg-blue-100 { background-color: rgba(214, 232, 255, 0.95) !important; }
      body[data-theme="light"] .bg-purple-50 { background-color: rgba(239, 238, 255, 0.9) !important; }
      body[data-theme="light"] .bg-purple-100 { background-color: rgba(226, 223, 255, 0.95) !important; }
      body[data-theme="light"] .bg-orange-50 { background-color: rgba(255, 243, 226, 0.92) !important; }
      body[data-theme="light"] .bg-orange-100 { background-color: rgba(255, 233, 203, 0.96) !important; }
      body[data-theme="light"] .bg-indigo-50 { background-color: rgba(235, 239, 255, 0.92) !important; }
      body[data-theme="light"] .bg-indigo-100 { background-color: rgba(222, 229, 255, 0.96) !important; }
      body[data-theme="light"] .bg-teal-50 { background-color: rgba(228, 249, 246, 0.94) !important; }
      body[data-theme="light"] .bg-teal-100 { background-color: rgba(207, 243, 238, 0.96) !important; }
      body[data-theme="light"] .bg-red-50 { background-color: rgba(255, 236, 238, 0.92) !important; }
      body[data-theme="light"] .bg-red-100 { background-color: rgba(255, 223, 228, 0.96) !important; }
      body[data-theme="light"] .bg-yellow-50 { background-color: rgba(255, 248, 222, 0.94) !important; }
      body[data-theme="light"] .bg-yellow-100 { background-color: rgba(255, 240, 195, 0.96) !important; }
      body[data-theme="light"] .bg-pink-50 { background-color: rgba(255, 236, 246, 0.92) !important; }
      body[data-theme="light"] .bg-pink-100 { background-color: rgba(255, 220, 239, 0.96) !important; }

      .border-gray-100,
      .border-gray-200,
      .border-gray-300,
      .border-gray-800 { border-color: var(--line) !important; }
      .border-blue-100 { border-color: rgba(34, 207, 227, 0.2) !important; }
      .border-purple-100 { border-color: rgba(147, 197, 253, 0.18) !important; }
      .border-orange-100 { border-color: rgba(251, 191, 36, 0.16) !important; }
      .border-indigo-100 { border-color: rgba(129, 140, 248, 0.16) !important; }
      .border-teal-100 { border-color: rgba(94, 234, 212, 0.16) !important; }
      .border-red-100 { border-color: rgba(248, 113, 113, 0.18) !important; }
      .border-yellow-100 { border-color: rgba(250, 204, 21, 0.18) !important; }

      .text-gray-800,
      .text-gray-700 { color: var(--text-main) !important; }
      .text-gray-600,
      .text-gray-500 { color: var(--text-muted) !important; }
      .text-gray-400,
      .text-gray-300 { color: #a8b8cc !important; }
      body[data-theme="light"] .text-gray-400,
      body[data-theme="light"] .text-gray-300 { color: #7a8ba0 !important; }
      .text-blue-600 { color: var(--accent) !important; }
      .text-green-400,
      .text-green-500 { color: #4ade80 !important; }
      .text-red-500,
      .text-red-600 { color: #fca5a5 !important; }
      .text-yellow-600 { color: #fcd34d !important; }
      .text-pink-600 { color: #f9a8d4 !important; }
      .text-purple-600,
      .text-indigo-600 { color: #a5b4fc !important; }
      .text-teal-600 { color: #5eead4 !important; }

      .shadow-sm { box-shadow: 0 14px 34px rgba(2, 6, 23, 0.24) !important; }
      .shadow-lg { box-shadow: 0 18px 46px rgba(2, 6, 23, 0.34) !important; }
      .shadow-xl { box-shadow: 0 22px 58px rgba(2, 6, 23, 0.4) !important; }
      .shadow-2xl { box-shadow: 0 34px 90px rgba(2, 6, 23, 0.5) !important; }
      body[data-theme="light"] .shadow-sm { box-shadow: 0 14px 28px rgba(148, 163, 184, 0.16) !important; }
      body[data-theme="light"] .shadow-lg { box-shadow: 0 20px 38px rgba(148, 163, 184, 0.18) !important; }
      body[data-theme="light"] .shadow-xl { box-shadow: 0 24px 48px rgba(148, 163, 184, 0.2) !important; }
      body[data-theme="light"] .shadow-2xl { box-shadow: 0 34px 70px rgba(148, 163, 184, 0.24) !important; }

      /* ANIMATIONS */
      @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
      .animate-float { animation: float 12s ease-in-out infinite; }

      @keyframes popIn { 0% { opacity: 0; transform: translateY(10px) scale(0.95); } 10% { opacity: 1; transform: translateY(0) scale(1); } 90% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-10px) scale(0.95); } }
      .anim-user { animation: popIn 6s infinite; animation-delay: 0.5s; opacity: 0; }
      .anim-bot  { animation: popIn 6s infinite; animation-delay: 2s; opacity: 0; }
      .anim-dm   { animation: dropDown 6s infinite; animation-delay: 3.5s; opacity: 0; }

      @keyframes dropDown { 0% { opacity: 0; transform: translateY(-14px) scale(0.96); } 15% { opacity: 1; transform: translateY(0) scale(1); } 85% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-8px) scale(0.96); } }

      @keyframes likeBounce { 0% { transform: scale(1); color: #94a3b8; } 35% { transform: scale(1.16); color: #22CFE3; } 100% { transform: scale(1); color: #22CFE3; } }
      .anim-like-1 { animation: likeBounce 6s infinite; animation-delay: 0.8s; color: #94a3b8; }

      @keyframes scan { 0% { top: 0; opacity: 0.5; } 50% { top: 100%; opacity: 1; } 100% { top: 0; opacity: 0.5; } }
      .anim-scanner { animation: scan 4.5s linear infinite; }
      @keyframes reveal { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }
      .anim-reveal { animation: reveal 4.5s infinite; }

      @keyframes slideUpFade { 0% { transform: translateY(20px); opacity: 0; } 20% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-20px); opacity: 0; } }
      .anim-sale-1 { animation: slideUpFade 6s infinite; animation-delay: 0s; opacity: 0; }

      @keyframes pulsePurple { 0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.3); } 70% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); } }
      .anim-pulse-ai { animation: pulsePurple 3.2s infinite; }

      @keyframes growBar { 0% { height: 20%; } 50% { height: 80%; } 100% { height: 20%; } }
      @keyframes growBarRed { 0% { height: 25%; } 50% { height: 45%; } 100% { height: 25%; } }
      @keyframes growBarGray { 0% { height: 45%; } 50% { height: 65%; } 100% { height: 45%; } }
      .anim-bar { animation: growBar 4.2s ease-in-out infinite; }
      .anim-bar-red { animation: growBarRed 3.8s ease-in-out infinite; }
      .anim-bar-gray { animation: growBarGray 4.6s ease-in-out infinite; animation-delay: 0.8s; }

      @keyframes pulseRed { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.32); } 70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); } 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); } }
      .anim-pulse-red { animation: pulseRed 2.4s infinite; }

      @keyframes likePing { 0% { opacity:0; transform:translateY(2px); } 15% { opacity:1; transform:translateY(-6px); } 100% { opacity:0; transform:translateY(-18px); } }
      .likes-ping { position:absolute; right:-1.4rem; top:-0.2rem; font-size:0.6rem; font-weight:800; color:#14BFD1; pointer-events:none; animation:likePing 5s infinite; animation-delay:2s; opacity:0; }

      @keyframes winnerPop { 0% { transform: scale(0.8); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(0.8); opacity: 0.5; } }
      .anim-winner { animation: winnerPop 3.4s infinite ease-in-out; }

      @keyframes heartBeat { 0% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.3); } 70% { transform: scale(1); } }
      .anim-heart { animation: heartBeat 2s infinite; }

      @keyframes typing { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; } }
      .anim-typing { overflow: hidden; white-space: nowrap; border-right: 2px solid; animation: typing 4s steps(24) infinite; }

      .text-gradient { background: linear-gradient(90deg, #f8fbff 0%, #22CFE3 38%, #38bdf8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      body[data-theme="light"] .text-gradient { background: linear-gradient(90deg, #0f172a 0%, #14BFD1 48%, #14BFD1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .bg-gradient-primary { background: linear-gradient(135deg, rgba(8, 17, 30, 0.98), rgba(11, 31, 56, 0.96)); }

      .premium-nav {
        background: rgba(5, 11, 20, 0.68) !important;
        border-bottom: 1px solid var(--line) !important;
        box-shadow: 0 16px 40px rgba(2, 6, 23, 0.42);
      }
      body[data-theme="light"] .premium-nav {
        background: rgba(255, 255, 255, 0.76) !important;
        box-shadow: 0 14px 34px rgba(148, 163, 184, 0.18);
      }
      .brand-badge {
        background: rgba(63, 61, 62, 0.92);
        border: 1px solid rgba(34, 207, 227, 0.42);
        padding: 0.08rem;
        overflow: hidden;
        box-shadow: 0 18px 36px rgba(14, 165, 233, 0.28);
      }
      .brand-logo-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: inherit;
      }
      .nav-link {
        color: var(--text-soft);
        transition: color 0.25s ease;
      }
      .nav-link:hover { color: #ffffff; }
      body[data-theme="light"] .nav-link:hover,
      body[data-theme="light"] .nav-link:focus-visible {
        color: #14BFD1 !important;
      }
      .lang-toggle {
        background: rgba(12, 20, 34, 0.7);
        color: var(--text-soft);
        border: 1px solid var(--line);
        backdrop-filter: blur(18px);
      }
      body[data-theme="light"] .lang-toggle {
        background: rgba(255, 255, 255, 0.86);
      }
      .lang-toggle:hover {
        border-color: var(--line-strong);
        background: rgba(15, 23, 42, 0.82);
      }
      body[data-theme="light"] .lang-toggle:hover {
        background: rgba(239, 246, 255, 0.95);
      }
      .premium-btn-primary {
        background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
        color: #eff8ff !important;
        border: 1px solid rgba(34, 207, 227, 0.24);
        box-shadow: 0 20px 42px rgba(34, 207, 227, 0.3);
      }
      .premium-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 52px rgba(34, 207, 227, 0.38);
      }
      .premium-btn-secondary {
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-main) !important;
        border: 1px solid var(--line);
        backdrop-filter: blur(18px);
      }
      .premium-btn-secondary {
        background: rgba(255, 255, 255, 0.84);
      }
      .premium-btn-secondary:hover {
        transform: translateY(-2px);
        border-color: var(--line-strong);
        background: rgba(15, 23, 42, 0.78);
      }
      .premium-btn-secondary:hover {
        background: rgba(239, 246, 255, 0.98);
      }
      .hero-shell { padding-top: 8.5rem; padding-bottom: 5.4rem; }
      .hero-orb {
        position: absolute;
        border-radius: 9999px;
        filter: blur(104px);
        opacity: 0.34;
        pointer-events: none;
      }
      .hero-orb-1 {
        width: 24rem;
        height: 24rem;
        top: -5rem;
        right: -4rem;
        background: rgba(34, 211, 238, 0.16);
      }
      .hero-orb-1 {
        background: rgba(14, 165, 233, 0.22);
        opacity: 0.5;
      }
      .hero-orb-2 {
        width: 26rem;
        height: 26rem;
        bottom: -7rem;
        left: -5rem;
        background: rgba(59, 130, 246, 0.16);
      }
      .hero-orb-2 {
        background: rgba(34, 207, 227, 0.2);
        opacity: 0.45;
      }
      .kicker-chip {
        background: rgba(10, 19, 33, 0.76) !important;
        color: #d7f0ff !important;
        border: 1px solid rgba(34, 207, 227, 0.18) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 30px rgba(2, 6, 23, 0.24);
        backdrop-filter: blur(18px);
      }
      .kicker-chip {
        background: rgba(255, 255, 255, 0.88) !important;
        color: var(--text-main) !important;
      }
      .hero-copy h1 {
        letter-spacing: -0.058em;
        line-height: 0.98;
      }
      .hero-copy p {
        max-width: 35rem;
      }
      .hero-device {
        width: min(100%, 19.6rem);
        aspect-ratio: 390 / 650;
        padding: 0.68rem !important;
        border-width: 1px !important;
        border-radius: 3.15rem !important;
        overflow: visible !important;
        background:
          linear-gradient(135deg, rgba(241, 245, 249, 0.72), rgba(100, 116, 139, 0.36) 18%, rgba(248, 250, 252, 0.9) 44%, rgba(71, 85, 105, 0.5) 100%) !important;
        border-color: rgba(226, 232, 240, 0.7) !important;
        box-shadow:
          inset 0 0 0 1px rgba(255, 255, 255, 0.75),
          inset 0 0 0 5px rgba(148, 163, 184, 0.18),
          0 34px 80px rgba(2, 6, 23, 0.48) !important;
        transform: none !important;
      }
      .hero-device {
        background:
          linear-gradient(135deg, #f8fafc 0%, #cbd5e1 18%, #ffffff 48%, #94a3b8 100%) !important;
        border-color: rgba(148, 163, 184, 0.5) !important;
        box-shadow:
          inset 0 0 0 1px rgba(255, 255, 255, 0.95),
          inset 0 0 0 5px rgba(148, 163, 184, 0.18),
          0 32px 64px rgba(100, 116, 139, 0.28),
          0 4px 16px rgba(100, 116, 139, 0.12) !important;
      }
      .hero-device::before {
        content: '';
        position: absolute;
        left: -0.22rem;
        top: 7.2rem;
        width: 0.18rem;
        height: 4.2rem;
        border-radius: 9999px;
        background: linear-gradient(180deg, #cbd5e1, #64748b);
        box-shadow:
          0 5.2rem 0 #94a3b8;
      }
      .hero-device::after {
        content: '';
        position: absolute;
        inset: 0.38rem;
        border-radius: 2.82rem;
        border: 1px solid rgba(15, 23, 42, 0.18);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        pointer-events: none;
        z-index: 4;
      }
      .hero-device::after {
        border-color: rgba(15, 23, 42, 0.12);
      }
      .iphone-top-bar {
        position: absolute;
        top: 1.05rem;
        left: 50%;
        width: 6.6rem;
        height: 1.9rem;
        border-radius: 9999px;
        background: #070b12 !important;
        transform: translateX(-50%);
        z-index: 35;
        box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12), 0 2px 6px rgba(2, 6, 23, 0.26);
      }
      .iphone-top-bar::after {
        content: '';
        position: absolute;
        right: 1.18rem;
        top: 0.62rem;
        width: 0.44rem;
        height: 0.44rem;
        border-radius: 9999px;
        background: radial-gradient(circle at 35% 35%, #14BFD1, #020617 70%);
        box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.22);
      }
      .iphone-status-bar {
        position: absolute;
        top: 0.82rem;
        left: 1.15rem;
        right: 1.15rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text-main);
        font-size: 0.72rem;
        font-weight: 800;
        z-index: 12;
        pointer-events: none;
      }
      .iphone-status-icons {
        display: inline-flex;
        align-items: center;
        gap: 0.34rem;
        font-size: 0.66rem;
      }
      .iphone-battery {
        width: 1.28rem;
        height: 0.62rem;
        border: 1.5px solid currentColor;
        border-radius: 0.22rem;
        position: relative;
      }
      .iphone-battery::before {
        content: '';
        position: absolute;
        inset: 0.11rem 0.22rem 0.11rem 0.11rem;
        border-radius: 0.12rem;
        background: currentColor;
      }
      .iphone-battery::after {
        content: '';
        position: absolute;
        right: -0.22rem;
        top: 0.17rem;
        width: 0.12rem;
        height: 0.24rem;
        border-radius: 0 9999px 9999px 0;
        background: currentColor;
      }
      .hero-status {
        background: rgba(10, 19, 33, 0.9) !important;
        border: 1px solid rgba(34, 207, 227, 0.14);
        top: 3.42rem !important;
        inset-inline: 1.26rem !important;
        border-radius: 1.25rem !important;
        padding: 0.62rem !important;
        z-index: 18 !important;
        backdrop-filter: blur(18px);
      }
      .hero-status {
        background: rgba(255, 255, 255, 0.92) !important;
        color: var(--text-main) !important;
        border-color: rgba(34, 207, 227, 0.14) !important;
      }
      .hero-chat {
        background: linear-gradient(180deg, rgba(10, 18, 32, 0.92), rgba(6, 12, 22, 0.98)) !important;
        height: 100%;
        min-height: 0;
        padding: 7.25rem 0.72rem 0.78rem;
        box-sizing: border-box;
        border-radius: 2.55rem !important;
        border: 1px solid rgba(15, 23, 42, 0.16);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        overflow: hidden;
      }
      .hero-chat {
        background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(237, 244, 251, 0.98)) !important;
        border-color: rgba(34, 207, 227, 0.12);
      }
      .hero-feed {
        display: flex;
        flex-direction: column;
        gap: 0.52rem;
        height: 100%;
      }
      .hero-feed-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.72rem;
      }
      .hero-feed-account {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
      }
      .hero-feed-avatar {
        width: 2.12rem;
        height: 2.12rem;
        border-radius: 9999px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #67e8f9, #14BFD1);
        box-shadow: 0 12px 24px rgba(14, 165, 233, 0.24);
      }
      .hero-feed-avatar::before {
        content: '';
        position: absolute;
        inset: 22% 24% auto;
        height: 20%;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.9);
      }
      .hero-feed-avatar::after {
        content: '';
        position: absolute;
        inset: 46% 14% 10%;
        border-radius: 9999px 9999px 35% 35%;
        background: rgba(255, 255, 255, 0.88);
      }
      .hero-feed-name {
        font-size: 0.78rem;
        font-weight: 700;
        color: #f8fbff;
        line-height: 1.2;
      }
      .hero-feed-name { color: var(--text-main); }
      .hero-feed-meta {
        font-size: 0.66rem;
        color: var(--text-muted);
      }
      .hero-feed-photo {
        position: relative;
        flex: 0 0 8.2rem;
        border-radius: 1.45rem;
        overflow: hidden;
        border: 1px solid rgba(148, 163, 184, 0.14);
        background:
          linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.25)),
          radial-gradient(circle at 80% 18%, rgba(255, 241, 118, 0.3), transparent 17%),
          linear-gradient(180deg, #164e63 0%, #14BFD1 36%, #22CFE3 72%, #dbeafe 100%);
      }
      .hero-feed-photo {
        border-color: rgba(34, 207, 227, 0.08);
        box-shadow: 0 18px 30px rgba(148, 163, 184, 0.16);
      }
      .hero-feed-photo::before {
        content: '';
        position: absolute;
        left: -8%;
        top: 12%;
        width: 44%;
        height: 46%;
        border-radius: 2rem;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 28%),
          linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(191, 219, 254, 0.04));
        filter: blur(2px);
        opacity: 0.72;
      }
      .hero-photo-product {
        position: absolute;
        right: 11%;
        bottom: -5%;
        width: 40%;
        height: 82%;
        border-radius: 2rem 2rem 1.2rem 1.2rem;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 22%),
          linear-gradient(160deg, #fde2e7 0%, #fb7185 34%, #f43f5e 58%, #312e81 100%);
        box-shadow: 0 24px 42px rgba(2, 6, 23, 0.28);
        transform: rotate(-5deg);
      }
      .hero-photo-product::before {
        content: '';
        position: absolute;
        inset: 12% 24% auto;
        height: 8%;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.32);
      }
      .hero-photo-product::after {
        content: '';
        position: absolute;
        width: 42%;
        height: 16%;
        left: 29%;
        top: -6%;
        border-radius: 9999px 9999px 0 0;
        border: 2px solid rgba(255, 255, 255, 0.32);
        border-bottom: 0;
      }
      .hero-feed-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0 0.15rem;
      }
      .hero-feed-icons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .hero-feed-icon {
        width: 1.72rem;
        height: 1.72rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.8rem;
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-soft);
        border: 1px solid rgba(148, 163, 184, 0.08);
      }
      .hero-feed-icon {
        background: rgba(255, 255, 255, 0.88);
      }
      .hero-feed-likes {
        font-size: 0.68rem;
        color: var(--text-muted);
        white-space: nowrap;
      }
      .hero-thread {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .hero-comment-card {
        display: flex;
        align-items: flex-start;
        gap: 0.52rem;
      }
      .hero-comment-reply {
        margin-left: 2.2rem;
      }
      .hero-comment-avatar {
        width: 1.76rem;
        height: 1.76rem;
        border-radius: 9999px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.66rem;
        font-weight: 700;
      }
      .hero-comment-avatar-user {
        background: linear-gradient(135deg, #a78bfa, #38bdf8);
        color: #f8fbff;
      }
      .hero-comment-avatar-brand {
        background: rgba(63, 61, 62, 0.92);
        border: 1px solid rgba(34, 207, 227, 0.42);
        overflow: hidden;
      }
      .hero-comment-bubble {
        flex: 1;
        min-width: 0;
        padding: 0.58rem 0.68rem;
        border-radius: 1rem 1rem 1rem 0.45rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--line);
      }
      .hero-comment-bubble-brand {
        background: rgba(34, 207, 227, 0.1);
        border-color: rgba(34, 207, 227, 0.18);
      }
      .hero-comment-bubble {
        background: rgba(255, 255, 255, 0.86);
        border-color: rgba(15, 23, 42, 0.08);
      }
      .hero-comment-bubble-brand {
        background: rgba(219, 234, 254, 0.9);
        border-color: rgba(34, 207, 227, 0.1);
      }
      .hero-comment-name {
        font-size: 0.68rem;
        font-weight: 700;
        color: #f8fbff;
        margin-bottom: 0.15rem;
      }
      .hero-comment-name { color: var(--text-main); }
      .hero-comment-text {
        font-size: 0.66rem;
        line-height: 1.45;
        color: var(--text-soft);
      }
      .hero-feed-proof {
        align-self: flex-start;
        margin-top: 0.1rem;
        padding: 0.34rem 0.6rem;
        border-radius: 9999px;
        font-size: 0.62rem;
        font-weight: 700;
        color: #86efac;
        background: rgba(34, 197, 94, 0.12);
        border: 1px solid rgba(34, 197, 94, 0.18);
      }
      .hero-feed-proof {
        color: #15803d;
        background: rgba(187, 247, 208, 0.8);
        border-color: rgba(34, 197, 94, 0.14);
      }
      .process-step-number {
        background: rgba(34, 207, 227, 0.08) !important;
        border-color: rgba(34, 207, 227, 0.16) !important;
        color: #14BFD1 !important;
        box-shadow: none;
      }
      .section-shell { position: relative; }
      .section-title { letter-spacing: -0.035em; }
      .feature-card,
      .video-card,
      .pricing-card,
      .workflow-card,
      .cta-panel,
      .post-card {
        border: 1px solid var(--line) !important;
        box-shadow: 0 18px 40px rgba(37, 66, 110, 0.09) !important;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      }
      .feature-card:hover,
      .video-card:hover,
      .pricing-card:hover {
        border-color: rgba(245, 165, 36, 0.4) !important;
        box-shadow: 0 26px 52px rgba(37, 66, 110, 0.14) !important;
        transform: translateY(-6px);
      }
      .process-step {
        padding: 1rem 1.1rem;
        border-radius: 1.25rem;
        background: rgba(8, 16, 28, 0.72);
        border: 1px solid var(--line);
        box-shadow: 0 14px 34px rgba(2, 6, 23, 0.22);
      }
      .process-step {
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 16px 30px rgba(148, 163, 184, 0.16);
      }
      .process-step-number {
        background: rgba(34, 207, 227, 0.12) !important;
        border: 1px solid rgba(34, 207, 227, 0.24) !important;
        color: #dff5ff !important;
        box-shadow: 0 10px 26px rgba(14, 165, 233, 0.18);
      }
      .workflow-card {
        background: linear-gradient(180deg, rgba(8, 17, 30, 0.96), rgba(5, 10, 17, 0.98)) !important;
        border-color: rgba(34, 207, 227, 0.18) !important;
      }
      .workflow-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.98)) !important;
      }
      .pricing-card-basic { background: rgba(8, 17, 30, 0.74) !important; }
      .pricing-card-basic {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96)) !important;
        box-shadow: 0 22px 44px rgba(148, 163, 184, 0.14) !important;
      }
      .pricing-card-automation {
        background:
          radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
          linear-gradient(180deg, rgba(8, 17, 30, 0.88), rgba(5, 10, 17, 0.94)) !important;
        border-color: rgba(34, 207, 227, 0.24) !important;
      }
      .pricing-card-automation {
        background:
          radial-gradient(circle at top right, rgba(34, 207, 227, 0.16), transparent 34%),
          linear-gradient(180deg, rgba(239, 248, 255, 0.98), rgba(255, 255, 255, 0.98) 44%) !important;
        border-color: rgba(34, 207, 227, 0.24) !important;
        box-shadow: 0 24px 50px rgba(34, 207, 227, 0.14) !important;
      }
      .pricing-card-pro {
        background:
          radial-gradient(circle at top left, rgba(34, 207, 227, 0.14), transparent 36%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 252, 0.98)) !important;
        border-color: rgba(34, 207, 227, 0.28) !important;
        box-shadow: 0 30px 62px rgba(34, 207, 227, 0.16) !important;
      }
      .pricing-badge {
        background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
        box-shadow: 0 14px 34px rgba(34, 207, 227, 0.28);
        letter-spacing: 0.06em;
      }
      .pricing-card-pro .text-blue-400 {
        color: #14BFD1 !important;
      }
      .pricing-card-pro,
      .pricing-card-pro .text-white,
      .pricing-card-pro .text-gray-800 {
        color: var(--text-main) !important;
      }
      .pricing-card-pro .text-gray-300,
      .pricing-card-pro .text-gray-400 {
        color: var(--text-soft) !important;
      }
      .pricing-card-pro .premium-btn-primary {
        background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
        color: #ffffff !important;
        border-color: rgba(34, 207, 227, 0.28);
        box-shadow: 0 18px 34px rgba(34, 207, 227, 0.2);
      }
      .pricing-card-pro .premium-btn-primary:hover {
        background: linear-gradient(135deg, var(--accent-strong), var(--accent-alt));
        box-shadow: 0 22px 42px rgba(34, 207, 227, 0.26);
      }
      .pricing-card-automation .text-gray-300,
      .pricing-card-automation .text-gray-400,
      .pricing-card-automation .text-gray-500,
      .pricing-card-automation .text-gray-600 {
        color: var(--text-soft) !important;
      }
      @keyframes logoMarquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }
      .logo-marquee-shell {
        position: relative;
        overflow: hidden;
        padding: 0.45rem 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      }
      .logo-marquee-track {
        display: flex;
        align-items: center;
        gap: 1.35rem;
        width: max-content;
        animation: logoMarquee 40s linear infinite;
      }
      .logo-marquee-shell:hover .logo-marquee-track {
        animation-play-state: paused;
      }
      .logo-pill {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 13rem;
        height: 6rem;
        padding: 1rem 1.5rem;
        border-radius: 1.6rem;
        border: 1px solid var(--line);
        background: rgba(8, 17, 30, 0.68);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 16px 34px rgba(2, 6, 23, 0.18);
        backdrop-filter: blur(18px);
        text-decoration: none;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      }
      .logo-pill:hover {
        transform: translateY(-3px);
        border-color: rgba(96, 165, 250, 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 52px rgba(2, 6, 23, 0.28);
      }
      .logo-pill {
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(148, 163, 184, 0.18);
        box-shadow: 0 14px 30px rgba(148, 163, 184, 0.12);
      }
      .logo-pill:hover {
        border-color: rgba(34, 207, 227, 0.14);
        box-shadow: 0 18px 36px rgba(96, 165, 250, 0.14);
      }
      .logo-pill-image {
        max-width: 10.5rem;
        max-height: 3.2rem;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: brightness(1) contrast(1.04);
      }
      .logo-pill-fallback {
        font-size: 1.15rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #f8fbff;
      }
      .logo-pill-fallback {
        color: var(--text-main);
      }
      .faq-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 2rem;
        align-items: start;
      }
      .faq-panel {
        border: 1px solid var(--line);
        border-radius: 2rem;
        background: rgba(8, 17, 30, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 22px 48px rgba(2, 6, 23, 0.28);
        backdrop-filter: blur(18px);
        overflow: hidden;
      }
      .faq-panel {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 20px 42px rgba(148, 163, 184, 0.15);
      }
      .faq-intro {
        padding: 2rem;
      }
      .faq-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.5rem 0.8rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 800;
        color: #dbeafe;
        background: rgba(34, 207, 227, 0.12);
        border: 1px solid rgba(34, 207, 227, 0.18);
        margin-bottom: 1rem;
      }
      .faq-kicker {
        color: #14BFD1;
        background: rgba(219, 234, 254, 0.88);
        border-color: rgba(34, 207, 227, 0.12);
      }
      .faq-intro p {
        color: var(--text-soft);
      }
      .faq-list-wrap {
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 0;
      }
      .faq-item {
        border: 1px solid var(--line);
        border-radius: 1.3rem;
        background: rgba(255, 255, 255, 0.035);
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(2, 6, 23, 0.1);
        transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
      }
      .faq-item {
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(148, 163, 184, 0.22);
        box-shadow: 0 12px 24px rgba(148, 163, 184, 0.08);
      }
      .faq-item summary {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        cursor: pointer;
        padding: 1.05rem 1.15rem;
        color: #f8fbff;
        font-size: 1rem;
        font-weight: 700;
      }
      .faq-item summary::-webkit-details-marker {
        display: none;
      }
      .faq-item summary {
        color: var(--text-main);
      }
      .faq-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 9999px;
        border: 1px solid var(--line);
        color: #93c5fd;
        background: rgba(255, 255, 255, 0.04);
        flex-shrink: 0;
        transition: transform 0.25s ease, color 0.25s ease;
      }
      .faq-icon {
        color: #14BFD1;
        background: rgba(255, 255, 255, 0.8);
      }
      .faq-item[open] {
        border-color: rgba(34, 207, 227, 0.2);
        background: rgba(255, 255, 255, 0.05);
      }
      .faq-item[open] {
        border-color: rgba(34, 207, 227, 0.16);
        background: rgba(248, 251, 255, 0.98);
      }
      .faq-item[open] .faq-icon {
        transform: rotate(45deg);
        color: #38bdf8;
      }
      .faq-answer {
        padding: 0 1.15rem 1.05rem;
        color: var(--text-soft);
        line-height: 1.75;
      }
      .faq-item[open] .faq-answer {
        border-top: 1px solid var(--line);
        padding-top: 0.85rem;
      }
      .faq-item[open] .faq-answer {
        border-top-color: rgba(148, 163, 184, 0.22);
      }
      .sales-panel {
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.045);
        box-shadow: 0 20px 44px rgba(2, 6, 23, 0.12);
        backdrop-filter: blur(16px);
      }
      .sales-panel {
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(148, 163, 184, 0.22);
        box-shadow: 0 20px 42px rgba(148, 163, 184, 0.14);
      }
      .trust-pill,
      .mini-proof-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-soft);
      }
      .trust-pill,
      .mini-proof-pill {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(148, 163, 184, 0.24);
      }
      .compare-row {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 1px;
        overflow: hidden;
        border-radius: var(--radius-md);
        border: 1px solid var(--line);
        background: var(--line);
      }
      .compare-row > div {
        background: rgba(255, 255, 255, 0.96);
        padding: 1.1rem;
        color: var(--text-soft);
      }
      .compare-row > div:last-child {
        background: rgba(34, 207, 227, 0.055);
        font-weight: 700;
        color: var(--text-main);
      }
      .comparison-head > div {
        color: var(--text-main);
        font-weight: 800;
      }
      .comparison-head > div:last-child {
        background: var(--accent-strong);
        color: #fff !important;
      }
      html[dir="rtl"] .compare-row .fa-check {
        margin-left: 0.5rem !important;
        margin-right: 0 !important;
      }
      .guided-demo-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
        gap: 1.25rem;
        align-items: stretch;
      }
      .guided-demo-card {
        position: relative;
        overflow: hidden;
        padding: 1.25rem;
        border-radius: 1.75rem;
        border: 1px solid rgba(34, 207, 227, 0.22);
        background:
          radial-gradient(circle at 12% 12%, rgba(34, 207, 227, 0.16), transparent 34%),
          radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.12), transparent 36%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
      }
      .demo-clean-card {
        padding: 1.5rem;
      }
      .guided-demo-topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }
      .guided-demo-eyebrow {
        color: var(--accent);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .guided-demo-title {
        color: var(--text-main);
        font-size: 1.15rem;
        font-weight: 800;
      }
      .guided-demo-status {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.5rem 0.75rem;
        border-radius: 999px;
        background: rgba(20, 184, 166, 0.11);
        color: #047857;
        font-size: 0.78rem;
        font-weight: 800;
        white-space: nowrap;
      }
      .guided-demo-status .fa-circle {
        font-size: 0.48rem;
      }
      .clean-demo-rule {
        display: grid;
        gap: 0.7rem;
        padding: 0.8rem 0 1rem;
      }
      .clean-demo-row {
        display: flex;
        align-items: center;
        gap: 0.95rem;
        padding: 1rem;
        border-radius: 1.1rem;
        border: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(255, 255, 255, 0.86);
      }
      .clean-demo-row-accent {
        background: rgba(236, 254, 255, 0.94);
        border-color: rgba(34, 207, 227, 0.32);
      }
      .clean-demo-row span {
        display: block;
        color: var(--text-muted);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .clean-demo-row strong {
        display: block;
        margin-top: 0.18rem;
        color: var(--text-main);
        font-size: 1.02rem;
        font-weight: 900;
      }
      .clean-demo-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.95rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        background: rgba(34, 207, 227, 0.12);
        flex: 0 0 auto;
      }
      .clean-demo-arrow {
        width: 2rem;
        height: 2rem;
        margin: -0.25rem auto;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        background: #fff;
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
      }
      .clean-demo-footer {
        display: grid;
        grid-template-columns: auto minmax(13rem, 1fr);
        gap: 0.8rem;
        align-items: center;
        padding-top: 0.9rem;
        border-top: 1px solid rgba(148, 163, 184, 0.18);
      }
      .clean-demo-channel {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.78rem 0.9rem;
        border-radius: 1rem;
        background: #fff;
        color: var(--text-main);
        font-weight: 900;
        border: 1px solid rgba(148, 163, 184, 0.18);
      }
      .guided-demo-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        width: 100%;
        border: 0;
        border-radius: 1rem;
        min-height: 3rem;
        padding: 0.85rem 1rem;
        background: linear-gradient(135deg, var(--accent-strong), var(--accent-alt));
        color: #fff;
        font-weight: 900;
        box-shadow: 0 14px 28px rgba(15, 166, 181, 0.2);
      }
      .guided-demo-steps {
        display: grid;
        gap: 0.7rem;
      }
      .guided-step {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
        align-items: start;
        padding: 0.95rem;
        border-radius: 1rem;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255, 255, 255, 0.88);
        box-shadow: none;
      }
      .guided-step-active {
        border-color: rgba(34, 207, 227, 0.45);
        background: linear-gradient(135deg, rgba(236, 254, 255, 0.92), rgba(255, 255, 255, 0.98));
      }
      .guided-step-number {
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 0.8rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--text-main);
        color: #fff;
        font-weight: 900;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
      }
      .guided-step-active .guided-step-number {
        background: var(--accent-strong);
      }
      .guided-step-copy,
      .guided-step-title,
      .guided-step-desc {
        display: block;
      }
      .guided-step-title {
        margin: 0 0 0.25rem;
        color: var(--text-main);
        font-size: 1rem;
        font-weight: 900;
      }
      .guided-step-desc {
        margin: 0;
        color: var(--text-soft);
        font-size: 0.9rem;
        line-height: 1.55;
      }
      html[dir="rtl"] .guided-demo-reply {
        margin-left: auto;
        margin-right: 0;
        border-radius: 1rem 1rem 1rem 0.25rem;
      }
      html[dir="rtl"] .guided-demo-button .fa-arrow-right {
        transform: rotate(180deg);
      }
      .guided-demo-showcase {
        display: grid;
        grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
        gap: 3rem;
        align-items: center;
      }
      .demo-phone-wrap {
        display: flex;
        justify-content: center;
      }
      .demo-phone-frame {
        width: min(100%, 17.5rem);
        min-height: 33rem;
        padding: 0.9rem;
        border-radius: 2.5rem;
        background: #0b1117;
        border: 0.34rem solid #111;
        box-shadow:
          0 26px 60px rgba(15, 23, 42, 0.22),
          inset 0 0 0 1px rgba(255, 255, 255, 0.14);
        position: relative;
      }
      .demo-phone-notch {
        position: absolute;
        top: 0.65rem;
        left: 50%;
        transform: translateX(-50%);
        width: 5.2rem;
        height: 1.15rem;
        border-radius: 999px;
        background: #020617;
        z-index: 3;
      }
      .demo-phone-screen {
        height: 38rem;
        display: flex;
        flex-direction: column;
        border-radius: 1.85rem;
        overflow: hidden;
        background: #f7fafb;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 3.4rem 1rem 1rem;
        position: relative;
      }
      .demo-phone-panel {
        display: none;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        animation: demoFade 220ms ease-out;
      }
      .demo-phone-panel.is-active {
        display: block;
      }
      .demo-phone-panel h3 {
        color: var(--text-main);
        font-size: 1.38rem;
        line-height: 1.12;
        font-weight: 900;
        margin: 0.3rem 0 1rem;
      }
      .demo-phone-panel p {
        color: var(--text-soft);
        font-size: 0.84rem;
        line-height: 1.6;
      }
      .demo-choice {
        width: 100%;
        text-align: start;
        cursor: pointer;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 0.7rem;
        align-items: center;
        margin-top: 0.7rem;
        padding: 0.9rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.68);
        border: 1px solid rgba(148, 163, 184, 0.18);
        color: var(--text-soft);
        font-weight: 800;
      }
      .demo-choice.is-selected {
        background: #fff;
        border-color: rgba(34, 207, 227, 0.42);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        color: var(--text-main);
      }
      .demo-choice .fa-check {
        color: var(--accent);
      }
      .demo-choice:not(.is-selected) .fa-check { visibility: hidden; }
      .demo-field { display: block; font-size: 0.75rem; font-weight: 700; margin: 1rem 0 0.4rem; }
      .demo-input { width: 100%; min-width: 0; border: 1px solid #cddbdd; border-radius: 8px; background: white; padding: 0.7rem; font: inherit; font-size: 0.85rem; resize: vertical; max-height: 9rem; color: #20292b; }
      .demo-input:focus { outline: 2px solid #0b8999; outline-offset: 2px; }
      .demo-phone-controls { display: flex; gap: 0.5rem; padding-top: 1rem; }
      .demo-phone-controls .guided-demo-button { flex: 1; font-size: 0.85rem; padding: 0.8rem 0.5rem; border-radius: 8px; }
      .demo-back { width: 2.5rem; flex-shrink: 0; border: 1px solid #cddbdd; border-radius: 8px; background: white; }
      .demo-back[hidden] { display: none; }
      html[dir="rtl"] .demo-back i { transform: rotate(180deg); }
      .demo-disclaimer { font-size: 0.65rem; color: #617174; text-align: center; margin-top: 0.75rem; }
      #demo-conversation .demo-chat-bubble { font-size: 0.8rem; font-weight: 500; overflow-wrap: anywhere; animation: demoFade 300ms ease-out; box-shadow: none; }
      #demo-conversation small { display: block; font-size: 0.65rem; font-weight: 700; margin-bottom: 0.3rem; }
      #demo-status { font-size: 0.75rem; margin-top: 1rem; color: #176b54; }
      .guided-demo-button:disabled { opacity: 0.55; cursor: wait; }
      .guided-step.is-complete .guided-step-number { background: #e2f5eb; color: #176b54; }
      @media (prefers-reduced-motion: reduce) {
        .demo-phone-panel, #demo-conversation .demo-chat-bubble { animation: none; }
      }
      .demo-keyword-box {
        margin: 1.4rem 0 1rem;
        padding: 1.1rem;
        border-radius: 1.2rem;
        background: #fff;
        border: 1px solid rgba(34, 207, 227, 0.28);
        color: var(--text-main);
        font-size: 2rem;
        font-weight: 900;
        text-align: center;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
      }
      .demo-chat-bubble {
        width: fit-content;
        max-width: 100%;
        margin-top: 0.85rem;
        padding: 0.85rem 1rem;
        border-radius: 1rem 1rem 1rem 0.25rem;
        background: #fff;
        color: var(--text-main);
        font-weight: 800;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
      }
      .demo-chat-bubble-dm {
        margin-left: auto;
        border-radius: 1rem 1rem 0.25rem 1rem;
        background: var(--accent-strong);
        color: #fff;
      }
      .demo-lead-card {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 1.15rem;
        background: #fff;
        border: 1px solid rgba(34, 207, 227, 0.3);
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
      }
      .demo-lead-card > i {
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 207, 227, 0.12);
        color: var(--accent);
      }
      .demo-lead-card strong,
      .demo-lead-card span {
        display: block;
      }
      .demo-lead-card span {
        color: var(--text-muted);
        font-size: 0.82rem;
        font-weight: 800;
      }
      .guided-step {
        appearance: none;
        cursor: pointer;
        text-align: left;
        width: 100%;
        min-height: 5.35rem;
      }
      html[dir="rtl"] .guided-step {
        text-align: right;
      }
      .guided-step:focus-visible {
        outline: 3px solid rgba(34, 207, 227, 0.32);
        outline-offset: 3px;
      }
      .guided-step-active {
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
      }
      @keyframes demoFade {
        from { opacity: 0; transform: translateY(0.4rem); }
        to { opacity: 1; transform: translateY(0); }
      }
      .workflow-demo-line {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.85rem;
        border-radius: 1rem;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255, 255, 255, 0.06);
      }
      .workflow-demo-line {
        background: rgba(248, 251, 255, 0.96);
      }
      .workflow-demo-line:nth-child(2) { animation-delay: 0.8s; }
      .workflow-demo-line:nth-child(3) { animation-delay: 1.6s; }
      .workflow-demo-line:nth-child(4) { animation-delay: 2.4s; }
      .testimonial-quote {
        color: var(--text-soft);
        line-height: 1.75;
      }
      .use-case-icon {
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 207, 227, 0.12);
        color: var(--accent);
      }
      @media (max-width: 700px) {
        .compare-row {
          grid-template-columns: 1fr;
        }
        .comparison-head {
          display: none;
        }
        .guided-demo-showcase {
          grid-template-columns: 1fr;
          gap: 1.4rem;
        }
        .demo-phone-frame {
          width: min(100%, 18rem);
          min-height: 29rem;
        }
        .demo-phone-screen {
          min-height: 27rem;
        }
        .guided-demo-card {
          padding: 1rem;
        }
        .guided-demo-grid {
          grid-template-columns: 1fr;
        }
        .clean-demo-footer {
          grid-template-columns: 1fr;
        }
      }
      @media (min-width: 1024px) {
        .five-engines-grid {
          grid-template-columns: repeat(6, 1fr) !important;
        }
        .five-engines-grid > * {
          grid-column: span 2;
        }
        .five-engines-grid > *:nth-child(4) {
          grid-column: 2 / span 2;
        }
      }

      @media (max-width: 860px) {
        .faq-grid {
          grid-template-columns: 1fr;
        }
        .faq-intro,
        .faq-list {
          padding: 1.4rem;
        }
        .faq-list-wrap {
          padding: 0;
        }
      }
      .cta-panel {
        background:
          radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.16), transparent 42%),
          linear-gradient(135deg, var(--accent-strong) 0%, #14BFD1 46%, var(--accent-alt) 130%) !important;
        border-color: rgba(255, 255, 255, 0.22) !important;
      }
      .footer-shell {
        background: rgba(255, 255, 255, 0.9) !important;
        border-top: 1px solid var(--line) !important;
      }
      .footer-disclaimer {
        max-width: 58rem;
        color: var(--text-muted) !important;
        line-height: 1.7;
      }
      .footer-disclaimer strong {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--text-soft) !important;
      }
      html[dir="rtl"] .footer-disclaimer {
        direction: rtl;
        text-align: right;
      }
      html[dir="ltr"] .footer-disclaimer {
        direction: ltr;
        text-align: left;
      }
      html[dir="rtl"] .footer-disclaimer-wrap {
        text-align: right;
      }
      html[dir="rtl"] .footer-disclaimer {
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .prose,
      .prose p,
      .prose li,
      .prose strong,
      .prose h1,
      .prose h2,
      .prose h3,
      .prose h4 {
        color: var(--text-soft) !important;
      }
      .prose a { color: var(--accent) !important; }

      @media (max-width: 640px) {
        .mobile-nav-shell {
          height: auto !important;
          min-height: 5.25rem;
          padding-top: 0.9rem;
          padding-bottom: 0.9rem;
          gap: 0.9rem;
          align-items: flex-start;
        }
        .brand-name { font-size: 1.08rem; }
        .mobile-nav-actions {
          gap: 0.55rem;
          flex-wrap: wrap;
          justify-content: flex-end;
          max-width: 62%;
        }
        .mobile-nav-actions .lang-toggle,
        .mobile-nav-actions .premium-btn-primary {
          font-size: 0.84rem;
          line-height: 1;
        }
        .mobile-nav-actions .lang-toggle { padding: 0.72rem 0.78rem; }
        .mobile-nav-actions .premium-btn-primary { padding: 0.9rem 1rem; }
        .hero-shell {
          padding-top: 7.1rem;
          padding-bottom: 4rem;
        }
        .hero-copy { gap: 0; }
        .hero-copy h1 {
          font-size: 3rem;
          line-height: 1.04;
        }
        .hero-copy p {
          font-size: 1.02rem !important;
          max-width: 21rem;
        }
        .kicker-chip {
          font-size: 0.8rem;
          padding: 0.7rem 0.95rem !important;
        }
        .hero-grid { gap: 1.4rem !important; }
        .hero-device {
          max-width: 18.8rem;
          margin-top: 0.15rem;
        }
        .hero-chat {
          height: 100% !important;
          min-height: 0 !important;
          padding: 7rem 0.62rem 0.72rem !important;
        }
        .hero-status {
          inset-inline: 1.05rem !important;
          top: 3.34rem !important;
        }
        .hero-feed { gap: 0.48rem; }
        .hero-feed-photo { flex-basis: 7.8rem; }
        .hero-comment-reply { margin-left: 1.9rem; }
        .hero-comment-text { font-size: 0.64rem; }
      }
      @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }

      html[dir="rtl"] body { font-family: 'Noto Sans Arabic', sans-serif; }
      html[dir="rtl"] .fa-arrow-right { transform: rotate(180deg); }
      html[dir="rtl"] .text-left { text-align: right; }
      html[dir="rtl"] .lg\:text-left { text-align: right; }
      html[dir="rtl"] .font-mono { font-family: 'Courier New', Courier, monospace; }
      html[dir="rtl"] .border-l-4 { border-left: 0; border-right: 4px solid; }
      html[dir="rtl"] .pl-8 { padding-left: 0; padding-right: 2rem; }
      html[dir="rtl"] .hero-comment-reply {
        margin-left: 0;
        margin-right: 2.7rem;
      }
      @media (max-width: 640px) {
        html[dir="rtl"] .hero-comment-reply {
          margin-right: 2.25rem;
        }
      }
