      /* Base Reset & Variables */
      :root {
        --espresso: #1a1514;
        --charcoal: #2c2422;
        --amber: #f29c38;
        --amberDark: #d47f24;
        --burntOrange: #e05d26;
        --botanical: #4caf50;
        --cream: #fdfbf7;
        --darkCream: #f5efe6;
        --glass: rgba(255, 255, 255, 0.03);
        --glassBorder: rgba(255, 255, 255, 0.08);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background-color: var(--espresso);
        color: var(--darkCream);
        font-family: "Almarai", sans-serif;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      ::selection {
        background: var(--amber);
        color: var(--espresso);
      }

      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        color: var(--cream);
        font-weight: 800;
        line-height: 1.2;
      }
      p {
        line-height: 1.6;
      }

      .text-gradient {
        background: linear-gradient(to left, var(--amber), var(--burntOrange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Container */
      .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Glassmorphism */
      .glass-panel {
        background: var(--glass);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--glassBorder);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        border-radius: 24px;
      }

      /* Animations */
      @keyframes pulse-glow {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.1);
        }
      }

      /* Animated Blob Background */
      .blob-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        overflow: hidden;
        background: var(--espresso);
      }
      .blob {
        position: absolute;
        filter: blur(80px);
        opacity: 0.5;
        border-radius: 50%;
        animation: float 20s infinite alternate
          cubic-bezier(0.45, 0.05, 0.55, 0.95);
      }
      .blob-1 {
        width: 400px;
        height: 400px;
        background: rgba(242, 156, 56, 0.15);
        top: -10%;
        left: -10%;
        animation-delay: 0s;
      }
      .blob-2 {
        width: 500px;
        height: 500px;
        background: rgba(224, 93, 38, 0.12);
        bottom: -20%;
        right: -10%;
        animation-delay: -5s;
      }
      .blob-3 {
        width: 300px;
        height: 300px;
        background: rgba(76, 175, 80, 0.08);
        top: 40%;
        left: 60%;
        animation-delay: -10s;
      }

      @keyframes float {
        0% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(100px, 50px) scale(1.1);
        }
        100% {
          transform: translate(-50px, 150px) scale(0.9);
        }
      }

      /* Custom Scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: var(--espresso);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--amber);
        border-radius: 4px;
      }

      /* Loader */
      .loader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: var(--espresso);
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .loader-content {
        text-align: center;
      }
      .ternpress-logo {
        font-size: 4rem;
        font-weight: 800;
        color: var(--cream);
        letter-spacing: 2px;
        text-transform: uppercase;
        text-shadow: 0 0 20px rgba(242, 156, 56, 0.2);
        margin-bottom: 2rem;
        font-family: sans-serif;
      }
      .progress-container {
        width: 256px;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 auto;
        border-radius: 99px;
        overflow: hidden;
      }
      .progress-bar {
        width: 0;
        height: 100%;
        background: var(--amber);
        box-shadow: 0 0 20px rgba(242, 156, 56, 0.4);
      }

      /* Buttons */
      /* =========================================
        MAGIC ANIMATED BUTTON (Replaces btn-primary)
        ========================================= */
      .btn-magic {
        /* ربط ألوان الزر بألوان موقعك الموجودة في الـ root */
        --line_color: var(--amber);
        --back_color: rgba(
          242,
          156,
          56,
          0.15
        ); /* لون الخلفية الطائرة شفاف قليلاً */

        position: relative;
        z-index: 1;
        width: 240px;
        height: 56px;
        text-decoration: none;
        font-size: 1.125rem; /* مناسب لحجم الخط العربي */
        font-weight: 800;
        color: var(--line_color);
        transition: all 0.3s ease;
        display: inline-flex;
        cursor: pointer;
        font-family: "Almarai", sans-serif;
      }

      .btn-magic-text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease; /* بديل الـ letter-spacing للعربي */
      }

      /* تكبير النص بدلاً من فصل الحروف */
      .btn-magic:hover .btn-magic-text {
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(242, 156, 56, 0.4);
      }

      .btn-magic::before,
      .btn-magic::after,
      .btn-magic-text::before,
      .btn-magic-text::after {
        content: "";
        position: absolute;
        height: 3px;
        border-radius: 2px;
        background: var(--line_color);
        transition: all 0.5s ease;
      }

      .btn-magic::before {
        top: 0;
        left: 54px;
        width: calc(100% - 56px * 2 - 16px);
      }
      .btn-magic::after {
        top: 0;
        right: 54px;
        width: 8px;
      }
      .btn-magic-text::before {
        bottom: 0;
        right: 54px;
        width: calc(100% - 56px * 2 - 16px);
      }
      .btn-magic-text::after {
        bottom: 0;
        left: 54px;
        width: 8px;
      }

      .btn-magic-line {
        position: absolute;
        top: 0;
        width: 56px;
        height: 100%;
        overflow: hidden;
      }
      .btn-magic-line::before {
        content: "";
        position: absolute;
        top: 0;
        width: 150%;
        height: 100%;
        box-sizing: border-box;
        border-radius: 300px;
        border: solid 3px var(--line_color);
      }
      .btn-magic-line:nth-child(1),
      .btn-magic-line:nth-child(1)::before {
        left: 0;
      }
      .btn-magic-line:nth-child(2),
      .btn-magic-line:nth-child(2)::before {
        right: 0;
      }

      .btn-magic:hover::before,
      .btn-magic:hover .btn-magic-text::before {
        width: 8px;
      }
      .btn-magic:hover::after,
      .btn-magic:hover .btn-magic-text::after {
        width: calc(100% - 56px * 2 - 16px);
      }

      /* Animations Elements */
      .btn-magic-draw1,
      .btn-magic-draw2 {
        position: absolute;
        z-index: -1;
        border-radius: 16px;
        transform-origin: 16px 16px;
      }
      .btn-magic-draw1 {
        top: -16px;
        left: 40px;
        width: 32px;
        height: 0;
        transform: rotate(30deg);
      }
      .btn-magic-draw2 {
        top: 44px;
        left: 77px;
        width: 32px;
        height: 0;
        transform: rotate(-127deg);
      }

      .btn-magic-draw1::before,
      .btn-magic-draw1::after,
      .btn-magic-draw2::before,
      .btn-magic-draw2::after {
        content: "";
        position: absolute;
      }
      .btn-magic-draw1::before {
        bottom: 0;
        left: 0;
        width: 0;
        height: 32px;
        border-radius: 16px;
        transform-origin: 16px 16px;
        transform: rotate(-60deg);
      }
      .btn-magic-draw1::after {
        top: -10px;
        left: 45px;
        width: 0;
        height: 32px;
        border-radius: 16px;
        transform-origin: 16px 16px;
        transform: rotate(69deg);
      }
      .btn-magic-draw2::before {
        bottom: 0;
        left: 0;
        width: 0;
        height: 32px;
        border-radius: 16px;
        transform-origin: 16px 16px;
        transform: rotate(-146deg);
      }
      .btn-magic-draw2::after {
        bottom: 26px;
        left: -40px;
        width: 0;
        height: 32px;
        border-radius: 16px;
        transform-origin: 16px 16px;
        transform: rotate(-262deg);
      }

      .btn-magic-draw1,
      .btn-magic-draw1::before,
      .btn-magic-draw1::after,
      .btn-magic-draw2,
      .btn-magic-draw2::before,
      .btn-magic-draw2::after {
        background: var(--back_color);
        box-shadow: 0 0 15px var(--back_color); /* إضافة توهج يعطي شكل أفخم */
      }

      /* Hover Animation Triggers */
      .btn-magic:hover .btn-magic-draw1 {
        animation: magic-drow1 ease-in 0.06s forwards;
      }
      .btn-magic:hover .btn-magic-draw1::before {
        animation: magic-drow2 linear 0.08s 0.06s forwards;
      }
      .btn-magic:hover .btn-magic-draw1::after {
        animation: magic-drow3 linear 0.03s 0.14s forwards;
      }
      .btn-magic:hover .btn-magic-draw2 {
        animation: magic-drow4 linear 0.06s 0.2s forwards;
      }
      .btn-magic:hover .btn-magic-draw2::before {
        animation: magic-drow3 linear 0.03s 0.26s forwards;
      }
      .btn-magic:hover .btn-magic-draw2::after {
        animation: magic-drow5 linear 0.06s 0.32s forwards;
      }

      /* Keyframes */
      @keyframes magic-drow1 {
        0% {
          height: 0;
        }
        100% {
          height: 100px;
        }
      }
      @keyframes magic-drow2 {
        0% {
          width: 0;
          opacity: 0;
        }
        10% {
          opacity: 0;
        }
        11% {
          opacity: 1;
        }
        100% {
          width: 120px;
        }
      }
      @keyframes magic-drow3 {
        0% {
          width: 0;
        }
        100% {
          width: 80px;
        }
      }
      @keyframes magic-drow4 {
        0% {
          height: 0;
        }
        100% {
          height: 120px;
        }
      }
      @keyframes magic-drow5 {
        0% {
          width: 0;
        }
        100% {
          width: 124px;
        }
      }

      /* =========================================
        EXPLORE BUTTON (Replaces btn-secondary)
        ========================================= */
      .btn-explore {
        line-height: 1;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color: var(--glass);
        color: var(--cream);
        border: 1px solid var(--glassBorder);
        border-radius: 99px;
        font-weight: 700;
        font-size: 1.125rem;
        padding: 16px 32px;
        white-space: nowrap;
        transition: all 0.3s ease;
        cursor: pointer;
        font-family: "Almarai", sans-serif;
      }

      .btn-explore__icon-wrapper {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        position: relative;
        color: var(--espresso);
        background-color: var(--amber); /* لون خلفية الأيقونة */
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
        /* عكس الأيقونة لتتوافق مع اتجاه العربي RTL وتطير لليسار */
        transform: scaleX(-1);
      }

      /* تأثير الـ Hover للزرار نفسه */
      .btn-explore:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px); /* يرتفع لأعلى قليلاً */
      }

      /* تأثير الـ Hover لألوان الأيقونة */
      .btn-explore:hover .btn-explore__icon-wrapper {
        background-color: var(--cream);
        color: var(--espresso);
      }

      .btn-explore__icon-svg {
        width: 12px;
        height: auto;
      }

      .btn-explore__icon-svg--copy {
        position: absolute;
        transform: translate(-150%, 150%);
      }

      /* أنيميشن السهم الأساسي */
      .btn-explore:hover .btn-explore__icon-svg:first-child {
        transition: transform 0.3s ease-in-out;
        transform: translate(150%, -150%);
      }

      /* أنيميشن السهم البديل (النسخة) */
      .btn-explore:hover .btn-explore__icon-svg--copy {
        transition: transform 0.3s ease-in-out 0.1s;
        transform: translate(0);
      }

      /* HERO SECTION */
      .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 80px 0;
        position: relative;
        z-index: 10;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 99px;
        color: var(--amber);
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 24px;
      }
      .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--amber);
        border-radius: 50%;
        animation: pulse-glow 2s infinite;
      }
      .hero-title {
        font-size: 4.5rem;
        margin-bottom: 24px;
      }
      .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.8);
        max-width: 500px;
        margin-bottom: 32px;
      }
      .hero-buttons {
        display: flex;
        gap: 16px;
      }
      .trust-badges {
        display: flex;
        gap: 24px;
        margin-top: 32px;
        opacity: 0;
        transform: translateY(16px);
      }
      .trust-badge-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: rgba(245, 239, 230, 0.7);
      }
      .trust-badge-item svg.green {
        color: var(--botanical);
        width: 20px;
        height: 20px;
      }
      .trust-badge-item svg.amber {
        color: var(--amber);
        width: 20px;
        height: 20px;
      }

      /* Mockup Frame */
       
      
      .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .hero-visual .mockup-frame {
        transform: rotate(-5deg) translateX(40px);
        z-index: 10;
      }
      .floating-notification {
        position: absolute;
        bottom: 40px;
        left: 0;
        background: rgba(44, 36, 34, 0.8);
        backdrop-filter: blur(16px);
        border: 1px solid var(--glassBorder);
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        z-index: 20;
        display: flex;
        align-items: center;
        gap: 16px;
        transform: rotate(5deg);
      }
      .notification-icon {
        width: 48px;
        height: 48px;
        background: rgba(76, 175, 80, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .notification-icon svg {
        width: 24px;
        height: 24px;
        color: var(--botanical);
      }
      .notification-text .title {
        color: var(--cream);
        font-weight: 700;
      }
      .notification-text .desc {
        color: rgba(245, 239, 230, 0.6);
        font-size: 0.875rem;
      }

      /* IMMERSIVE STORY SECTION */
      .immersive-story {
        padding: 150px 0;
        position: relative;
        overflow: hidden;
        background: radial-gradient(
          circle at center,
          var(--charcoal) 0%,
          var(--espresso) 100%
        );
        border-top: 1px solid var(--glassBorder);
        border-bottom: 1px solid var(--glassBorder);
      }
      .story-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
      }
      .digital-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
        opacity: 0.5;
      }
      .scan-line {
        position: absolute;
        top: -100px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--amber);
        box-shadow:
          0 0 20px var(--amber),
          0 0 40px var(--amber);
        animation: scan 4s linear infinite;
        opacity: 0.7;
      }
      @keyframes scan {
        0% {
          top: -10%;
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          top: 110%;
          opacity: 0;
        }
      }

      .floating-pain {
        position: absolute;
        background: rgba(30, 20, 20, 0.8);
        border: 1px solid rgba(255, 50, 50, 0.3);
        color: rgba(255, 200, 200, 0.8);
        padding: 12px 24px;
        border-radius: 99px;
        font-size: 0.9rem;
        font-weight: 700;
        backdrop-filter: blur(10px);
        z-index: 5;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        pointer-events: none;
      }
      .pain-1 {
        top: 15%;
        right: 10%;
        transform: rotate(15deg);
      }
      .pain-2 {
        top: 40%;
        left: 5%;
        transform: rotate(-10deg);
      }
      .pain-3 {
        bottom: 20%;
        right: 15%;
        transform: rotate(5deg);
      }

      .story-content-wrapper {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
      }
      .center-glow-orb {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(242, 156, 56, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
        z-index: -1;
        filter: blur(50px);
      }
      .story-heading {
        font-size: 3.5rem;
        margin-bottom: 24px;
        line-height: 1.4;
      }
      .old-era {
        font-size: 2rem;
        color: rgba(245, 239, 230, 0.4);
        text-decoration: line-through;
        text-decoration-color: rgba(255, 50, 50, 0.6);
        display: block;
        margin-bottom: 10px;
      }
      .new-era {
        font-size: 4.5rem;
        display: block;
        text-shadow: 0 10px 30px rgba(242, 156, 56, 0.3);
      }
      .story-description {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.8);
        max-width: 700px;
        margin: 0 auto 48px;
      }
      .story-stats {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
      }
      .stat-box {
        padding: 24px 40px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-color: rgba(242, 156, 56, 0.2);
        transition: transform 0.3s;
      }
      .stat-box:hover {
        transform: translateY(-5px);
        border-color: rgba(242, 156, 56, 0.5);
      }
      .stat-num {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 8px;
      }
      .stat-label {
        color: rgba(245, 239, 230, 0.7);
        font-size: 1rem;
        font-weight: 700;
      }

      /* =========================================
         PREMIUM STACKED CARDS SLIDER (UPGRADED)
         ========================================= */
      .tiktok-scroll-container {
        position: relative;
        width: 100%;
        background: var(--espresso);
      }

      .t-slide {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--charcoal);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.5);
        transform-origin: center top;
        will-change: transform, opacity;
      }

      .t-slide-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        height: 100%;
      }

      /* --- Premium Backgrounds & Noise --- */
      .noise-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.06;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      }

      .premium-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
      }
      .relative-z {
        position: relative;
        z-index: 10;
      }

      /* Animated Glowing Orbs */
      .glow-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float-orb 15s infinite alternate ease-in-out;
      }
      .orb-red {
        width: 500px;
        height: 500px;
        background: rgba(255, 71, 87, 0.15);
        top: -10%;
        right: -10%;
      }
      .orb-amber-1 {
        width: 400px;
        height: 400px;
        background: rgba(242, 156, 56, 0.15);
        top: 10%;
        right: 20%;
      }
      .orb-amber-2 {
        width: 600px;
        height: 600px;
        background: rgba(224, 93, 38, 0.1);
        bottom: -20%;
        left: -10%;
        animation-delay: -5s;
      }
      .orb-green {
        width: 500px;
        height: 500px;
        background: rgba(76, 175, 80, 0.15);
        bottom: 10%;
        right: 10%;
      }
      .orb-blue {
        width: 600px;
        height: 600px;
        background: rgba(55, 66, 250, 0.15);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      @keyframes float-orb {
        0% {
          transform: translate(0, 0) scale(1);
        }
        100% {
          transform: translate(100px, 50px) scale(1.1);
        }
      }

      /* Background Specific Textures */
      .bg-speed {
        background: #080808;
      }
      .cyber-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 71, 87, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 71, 87, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        transform: perspective(500px) rotateX(60deg) scale(2);
        transform-origin: top;
      }
      .bg-cost {
        background: #110e0d;
      }
      .glass-morph-layer {
        position: absolute;
        inset: 0;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
      }
      .bg-data {
        background: #0a120e;
      }
      .data-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at center, transparent 0%, #0a120e 80%),
          repeating-linear-gradient(
            45deg,
            rgba(76, 175, 80, 0.02) 0px,
            rgba(76, 175, 80, 0.02) 2px,
            transparent 2px,
            transparent 8px
          );
      }
      .bg-seo {
        background: #090a14;
      }
      .radar-circles {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        opacity: 0.3;
      }
      .rc {
        position: absolute;
        inset: 0;
        border: 1px solid rgba(55, 66, 250, 0.3);
        border-radius: 50%;
        margin: auto;
      }
      .rc.r1 {
        width: 300px;
        height: 300px;
      }
      .rc.r2 {
        width: 500px;
        height: 500px;
      }
      .rc.r3 {
        width: 700px;
        height: 700px;
      }

      /* --- Text Content Styling --- */
      .t-content {
        z-index: 10;
      }
      .t-badge {
        display: inline-block;
        padding: 8px 20px;
        border-radius: 99px;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 24px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .error-theme {
        color: #ff4757;
        border-color: rgba(255, 71, 87, 0.3);
      }
      .edit-theme {
        color: var(--amber);
        border-color: rgba(242, 156, 56, 0.3);
      }
      .data-theme {
        color: var(--botanical);
        border-color: rgba(76, 175, 80, 0.3);
      }
      .seo-theme {
        color: #3742fa;
        border-color: rgba(55, 66, 250, 0.3);
      }

      .t-content h2 {
        font-size: 3rem;
        line-height: 1.3;
        margin-bottom: 24px;
        color: var(--cream);
      }
      .t-highlight {
        color: transparent;
        -webkit-text-stroke: 1px var(--amber);
        background: linear-gradient(to right, var(--amber), var(--burntOrange));
        -webkit-background-clip: text;
        text-shadow: 0 0 20px rgba(242, 156, 56, 0.4);
      }
      .t-content p {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.7);
        line-height: 1.7;
      }

      /* --- Visual Areas Styling --- */
      .t-visual {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
      }

      /* Visual 1: Speed */
      .scene-pdf {
        position: absolute;
        background: rgba(255, 71, 87, 0.1);
        border: 2px solid #ff4757;
        padding: 40px;
        border-radius: 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(255, 71, 87, 0.2);
        z-index: 1;
      }
      .scene-pdf i {
        font-size: 4rem;
        color: #ff4757;
      }
      .loading-track {
        width: 200px;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
      }
      .loading-bar-stuck {
        width: 30%;
        height: 100%;
        background: #ff4757;
        animation: pulse-error 1s infinite;
      }
      .error-msg {
        color: #ff4757;
        font-weight: bold;
      }
      .scene-digital {
        position: absolute;
        opacity: 0;
        transform: scale(0.5);
        z-index: 2;
      }
      .digital-card {
        background: linear-gradient(135deg, var(--botanical), #2ecc71);
        padding: 30px 40px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
        box-shadow: 0 0 50px rgba(46, 204, 113, 0.5);
      }
      .digital-card i {
        font-size: 2.5rem;
        color: #fff;
      }
      @keyframes pulse-error {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0.5;
        }
        100% {
          opacity: 1;
        }
      }

      /* Visual 2: Dashboard */
      .dashboard-mockup {
        width: 100%;
        max-width: 400px;
        background: var(--charcoal);
        border: 1px solid var(--glassBorder);
        border-radius: 24px;
        padding: 24px;
        position: relative;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
      }
      .dash-header {
        font-weight: bold;
        margin-bottom: 24px;
        color: var(--amber);
        border-bottom: 1px solid var(--glassBorder);
        padding-bottom: 16px;
      }
      .dash-item {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .price-edit-box {
        display: flex;
        align-items: center;
        gap: 16px;
        background: rgba(0, 0, 0, 0.3);
        padding: 12px;
        border-radius: 12px;
      }
      .old-price {
        color: #ff4757;
        text-decoration: line-through;
      }
      .new-price {
        color: var(--botanical);
        font-weight: bold;
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(-10px);
      }
      .dash-toggle {
        width: 50px;
        height: 26px;
        border-radius: 30px;
        position: relative;
        margin-top: 10px;
        --dot-left: 3px;
        background-color: rgba(255, 255, 255, 0.1);
      }
      .dash-toggle::after {
        content: "";
        position: absolute;
        top: 3px;
        left: var(--dot-left) !important;
        width: 20px;
        height: 20px;
        background: #fff;
        border-radius: 50%;
        transition: 0.3s;
      }
      .success-popup {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--botanical);
        color: #fff;
        padding: 10px 20px;
        border-radius: 12px;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
        opacity: 0;
        transform: translateY(20px);
      }

      /* Visual 3: Chart */
      .chart-container {
        width: 100%;
        height: 300px;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        border-left: 2px solid rgba(255, 255, 255, 0.1);
      }
      .chart-bar {
        width: 40px;
        background: linear-gradient(
          to top,
          rgba(242, 156, 56, 0.2),
          var(--amber)
        );
        border-radius: 8px 8px 0 0;
        position: relative;
        height: 0;
      }
      .chart-bar .tooltip {
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        color: #000;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: bold;
        opacity: 0;
        white-space: nowrap;
      }
      .chart-line {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
      }
      .chart-line path {
        stroke-dasharray: 500;
        stroke-dashoffset: 500;
      }

      /* Visual 4: SEO */
      .search-mockup {
        width: 100%;
        max-width: 450px;
      }
      .search-bar {
        background: #fff;
        padding: 16px 24px;
        border-radius: 99px;
        display: flex;
        align-items: center;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      }
      .search-bar i {
        color: #555;
      }
      .typewriter-text {
        color: #333;
        font-weight: bold;
        font-size: 1.1rem;
      }
      .search-results {
        margin-top: 24px;
        opacity: 0;
        transform: translateY(20px);
      }
      .result-card {
        background: var(--charcoal);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px;
        border-radius: 16px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        box-shadow: 0 0 30px rgba(55, 66, 250, 0.2);
      }
      .pin-icon {
        color: #ff4757;
        font-size: 2rem;
        animation: bounce 2s infinite;
      }
      .r-info h4 {
        color: var(--cream);
        margin-bottom: 8px;
      }
      .r-info p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      /* =========================================
         Cinematic Features Section
         ========================================= */
      .features-section {
        padding: 120px 0;
        position: relative;
        background: var(--espresso);
        overflow: hidden;
      }
      .features-bg-mesh {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
          radial-gradient(
            circle at 80% 20%,
            rgba(242, 156, 56, 0.1) 0%,
            transparent 40%
          ),
          radial-gradient(
            circle at 20% 80%,
            rgba(224, 93, 38, 0.08) 0%,
            transparent 40%
          );
        filter: blur(40px);
      }
      .features-grid-pattern {
        position: absolute;
        inset: 0;
        z-index: 1;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 50px 50px;
        mask-image: radial-gradient(
          ellipse at center,
          black 40%,
          transparent 80%
        );
        -webkit-mask-image: radial-gradient(
          ellipse at center,
          black 40%,
          transparent 80%
        );
      }
      .section-header {
        text-align: center;
        margin-bottom: 64px;
      }
      .section-header h2 {
        font-size: 3rem;
        margin-bottom: 16px;
      }
      .section-header p {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.7);
      }
      .bento-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        grid-auto-rows: 1fr;
        position: relative;
        z-index: 10;
      }
      .feature-large {
        grid-column: span 2;
        min-height: 320px;
      }
      .interactive-card {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.03) 0%,
          rgba(0, 0, 0, 0.2) 100%
        );
        transition:
          transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
          border-color 0.4s;
        border-radius: 24px;
        min-height: 280px;
      }
      .interactive-card:hover {
        transform: translateY(-8px);
        border-color: rgba(242, 156, 56, 0.4);
        box-shadow:
          0 20px 40px rgba(0, 0, 0, 0.4),
          inset 0 0 20px rgba(242, 156, 56, 0.05);
      }
      .card-glow-cursor {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(
          circle,
          rgba(242, 156, 56, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        transform: translate(-50%, -50%);
        z-index: 1;
      }
      .interactive-card:hover .card-glow-cursor {
        opacity: 1;
      }
      .card-content {
        position: relative;
        z-index: 10;
        padding: 32px;
      }
      .icon-box {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        position: relative;
        z-index: 10;
      }
      .icon-box.amber {
        background: linear-gradient(
          to bottom right,
          var(--amber),
          var(--burntOrange)
        );
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
      }
      .icon-box.dark {
        background: var(--charcoal);
        border: 1px solid var(--glassBorder);
      }
      .icon-box.green {
        background: rgba(76, 175, 80, 0.2);
        border: 1px solid rgba(76, 175, 80, 0.3);
      }
      .interactive-card h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        position: relative;
        z-index: 10;
      }
      .interactive-card p {
        color: rgba(245, 239, 230, 0.7);
        font-size: 1.125rem;
        position: relative;
        z-index: 10;
        max-width: 400px;
      }
      .interactive-card svg {
        width: 28px;
        height: 28px;
        color: #fff;
      }
      .interactive-card .icon-box.green svg {
        color: var(--botanical);
      }
      .interactive-card .icon-box.dark svg {
        color: var(--amber);
      }
      .card-visual {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        overflow: hidden;
      }
      .visual-speed {
        background: radial-gradient(
          circle at right,
          rgba(242, 156, 56, 0.05) 0%,
          transparent 50%
        );
      }
      .speed-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--amber),
          transparent
        );
        width: 150px;
        opacity: 0;
        left: -150px;
      }
      .speed-line.line-1 {
        top: 20%;
        animation: zip 3s infinite 0.2s;
      }
      .speed-line.line-2 {
        top: 50%;
        animation: zip 2.5s infinite 1s;
        width: 200px;
      }
      .speed-line.line-3 {
        top: 80%;
        animation: zip 4s infinite 0.5s;
        width: 100px;
      }
      @keyframes zip {
        0% {
          left: -200px;
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          left: 100%;
          opacity: 0;
        }
      }
      .visual-chat {
        display: flex;
        justify-content: flex-end;
        padding: 20px;
        opacity: 0.15;
        transition:
          opacity 0.4s,
          transform 0.4s;
      }
      .interactive-card:hover .visual-chat {
        opacity: 0.8;
        transform: scale(1.05);
      }
      .chat-bubble {
        background: var(--botanical);
        color: #fff;
        padding: 10px 16px;
        border-radius: 20px 20px 0 20px;
        font-size: 0.875rem;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
        margin-top: 30px;
      }
      .visual-control {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        right: -20px;
        bottom: 20px;
        opacity: 0.2;
        transition:
          opacity 0.4s,
          right 0.4s;
      }
      .interactive-card:hover .visual-control {
        opacity: 0.6;
        right: 20px;
      }
      .ui-toggle {
        width: 60px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        position: relative;
        border: 1px solid var(--glassBorder);
      }
      .ui-toggle::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 22px;
        height: 22px;
        background: #666;
        border-radius: 50%;
        transition: 0.3s;
      }
      .ui-toggle.active {
        background: rgba(242, 156, 56, 0.2);
        border-color: var(--amber);
      }
      .ui-toggle.active::after {
        left: 33px;
        background: var(--amber);
        box-shadow: 0 0 10px var(--amber);
      }
      .visual-economy {
        position: absolute;
        inset: 0;
      }
      .floating-coin {
        position: absolute;
        font-size: 2rem;
        opacity: 0.1;
        transition: opacity 0.3s;
      }
      .interactive-card:hover .floating-coin {
        opacity: 0.4;
      }
      .coin-1 {
        top: 20%;
        right: 10%;
        animation: float-coin 3s ease-in-out infinite alternate;
      }
      .coin-2 {
        bottom: 20%;
        left: 30%;
        animation: float-coin 4s ease-in-out infinite alternate-reverse;
        font-size: 1.5rem;
      }
      .floating-coin i {
        font-size: 1.5rem;
        color: #f59e0b;
      }

      /* GALLERY SECTION */
      .gallery-section {
        position: relative;
        z-index: 10;
        padding: 120px 0;
        background-color: var(--charcoal);
      }
      .gallery-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .gallery-header h2 {
        font-size: 3rem;
        margin-bottom: 16px;
      }
      .gallery-header p {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.9);
      }
      .static-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
      }
      .gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .gallery-item h3 {
        font-size: 1.25rem;
        margin-top: 24px;
        color: var(--cream);
        font-weight: 700;
      }
      .gallery-item .mockup-frame {
        width: 100%;
        max-width: 260px;
        aspect-ratio: 320 / 650;
        position: relative; 
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        cursor: pointer;
        
      }
      .gallery-item .mockup-frame:hover {
        transform: translateY(-8px);
        
      }
      .gallery-item .mockup-screen {
        width: 100%;
        height: 100%;
        border-radius: 18px;
        overflow: hidden;
      }
      .gallery-item .mockup-screen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
      }
      .gallery-item .mockup-frame:hover .mockup-screen img {
        opacity: 0.5;
      }

      /* HOW IT WORKS (TIMELINE) */
      .timeline-section {
        padding: 120px 0;
        position: relative;
        z-index: 10;
        overflow: hidden;
      }
      .timeline-bg-glow {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(
          ellipse,
          rgba(242, 156, 56, 0.05) 0%,
          transparent 60%
        );
        z-index: 0;
        pointer-events: none;
      }
      .timeline-container {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding-right: 32px;
        z-index: 2;
      }
      .timeline-line-track {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(-50%);
        border-radius: 4px;
      }
      .timeline-progress-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: linear-gradient(
          to bottom,
          var(--amber),
          var(--burntOrange)
        );
        border-radius: 4px;
        box-shadow: 0 0 15px rgba(242, 156, 56, 0.6);
      }
      .timeline-spark {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
        box-shadow:
          0 0 20px 5px var(--amber),
          0 0 40px var(--burntOrange);
        opacity: 0;
        z-index: 3;
      }
      .step-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 80px;
        position: relative;
      }
      .step-item:last-child {
        margin-bottom: 0;
      }
      .step-spacer {
        width: 41.666%;
        display: none;
      }
      .step-marker {
        position: absolute;
        right: 0;
        width: 48px;
        height: 48px;
        background: var(--espresso);
        border: 4px solid rgba(242, 156, 56, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(242, 156, 56, 0.5);
        font-weight: 800;
        font-size: 1.2rem;
        z-index: 10;
        transform: translateX(50%);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
      .interactive-step {
        border-color: rgba(255, 255, 255, 0.05);
        transition: all 0.5s ease;
        filter: grayscale(50%);
        opacity: 0.7;
      }
      .step-card {
        width: 100%;
        margin-right: 32px;
        padding: 40px;
        border-radius: 24px;
      }
      .step-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .step-card h3 span {
        font-size: 2.5rem;
      }
      .step-card p {
        font-size: 1.125rem;
        color: rgba(245, 239, 230, 0.7);
      }
      .step-item.active .step-marker {
        border-color: var(--amber);
        color: var(--espresso);
        background: var(--amber);
        box-shadow:
          0 0 30px rgba(242, 156, 56, 0.8),
          inset 0 0 10px #fff;
        transform: translateX(50%) scale(1.15);
      }
      .step-item.active .interactive-step {
        border-color: rgba(242, 156, 56, 0.5);
        box-shadow:
          0 10px 40px rgba(0, 0, 0, 0.5),
          inset 0 0 20px rgba(242, 156, 56, 0.05);
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.02);
      }

      /* FAQ SECTION */
      .faq-section {
        padding: 96px 0;
        position: relative;
        z-index: 10;
      }
      .faq-container {
        max-width: 768px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .faq-item {
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .faq-question {
        padding: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .faq-question h3 {
        font-size: 1.125rem;
        font-weight: 700;
        transition: color 0.3s;
        margin: 0;
      }
      .faq-icon {
        color: rgba(245, 239, 230, 0.5);
        transition: transform 0.3s;
      }
      .faq-icon svg {
        width: 24px;
        height: 24px;
      }
      .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.4s ease;
        background: rgba(0, 0, 0, 0.2);
      }
      .faq-answer-inner {
        overflow: hidden;
      }
      .faq-answer-content {
        padding: 0 24px 24px;
      }
      .faq-answer-content p {
        color: rgba(245, 239, 230, 0.7);
        line-height: 1.7;
        border-right: 2px solid var(--amber);
        padding-right: 16px;
      }
      .faq-item.active {
        border-color: var(--amber);
        box-shadow: 0 0 20px rgba(242, 156, 56, 0.15);
      }
      .faq-item.active .faq-question h3 {
        color: var(--cream);
      }
      .faq-item.active .faq-icon {
        transform: rotate(45deg);
        color: var(--amber);
      }
      .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
      }

      /* FINAL CTA */
      .cta-section {
        padding: 96px 0;
        position: relative;
        z-index: 10;
      }
      .cta-box {
        max-width: 1024px;
        margin: 0 auto;
        position: relative;
        border-radius: 48px;
        overflow: hidden;
        padding: 64px;
        text-align: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      }
      .cta-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            at 40% 20%,
            hsla(28, 100%, 74%, 1) 0px,
            transparent 50%
          ),
          radial-gradient(
            at 80% 0%,
            hsla(189, 100%, 56%, 0.2) 0px,
            transparent 50%
          ),
          radial-gradient(
            at 0% 50%,
            hsla(355, 100%, 93%, 0.1) 0px,
            transparent 50%
          );
        opacity: 0.3;
      }
      .cta-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--espresso), transparent);
        opacity: 0.9;
      }
      .cta-border {
        position: absolute;
        inset: 0;
        border: 1px solid var(--glassBorder);
        border-radius: 48px;
        pointer-events: none;
      }
      .cta-content {
        position: relative;
        z-index: 10;
      }
      .cta-content h2 {
        font-size: 3.5rem;
        margin-bottom: 24px;
      }
      .cta-content p {
        font-size: 1.25rem;
        color: rgba(245, 239, 230, 0.9);
        max-width: 700px;
        margin: 0 auto 32px;
      }
      /* =========================================
   SPARKLE CTA BUTTON (Replaces btn-cta)
   ========================================= */
      .btn-sparkle-cta {
        --border_radius: 9999px;
        --transtion: 0.3s ease-in-out;
        --offset: 2px;

        cursor: pointer;
        position: relative;
        display: inline-flex; /* ليعمل بشكل سليم كـ Link */
        align-items: center;
        justify-content: center;
        gap: 0.75rem;

        transform-origin: center;
        padding: 1.25rem 2.5rem;
        background-color: transparent;

        border: none;
        border-radius: var(--border_radius);
        transform: scale(
          calc(1 + (var(--active, 0) * 0.05))
        ); /* تكبير خفيف عند الهوفر */
        transition: transform var(--transtion);
        text-decoration: none;
        margin-top: 10px;
      }

      .btn-sparkle-cta::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 100%;
        height: 100%;
        background-color: var(--charcoal); /* لون يتناسب مع خلفية موقعك */

        border-radius: var(--border_radius);
        box-shadow:
          inset 0 0.5px rgba(255, 255, 255, 0.2),
          inset 0 -1px 2px 0 rgba(0, 0, 0, 0.5),
          0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
          0 0 0 calc(var(--active, 0) * 0.375rem) rgba(242, 156, 56, 0.5); /* توهج بلون الـ Amber بتاعك */

        transition: all var(--transtion);
        z-index: 0;
      }

      .btn-sparkle-cta::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 100%;
        height: 100%;
        /* الجراديانت مخصص ليتناسب مع موقعك (برتقالي محروق وذهبي) */
        background-color: rgba(224, 93, 38, 0.75);
        background-image:
          radial-gradient(at 51% 89%, var(--amber) 0px, transparent 50%),
          radial-gradient(
            at 100% 100%,
            var(--burntOrange) 0px,
            transparent 50%
          ),
          radial-gradient(at 22% 91%, var(--burntOrange) 0px, transparent 50%);
        background-position: top;

        opacity: var(--active, 0);
        border-radius: var(--border_radius);
        transition: opacity var(--transtion);
        z-index: 2;
      }

      .btn-sparkle-cta:is(:hover, :focus-visible) {
        --active: 1;
      }
      .btn-sparkle-cta:active {
        transform: scale(1);
      }

      .btn-sparkle-cta .dots_border {
        --size_border: calc(100% + 2px);
        overflow: hidden;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: var(--size_border);
        height: var(--size_border);
        background-color: transparent;
        border-radius: var(--border_radius);
        z-index: -10;
      }

      .btn-sparkle-cta .dots_border::before {
        content: "";
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-origin: left;
        transform: rotate(0deg);
        width: 100%;
        height: 2rem;
        background-color: var(--amber); /* الخط الدائري يلف بلون ذهبي */

        mask: linear-gradient(transparent 0%, white 120%);
        -webkit-mask: linear-gradient(transparent 0%, white 120%);
        animation: sparkle-rotate 2s linear infinite;
      }

      @keyframes sparkle-rotate {
        to {
          transform: rotate(360deg);
        }
      }

      .btn-sparkle-cta .sparkle {
        position: relative;
        z-index: 10;
        width: 1.75rem;
      }

      .btn-sparkle-cta .sparkle .path {
        fill: currentColor;
        stroke: currentColor;
        transform-origin: center;
        color: var(--cream);
      }

      .btn-sparkle-cta:is(:hover, :focus) .sparkle .path {
        animation: sparkle-path 1.5s linear 0.5s infinite;
      }

      .btn-sparkle-cta .sparkle .path:nth-child(1) {
        --scale_path_1: 1.2;
      }
      .btn-sparkle-cta .sparkle .path:nth-child(2) {
        --scale_path_2: 1.2;
      }
      .btn-sparkle-cta .sparkle .path:nth-child(3) {
        --scale_path_3: 1.2;
      }

      @keyframes sparkle-path {
        0%,
        34%,
        71%,
        100% {
          transform: scale(1);
        }
        17% {
          transform: scale(var(--scale_path_1, 1));
        }
        49% {
          transform: scale(var(--scale_path_2, 1));
        }
        83% {
          transform: scale(var(--scale_path_3, 1));
        }
      }

      .btn-sparkle-cta .text_button {
        position: relative;
        z-index: 10;
        background-image: linear-gradient(
          90deg,
          var(--cream) 0%,
          rgba(253, 251, 247, var(--active, 0.8)) 120%
        );
        background-clip: text;
        -webkit-background-clip: text;
        font-size: 1.25rem;
        font-family: "Almarai", sans-serif;
        font-weight: 700;
        color: transparent;
      }

      /* للموبايل */
      @media (max-width: 768px) {
        .btn-sparkle-cta {
          width: 100%; /* عشان ياخد عرض الشاشة في الموبايل */
        }
      }

      /* GLOBAL RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        height: 130vh;
    }
}
        .hero-title {
          font-size: 3.5rem;
        }
        .hero-subtitle {
          margin: 0 auto 32px;
        }
        .hero-buttons {
          justify-content: center;
        }
        .trust-badges {
          justify-content: center;
        }
        .hero-visual {
          display: flex;
          transform: scale(0.85);
          transform-origin: top center;
          margin-top: 32px;
        }
        .mockup-frame {
          margin: 0 auto;
        }
        .bento-grid {
          grid-template-columns: 1fr;
        }
        .feature-large {
          grid-column: span 1;
        }
        .static-gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 48px 32px;
        }
        .t-slide-inner {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: 40px 24px;
          text-align: center;
        }
        .t-content h2 {
          font-size: 2.2rem;
        }
        .t-badge {
          margin: 0 auto 16px;
          display: block;
          width: max-content;
        }
        .t-visual {
          height: 250px;
        }
      }

      @media (min-width: 769px) {
        .step-spacer {
          display: block;
        }
        .step-marker {
          left: 50%;
          right: auto;
          transform: translateX(-50%);
          margin-top: 0;
        }
        .step-card {
          width: 41.666%;
          margin-right: 0;
        }
        .step-item.even {
          flex-direction: row-reverse;
        }
        .step-item.even .step-card {
          text-align: left;
        }
        html[dir="rtl"] .step-item.even .step-card {
          text-align: right;
        }
        .step-item.active .step-marker {
          transform: translateX(-50%) scale(1.15);
        }
      }

      @media (max-width: 768px) {
        .hero-title {
          font-size: 2.25rem;
        }
        .hero-visual {
          transform: scale(0.75);
          margin-top: 16px;
        }
        .story-panel h2 {
          font-size: 1.8rem;
        }
        .section-header h2 {
          font-size: 2rem;
          margin-bottom: 12px;
        }
        .section-header p {
          font-size: 1rem;
        }
        .gallery-wrapper {
          width: 100%;
          flex-direction: column;
        }
        .gallery-item {
          width: 100%;
          height: auto;
          padding: 40px 16px;
        }
        .gallery-section {
          padding: 64px 0;
          display: block;
          height: auto;
        }
        .gallery-header {
          position: relative;
          top: 0;
          padding: 0 24px;
        }
        .gallery-header h2 {
          font-size: 2rem !important;
        }
        .immersive-story,
        .features-section,
        .timeline-section,
        .faq-section,
        .cta-section {
          padding: 64px 0 !important;
        }
        .timeline-line-track {
          right: 16px;
          left: auto;
          transform: none;
        }
        .timeline-spark {
          left: 2px;
        }
        .step-item.active .step-marker {
          transform: translateX(50%) scale(1.15);
        }
        .cta-content h2 {
          font-size: 2rem;
        }
        .btn-cta {
          font-size: 1.125rem;
          padding: 16px 32px;
          width: 100%;
        }
        .hero-buttons {
          flex-direction: column;
          width: 100%;
        }
        .hero-buttons a {
          width: 100%;
          text-align: center;
        }
        .cta-box {
          padding: 40px 24px;
          border-radius: 24px;
        }
        .feature-control-row {
          flex-direction: column !important;
          text-align: center;
          gap: 32px !important;
        }
        .feature-control-row .card-content {
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .feature-control-row .icon-box {
          margin: 0 auto 16px;
        }
        .feature-control-row img {
          width: 80% !important;
          margin: 0 auto;
        }
        .new-era {
          font-size: 2.5rem;
        }
        .old-era {
          font-size: 1.25rem;
        }
        .floating-pain {
          display: none;
        }
        .stat-box {
          width: 100%;
          padding: 20px;
        }
        .ternpress-logo {
          font-size: 40px !important;
        }
        .step-marker {
          right: -16px !important;
        }
        .hero-section {
          padding: 24px 0px 64px !important;
        }
        .static-gallery-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .gallery-item .mockup-frame {
          max-width: 300px;
        }
      }

      /* Floating Back Button */
      .floating-back-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        background: var(--glass);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--glassBorder);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--amber);
        font-size: 1.5rem;
        z-index: 9999;
        cursor: pointer;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .floating-back-btn:hover {
        background: var(--amber);
        color: var(--espresso);
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(242, 156, 56, 0.4);
      }

      .floating-back-btn .tooltip {
        position: absolute;
        bottom: calc(100% + 16px);
        left: 12%;
        transform: translateX(-50%) scale(0.9);
        background: var(--charcoal);
        color: var(--cream);
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 700;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--glassBorder);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        font-family: "Almarai", sans-serif;
      }

      .floating-back-btn:hover .tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
      }

      .floating-back-btn .tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: var(--charcoal) transparent transparent transparent;
      }