    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

    :root {
    --primary-green: #2ECC71;
    --deep-black: #000000;
    --pure-white: #FFFFFF;
    --gradient-green: #27AE60;
    --dark-gray: #2C3E50;
    --light-gray: #ECF0F1;
    --accent-green: #1ABC9C;
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.6;
    color: var(--deep-black);
    overflow-x: hidden;
    scroll-behavior: smooth;
    }

    /* Custom Cursor */
    .cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
    }

    .cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 0.15rem 0;
        min-height: 48px;
        background: rgba(145, 166, 153, 0.12);
        border-bottom: 1px solid rgba(37, 211, 102, 0.25);
        z-index: 1000;
        backdrop-filter: blur(6px);
    }
    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    }

    .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pure-white);
    text-decoration: none;
    }

    .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    }

    .logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--pure-white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(45deg);
    }

    .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    }

    .nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    }

    .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
    width: 100%;
    }

    /* Hero Section */
    .hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, #5e5e5e71 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    }

    .hero-content {
    text-align: center;
    color: var(--pure-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    }

    .hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 0.5s;
    }

    .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 0.7s;
    }

    .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 0.9s;
    }

    .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    }

    .cta-button:hover::before {
    left: 100%;
    }

    .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
    }

    /* Floating Elements */
    .floating-element {
    position: absolute;
    background: #695f4f3b;
    border-radius: 50%;
    animation: float 0.6s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    }

    /* Features Section */
    .features {
    padding: 5rem 2rem;
    background: var(--pure-white);
    position: relative;
    }

    .container {
    max-width: 1200px;
    margin: 0 auto;
    }

    .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--deep-black);
    }

    .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    }

    .feature-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }

    .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
    transform: scaleX(1);
    }

    .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    }

    .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    }

    .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-black);
    }

    .feature-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    }

    /* Technology Section */
    .technology {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-gray) 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    }

    .tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    }

    .tech-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .tech-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    }

    .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    }

    .stat-item {
    text-align: center;
    }

    .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    display: block;
    }

    .stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    }

    .tech-visual {
    position: relative;
    height: 400px;
    }

    .tech-circle {
    position: absolute;
    border: 1px solid var(--pure-white);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit 6s linear infinite;
    transform-origin: center;
    }

    .orbit i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--pure-white);
    font-size: 20px;
    }

    .tech-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .tech-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 30s;
    }

    .tech-circle:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
    }

    /* Products Section */
    .products {
    padding: 5rem 2rem;
    background: var(--light-gray);
    }

    .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    }

    .product-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    }

    .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .product-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    position: relative;
    overflow: hidden;
    }

    .product-image::before {
    content: '🛍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    }

    .product-info {
    padding: 1.5rem;
    }

    .product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    }

    .product-price {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    }

    /* Pricing Section */
    .pricing {
    padding: 5rem 2rem;
    background: var(--pure-white);
    position: relative;
    }

    .pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    }

    .pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    }

    .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    border-color: var(--primary-green);
    }

    .pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--pure-white);
    transform: scale(1.05);
    border-color: var(--primary-green);
    }

    .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    }

    .featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-black);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    }

    .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    }

    .pricing-header h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    }

    .pricing-monthly {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    }

    .pricing-yearly {
    margin-bottom: 1rem;
    }

    .old-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 1rem;
    margin-left: 0.5rem;
    }

    .new-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    }

    .pricing-card.featured .new-price {
    color: var(--pure-white);
    }

    .pricing-features {
    margin-bottom: 2rem;
    }

    .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    }

    .feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    }

    .pricing-card.featured .feature-icon {
    background: var(--pure-white);
    color: var(--primary-green);
    }

    .pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }

    .pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    }

    .pricing-btn:hover::before {
    left: 100%;
    }

    .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
    }

    .pricing-card.featured .pricing-btn {
    background: var(--pure-white);
    color: var(--primary-green);
    }

    .pricing-btn.coming-soon {
    background: var(--dark-gray);
    cursor: not-allowed;
    }

    .pricing-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
    }

    .submit-btn {
    padding: 1rem 2rem;
    background: var(--pure-white);
    color: var(--deep-black);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    /* Footer */
    footer {
    background: rgba(145, 166, 153, 0.12);
    text-align: center;
    padding: 2rem;
    }

    /* Animations */
    @keyframes fadeInUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }

    @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    }

    @keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    @keyframes orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
    }


    /* Detailed Pricing Table Section */
    .detailed-pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-gray) 100%);
    color: var(--pure-white);
    }

    .detailed-pricing .section-title {
    color: var(--pure-white);
    }

    .detailed-pricing .pricing-subtitle {
    color: rgba(255,255,255,0.8);
    }

    .pricing-table-wrapper {
    overflow-x: auto;
    margin: 50px 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .pricing-table {
    width: 100%;
    background: var(--pure-white);
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    min-width: 800px;
    }

    .pricing-table thead {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-gray) 100%);
    }

    .pricing-table th {
    padding: 30px 20px;
    text-align: center;
    color: var(--pure-white);
    font-weight: bold;
    font-size: 1.1rem;
    }

    .feature-column {
    background: var(--deep-black) !important;
    text-align: right !important;
    width: 30%;
    }

    .catalog-column {
    background: var(--dark-gray) !important;
    }

    .store-column {
    background: var(--primary-green) !important;
    }

    .super-store-column {
    background: #dba753 !important;
    }

    .plan-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    }

    .plan-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    }

    .pricing-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
    }

    .pricing-table tbody tr:hover {
    background: #f8f9fa;
    }

    .pricing-table td {
    padding: 20px;
    text-align: center;
    color: var(--deep-black);
    font-weight: 500;
    }

    .feature-name {
    text-align: right !important;
    font-weight: bold;
    background: #ecf0f1;
    color: var(--deep-black);
    }

    .feature-value {
    font-weight: bold;
    }

    .feature-value.check {
    color: var(--primary-green);
    font-size: 1.2rem;
    }

    .feature-value.partial {
    color: #f39c12;
    }

    .feature-value.full {
    color: var(--primary-green);
    }

    .table-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    }

    .table-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    }

    .catalog-btn {
    background: var(--dark-gray);
    color: var(--pure-white);
    }

    .catalog-btn:hover {
    background: #6c7b7d;
    transform: translateY(-2px);
    }

    .store-btn {
    background: var(--primary-green);
    color: var(--pure-white);
    }

    .store-btn:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    }

    .super-store-btn {
    background: #95a5a6;
    color: var(--pure-white);
    cursor: not-allowed;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .nav-links {
    display: none;
    }

    .hero h1 {
    font-size: 2.5rem;
    }

    .hero p {
    font-size: 1.2rem;
    }

    .section-title {
    font-size: 2rem;
    }

    .tech-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .stats {
    grid-template-columns: 1fr;
    }

    .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

    .pricing-card.featured {
    transform: none;
    }

    .pricing-card.featured:hover {
    transform: translateY(-10px);
    }

    .pricing-table-wrapper {
    margin: 30px -20px;
    border-radius: 0;
    }

    .pricing-table {
    border-radius: 0;
    font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
    padding: 15px 10px;
    }

    .plan-header h3 {
    font-size: 1.1rem;
    }

    .plan-header p {
    font-size: 0.8rem;
    }

    .table-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    }

    .table-btn {
    width: 100%;
    max-width: 300px;
    }

    .cursor,
    .cursor-follower {
    display: none;
    }
    }

    /* Scroll Animations */
    .fade-in {
    transform: translateY(30px);
    transition: all 0.6s ease;
    }

    .fade-in.visible {
    transform: translateY(0);
    }

    .nav-item .dropdown-menu {
        min-width: 150px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-item .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        transition: background-color 0.3s ease;
    }

    .nav-item .dropdown-item:hover {
        background-color: var(--primary-green);
        color: var(--pure-white);
    }

    .nav-link.dropdown-toggle::after {
        display: none !important;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
    }

    .switch input {display:none;}
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 24px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: #2ECC71;
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }

    #yearly-label, #monthly-label {
        font-weight: bold;
        color: #888;
        cursor: pointer;
    }

    #yearly-label.active, #monthly-label.active {
        color: #2ECC71;
    }

    .price-green {
        color: #2ECC71 !important;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .price-white {
        color: #ffffff !important;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .pricing-old {
        font-size: 1.2rem;
        color: #888;
        text-decoration: line-through;
        margin-bottom: 0.5rem;
        display: block;
    }
