  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #dc2626;
            --primary-red-dark: #b91c1c;
            --primary-red-light: #fef2f2;
            --text-black: #111827;
            --text-gray: #6b7280;
            --text-light-gray: #9ca3af;
            --bg-gray: #f9fafb;
            --white: #ffffff;
            --black: #000000;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-black);
            scroll-behavior: smooth;
        }

        /* Utility Classes */
        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .icon-sm {
            width: 16px;
            height: 16px;
        }

        .icon-lg {
            width: 32px;
            height: 32px;
        }

        /* Navigation Styles */
        .nav {
            background: var(--white);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav__container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .nav__logo {
            display: flex;
            align-items: center;
        }

        .nav__logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-red);
        }

        .nav__logo-x {
            color: var(--text-black);
        }

        .nav__logo-subtitle {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-gray);
            display: none;
        }

        .nav__desktop {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav__link {
            text-decoration: none;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .nav__link:hover {
            color: var(--primary-red);
        }

        .nav__cta {
            background: var(--primary-red);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .nav__cta:hover {
            background: var(--primary-red-dark);
        }

        .nav__mobile-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .nav__mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid #e5e7eb;
            padding: 1rem;
        }

        .nav__mobile.active {
            display: block;
        }

        .nav__mobile-link {
            display: block;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .nav__mobile-link:hover {
            color: var(--primary-red);
        }

        .nav__mobile-cta {
            display: block;
            background: var(--primary-red);
            color: var(--white);
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            text-decoration: none;
            margin-top: 0.5rem;
            text-align: center;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 1) 100%), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f3f4f6;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e5e7eb;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/><circle cx="200" cy="150" r="3" fill="%23dc2626" opacity="0.3"/><circle cx="400" cy="100" r="2" fill="%23dc2626" opacity="0.4"/><circle cx="600" cy="200" r="4" fill="%23dc2626" opacity="0.2"/><circle cx="800" cy="120" r="3" fill="%23dc2626" opacity="0.3"/><circle cx="1000" cy="180" r="2" fill="%23dc2626" opacity="0.4"/><path d="M100,300 Q300,250 500,300 T900,280" stroke="%23dc2626" stroke-width="2" fill="none" opacity="0.2"/><path d="M200,400 Q400,350 600,400 T1000,380" stroke="%23dc2626" stroke-width="1" fill="none" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 8rem 1rem 5rem;
            text-align: center;
            position: relative;
        }

        .hero__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero__title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero__title-highlight {
            color: var(--primary-red);
        }

        .hero__subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-width: 200px;
        }

        .btn--primary {
            background: var(--primary-red);
            color: var(--white);
        }

        .btn--primary:hover {
            background: var(--primary-red-dark);
            transform: translateY(-2px);
        }

        .btn--secondary {
            background: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }

        .btn--secondary:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Products Section */
        .products {
            padding: 5rem 1rem;
            background: var(--white);
        }

        .products__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .products__header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .products__title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .products__subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 32rem;
            margin: 0 auto;
        }

        .products__grid {
            display: grid;
            gap: 3rem;
        }

        .product-card {
            background: var(--bg-gray);
            border-radius: 1rem;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--primary-red-light), transparent);
            border-radius: 0 1rem 0 100%;
            opacity: 0.5;
        }
