        :root {
            --primary-red: #e50914;
            --dark: #050608;
            --dark-soft: #111218;
            --light: #ffffff;
            --gray: #b3b3b3;
            --border: #2a2a2a;
            --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
            --radius-lg: 18px;
            --radius-xl: 26px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top, #191919 0%, #050608 55%, #2f0000 100%);
            color: var(--light);
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.80), transparent);
            backdrop-filter: blur(14px);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-badge {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 2px solid rgba(229, 9, 20, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at top left, rgba(229,9,20,0.4), rgba(0,0,0,0.98));
            box-shadow: 0 0 18px rgba(229,9,20,0.6);
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 1px;
        }

        .logo-text-main {
            font-weight: 800;
            font-size: 20px;
        }

        .logo-text-sub {
            font-size: 11px;
            color: var(--gray);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 14px;
        }

        .nav-links a {
            color: var(--gray);
            transition: color 0.2s ease, transform 0.15s ease;
        }

        .nav-links a:hover {
            color: var(--light);
            transform: translateY(-1px);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            border-radius: 999px;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            outline: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff1b2b, #e50914);
            color: var(--light);
            box-shadow: 0 10px 25px rgba(229,9,20,0.55);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 40px rgba(229,9,20,0.85);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.22);
            color: var(--light);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.05);
        }

        .nav-toggle {
            display: none;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(0,0,0,0.8);
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            background: var(--light);
            border-radius: 999px;
            position: relative;
        }

        .nav-toggle span::before,
        .nav-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            background: var(--light);
            border-radius: 999px;
        }

        .nav-toggle span::before {
            top: -5px;
        }

        .nav-toggle span::after {
            top: 5px;
        }

        /* Hero */
        .hero {
            padding: 48px 0 36px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 32px;
            align-items: top;
            margin-top: 40px;
        }

        .badge-top {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.12);
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 14px;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #11d811;
            box-shadow: 0 0 12px rgba(17,216,17,0.9);
        }

        .hero-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #ff3b4e, #ff9a9e);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 22px;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .hero-note {
            font-size: 11px;
            color: var(--gray);
        }

        .hero-pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .hero-pill {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.12);
            color: var(--gray);
        }

        /* Hero visual */
        .hero-visual {
            position: relative;
        }

        .hero-card {
            position: relative;
            border-radius: var(--radius-xl);
            background: radial-gradient(circle at top left, rgba(229,9,20,0.2), rgba(7,7,7,0.98));
            border: 1px solid rgba(255,255,255,0.06);
            padding: 16px;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }

        .hero-card-title {
            font-size: 13px;
            color: var(--gray);
        }

        .hero-card-title strong {
            display: block;
            font-size: 15px;
            color: var(--light);
        }

        .hero-card-badges {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
        }

        .hero-card-badge {
            padding: 3px 7px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18);
            background: rgba(0,0,0,0.6);
        }

        .hero-stats-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 14px;
        }

        .stat-box {
            padding: 8px;
            border-radius: 14px;
            background: rgba(0,0,0,0.65);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .stat-label {
            font-size: 10px;
            color: var(--gray);
            margin-bottom: 4px;
        }

        .stat-value {
            font-size: 15px;
            font-weight: 700;
        }

        .stat-trend {
            font-size: 10px;
            margin-top: 2px;
        }

        .stat-trend.positive {
            color: #24e07b;
        }

        .stat-trend.negative {
            color: #ff7676;
        }

        .hero-mini-chart {
            margin-top: 10px;
            height: 40px;
            border-radius: 999px;
            background: linear-gradient(to left, rgba(229,9,20,0.16), rgba(255,255,255,0.05));
            position: relative;
            overflow: hidden;
        }

        .hero-mini-chart-line {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0), rgba(229,9,20,0.5), rgba(0,0,0,0));
            opacity: 0.7;
        }

        .hero-mini-chart-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--light);
            right: 16%;
            top: 26%;
            box-shadow: 0 0 14px rgba(255,255,255,0.8);
        }

        .hero-floating-tag {
            position: absolute;
            bottom: -16px;
            left: -6px;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.9);
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.12);
            font-size: 10px;
            padding: 6px 10px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-floating-dot-red {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: #ff3b4e;
            box-shadow: 0 0 10px rgba(255,59,78,0.9);
        }

        .hero-float-sticker {
            position: absolute;
            top: -12px;
            right: -6px;
            background: #24e07b;
            color: #021006;
            padding: 4px 10px;
            font-size: 10px;
            font-weight: 700;
            border-radius: 999px;
            box-shadow: 0 8px 16px rgba(36,224,123,0.4);
        }

        .hero-image-placeholder {
            margin-top: 14px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px dashed rgba(255,255,255,0.16);
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.02),
                rgba(255,255,255,0.02) 6px,
                rgba(255,255,255,0.06) 6px,
                rgba(255,255,255,0.06) 12px
            );
            padding: 10px;
            font-size: 11px;
            color: var(--gray);
        }

        .hero-image-placeholder img {
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Sections */
        section {
            padding: 32px 0;
        }

        .section-header {
            text-align: right;
            margin-bottom: 22px;
        }

        .section-kicker {
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 4px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .section-subtitle {
            font-size: 13px;
            color: var(--gray);
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .feature-card {
            border-radius: var(--radius-lg);
            background: linear-gradient(145deg, rgba(0,0,0,0.9), rgba(22,22,22,0.96));
            border: 1px solid rgba(255,255,255,0.06);
            padding: 16px;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(229,9,20,0.25), transparent 55%);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(229,9,20,0.13);
            margin-bottom: 10px;
            font-size: 15px;
        }

        .feature-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .feature-text {
            font-size: 12px;
            color: var(--gray);
        }

        /* How it works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .step-card {
            border-radius: var(--radius-lg);
            background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(6,6,6,0.98));
            border: 1px solid rgba(255,255,255,0.08);
            padding: 14px;
        }

        .step-number {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            margin-bottom: 8px;
        }

        .step-title {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .step-text {
            font-size: 12px;
            color: var(--gray);
        }

        /* Highlight strip */
        .highlight-strip {
            margin-top: 10px;
            border-radius: var(--radius-lg);
            padding: 12px 14px;
            background: linear-gradient(135deg, rgba(229,9,20,0.16), rgba(0,0,0,0.9));
            border: 1px solid rgba(229,9,20,0.4);
            font-size: 12px;
        }

        /* Pricing-ish */
        .pricing-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 18px;
            align-items: stretch;
        }

        .pricing-card {
            border-radius: var(--radius-xl);
            background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(0,0,0,0.98));
            border: 1px solid rgba(255,255,255,0.12);
            padding: 18px;
        }

        .pricing-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(0,0,0,0.8);
            border: 1px solid rgba(255,255,255,0.18);
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 8px;
        }

        .pricing-price {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .pricing-note {
            font-size: 11px;
            color: var(--gray);
            margin-bottom: 14px;
        }

        .pricing-list {
            list-style: none;
            font-size: 12px;
            color: var(--gray);
            margin-bottom: 14px;
        }

        .pricing-list li {
            display: flex;
            align-items: flex-start;
            gap: 6px;
            margin-bottom: 6px;
        }

        .pricing-dot {
            margin-top: 4px;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: rgba(229, 9, 20, 0.8);
        }

        .mini-faq {
            border-radius: var(--radius-lg);
            background: rgba(0,0,0,0.9);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 14px;
            font-size: 12px;
            color: var(--gray);
        }

        .mini-faq strong {
            color: var(--light);
        }

        .mini-faq p + p {
            margin-top: 6px;
        }

        /* Contact */
        .contact-card {
            border-radius: var(--radius-xl);
            background: radial-gradient(circle at top right, rgba(229,9,20,0.18), rgba(0,0,0,0.98));
            border: 1px solid rgba(255,255,255,0.12);
            padding: 18px;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
            gap: 16px;
        }

        .contact-info-list {
            list-style: none;
            font-size: 13px;
            color: var(--gray);
            margin: 10px 0;
        }

        .contact-info-list li {
            margin-bottom: 6px;
        }

        .contact-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            margin-top: 8px;
        }
        .contact-whatsapp {
            
            background-color: green;
            padding: 5px;
            border-radius: 6px;
        }

        .contact-whatsapp span:first-child {
            font-size: 18px;
        }

        .whatsapp{
            position: fixed;
            bottom: 20px;
            right: 5px;
            background-color: green;
            padding: 5px;
            border-radius: 6px;
        }

        .contact-form {
            display: grid;
            gap: 8px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }

        .field-label {
            font-size: 11px;
            margin-bottom: 2px;
        }

        .field-input,
        .field-textarea {
            width: 100%;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(3,3,3,0.9);
            color: var(--light);
            padding: 8px 10px;
            font-size: 12px;
            outline: none;
        }

        .field-input:focus,
        .field-textarea:focus {
            border-color: rgba(229,9,20,0.6);
            box-shadow: 0 0 0 1px rgba(229,9,20,0.5);
        }

        .field-textarea {
            resize: vertical;
            min-height: 70px;
        }

        /* Footer */
        footer {
            padding: 16px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 20px;
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            justify-content: space-between;
            font-size: 11px;
            color: var(--gray);
        }

        .footer-links {
            display: flex;
            gap: 12px;
        }

        .footer-links a {
            color: var(--gray);
        }

        .footer-links a:hover {
            color: var(--light);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-grid,
            .pricing-wrapper,
            .contact-card {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero {
                padding-top: 32px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                inset-inline: 16px;
                top: 60px;
                border-radius: 18px;
                background: rgba(0,0,0,0.98);
                border: 1px solid rgba(255,255,255,0.12);
                padding: 10px 14px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                transform-origin: top;
                transform: scaleY(0.8);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.18s ease, transform 0.18s ease;
            }

            .nav-links.open {
                opacity: 1;
                pointer-events: auto;
                transform: scaleY(1);
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-cta {
                display: none;
            }

            .features-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .steps-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .contact-card {
                padding: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
            }

            .hero-cta-row {
                flex-direction: column;
                align-items: stretch;
            }

            .form-row {
                grid-template-columns: minmax(0, 1fr);
            }
        }