/*
        .product-card--quepp {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><pattern id="queue" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="%23f9fafb"/><circle cx="20" cy="20" r="3" fill="%23dc2626" opacity="0.1"/></pattern></defs><rect width="400" height="200" fill="url(%23queue)"/><rect x="50" y="80" width="300" height="40" rx="20" fill="%23dc2626" opacity="0.1"/><text x="200" y="105" text-anchor="middle" fill="%23dc2626" font-size="12" opacity="0.3">QUEUE MANAGEMENT</text></svg>');
            background-size: cover;
            background-position: bottom;
        }

        .product-card--aselar {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><pattern id="business" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><rect width="30" height="30" fill="%23f9fafb"/><rect x="10" y="10" width="10" height="10" fill="%23dc2626" opacity="0.05"/></pattern></defs><rect width="400" height="200" fill="url(%23business)"/><rect x="50" y="60" width="80" height="60" rx="5" fill="%23dc2626" opacity="0.1"/><rect x="150" y="80" width="100" height="40" rx="5" fill="%23dc2626" opacity="0.08"/><rect x="270" y="70" width="80" height="50" rx="5" fill="%23dc2626" opacity="0.06"/></svg>');
            background-size: cover;
            background-position: bottom;
        }
*/
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .product-card__header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .product-card__icon {
            background: var(--primary-red);
            color: var(--white);
            padding: 0.75rem;
            border-radius: 0.5rem;
            margin-right: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card__name {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .product-card__tagline {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .product-card__description {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .product-card__features {
            list-style: none;
        }

        .product-card__feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .product-card__feature-icon {
            color: #10b981;
            margin-right: 0.75rem;
        }

        /* About Section */
        .about {
            padding: 5rem 1rem;
            background: var(--bg-gray);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="tech" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23dc2626;stop-opacity:0.03" /><stop offset="100%" style="stop-color:%23dc2626;stop-opacity:0" /></radialGradient></defs><rect width="1200" height="800" fill="url(%23tech)"/><g opacity="0.1"><circle cx="100" cy="100" r="2" fill="%23dc2626"/><circle cx="300" cy="150" r="1.5" fill="%23dc2626"/><circle cx="500" cy="200" r="2.5" fill="%23dc2626"/><circle cx="700" cy="120" r="1.8" fill="%23dc2626"/><circle cx="900" cy="180" r="2.2" fill="%23dc2626"/><circle cx="1100" cy="140" r="1.6" fill="%23dc2626"/><line x1="100" y1="100" x2="300" y2="150" stroke="%23dc2626" stroke-width="0.5"/><line x1="300" y1="150" x2="500" y2="200" stroke="%23dc2626" stroke-width="0.5"/><line x1="500" y1="200" x2="700" y2="120" stroke="%23dc2626" stroke-width="0.5"/><line x1="700" y1="120" x2="900" y2="180" stroke="%23dc2626" stroke-width="0.5"/><line x1="900" y1="180" x2="1100" y2="140" stroke="%23dc2626" stroke-width="0.5"/></g></svg>');
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .about__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .about__grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        .about__content {
            order: 2;
        }

        .about__title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .about__text {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .about__values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .value-card {
            text-align: center;
        }

        .value-card__icon {
            background: var(--primary-red);
            color: var(--white);
            padding: 1rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .value-card__title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .value-card__description {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        .vision-card {
            background: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            order: 1;
        }

        .vision-card__title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .vision-card__quote {
            font-size: 1.125rem;
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .vision-card__points {
            list-style: none;
        }

        .vision-card__point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .vision-card__point-icon {
            background: #fef2f2;
            color: var(--primary-red);
            padding: 0.5rem;
            border-radius: 0.5rem;
            margin-right: 1rem;
            margin-top: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vision-card__point-content {
            flex: 1;
        }

        .vision-card__point-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .vision-card__point-text {
            color: var(--text-gray);
        }

        /* Contact Section */
        .contact {
            padding: 5rem 1rem;
            background: var(--primary-red);
            color: var(--white);
        }

        .contact__container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .contact__title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .contact__subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
        }

        .contact__grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-card__icon {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .contact-card__title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-card__text {
            color: rgba(255, 255, 255, 0.9);
        }

        .contact__cta {
            background: var(--white);
            color: var(--primary-red);
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .contact__cta:hover {
            background: var(--bg-gray);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 3rem 1rem;
            text-align: center;
        }

        .footer__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer__logo {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer__logo-x {
            color: var(--primary-red);
        }

        .footer__tagline {
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .footer__copyright {
            border-top: 1px solid #374151;
            padding-top: 1.5rem;
            color: #9ca3af;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .hero__buttons {
                flex-direction: row;
                justify-content: center;
            }

            .nav__logo-subtitle {
                display: block;
            }

            .hero__title {
                font-size: 3.75rem;
            }

            .hero__subtitle {
                font-size: 1.5rem;
            }

            .contact__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .nav__desktop {
                display: flex;
            }

            .nav__mobile-toggle {
                display: none;
            }

            .products__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about__content {
                order: 1;
            }

            .vision-card {
                order: 2;
            }
        }

        @media (min-width: 1024px) {
            .hero {
                padding: 10rem 1rem 6rem;
            }
        }
         .partner-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .partner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #007bff);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 20px;
            font-family: 'Arial', sans-serif;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 60px;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .partner-card {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #007bff);
        }

        .logo-container {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .partner-logo {
            max-width: 300px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .partner-logo:hover {
            transform: scale(1.05);
        }

        .partner-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #495057;
            margin-bottom: 30px;
            font-family: 'Arial', sans-serif;
        }

        .partner-description strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .partnership-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .highlight-item {
            text-align: center;
            padding: 20px;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc3545, #007bff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .highlight-title {
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .highlight-text {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }

        .cta-section {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid #e9ecef;
        }

        .cta-text {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 20px;
        }

        .learn-more-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .learn-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
            background: linear-gradient(135deg, #0056b3, #004085);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .partner-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .partner-card {
                padding: 40px 25px;
                border-radius: 15px;
            }

            .partner-logo {
                max-width: 250px;
            }

            .partner-description {
                font-size: 1rem;
            }

            .partnership-highlights {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .partner-card {
                padding: 30px 20px;
            }

            .partner-logo {
                max-width: 200px;
            }

            .highlight-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }