        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0070c0;
            --primary-dark: #005a9c;
            --primary-blue: #0070c0;
            --secondary-blue: #50b9ff;
            --accent: #50b9ff;
            --success-green: #3a6cce;/* #84c101; */
            --dark-gray: #1d395c;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --accent-orange: #fd9047;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px; 
        }
        .header {
            background: var(--dark-gray);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex; align-items: center; gap: 8px;
            color:#fff;
        }
        .logo img {
            height: 40px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--secondary-blue);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(135deg, rgb(13, 25, 37) 0%, rgb(29, 57, 92) 50%, rgb(13, 25, 37) 100%);
            color: var(--white);
            padding: 2.5rem 0;
            padding-bottom: 2rem;
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
        }

        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(80, 185, 255, 0.08);
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 60%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(58, 108, 206, 0.2);
            border: 1px solid var(--success-green);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .badge-icon {
            font-size: 1.2rem;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--secondary-blue), var(--success-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .features-list {
            list-style: none;
            margin-bottom: 0.5rem;
        }

        .features-list li {
            padding: 0.8rem 0;
            padding-left: 0;
            position: relative;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }


        .hero-trust-line {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            opacity: 0.9;
            font-size: 0.95rem;
            margin-bottom:2.2rem;
        }

        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            width: 100%;
            max-width: 450px;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-box.highlight {
            background: rgba(58, 108, 206, 0.2);
            border-color: var(--success-green);
            grid-column: span 2;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(132, 193, 1, 0.3);
        }

        .stat-box.highlight .stat-icon {
            font-size: 2rem;
            width: 60px;
            height: 60px;
        }

        .stat-content {
            flex: 1;
        }

        .stat-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.2rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-subtitle {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: white;
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background1: #6fa001;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(132, 193, 1, 0.3);
        }


        .cta-button.pulse {
            box-shadow1: 0 5px 15px rgba(132, 193, 1, 0.3);
            animation: pulse 2s infinite;
        }

        .cta-button.outline {
            background: transparent;
            border: 2px solid var(--white);
        }

        .cta-button.outline:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        .cta-button.hover {
  background: #005a9c;
}
.cta-button {
  background: var(--primary-blue);
  border: 2px solid var(--white);
  color:white;
}

        .button-arrow {
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }

        .cta-button:hover .button-arrow {
            transform: translateX(5px);
        }

        .cta-button.secondary {
            background1: var(--primary-blue);
            color:white;
        }

.cta-button.secondary.outline {
font-weight:normal;
}
        .cta-button.secondary:hover {
background: unset;
  color: white;
  transform: translateX(5px);
          }

        .quick-check {
            background: var(--dark-gray);
            padding: 2rem 0;
            color: var(--white);
        }

        .check-form {
            display: flex;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .check-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .check-form button {
            padding: 1rem 2rem;
            white-space: nowrap;
        }

        /* Trust Badges */
        .trust-section {
            background: var(--light-gray);
            padding: 3rem 0;
            text-align: center;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .badge {
            text-align: center;
        }

        .badge-stat {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-blue);
        }

        .quality-seals {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .seal-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            min-width: 200px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .seal-link {
            text-decoration: none;
            color: inherit;
        }

        .seal-link .seal-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .seal-placeholder {
            color: var(--text-dark);
        }

        .report-preview {
            padding: 5rem 0;
            background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
        }

        .report-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .screenshot-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .screenshot-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .screenshot-placeholder {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .screenshot-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .screenshot-icon {
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
            aspect-ratio:16 / 9;
            width: 100%;
            height: :100%;
        }
        .screenshot-icon img {
             width: 100%;
            height: :100%;
        }

        .screenshot-label {
            font-weight: 600;
            color: var(--primary-blue);
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
        }

        .screenshot-title {
            padding: 0.6rem;
            text-align: center;
            font-weight: 600;
            color: var(--text-dark);
            background: var(--white);
            font-size: 0.85rem;
        }

        .report-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 2px solid var(--secondary-blue);
        }

        .info-card h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .info-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .info-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .info-features li {
            padding: 0.6rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-dark);
        }

        .check-icon {
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .info-note {
            margin-top: 1.5rem;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 8px;
            text-align: center;
        }

        .info-note small {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .benefits {
            padding: 4rem 0;
        }

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-title .subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 48px;
        }

        .customers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 48px;
        }

        .customer-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .customer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .customer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--secondary-blue);
        }

        .customer-card:hover::before {
            transform: scaleX(1);
        }

        .customer-card.highlighted {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid var(--success-green);
        }

        .customer-highlight-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--success-green);
            color: var(--white);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .customer-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 112, 192, 0.3);
        }

        .customer-card.highlighted .customer-icon {
            background: linear-gradient(135deg, var(--success-green), #6fa001);
            box-shadow: 0 5px 15px rgba(132, 193, 1, 0.3);
        }

        .customer-card h3 {
            margin-bottom: 1rem;
            color: var(--text-dark);
            text-align: center;
            font-size: 1.3rem;
        }

        .customer-card p {
            color: var(--text-light);
            line-height: 1.6;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .customer-badge {
            text-align: center;
            background: var(--light-gray);
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            width: 100%;
        }

        .customer-card.highlighted .customer-badge {
            background: var(--success-green);
            color: var(--white);
        }

        .benefit-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .pricing {
            background: var(--light-gray);
            padding: 4rem 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            margin-top:48px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            display: flex;
    flex-direction: column;
        }
 
 .pricing-card .price {
    min-height: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
}
.pricing-card {
    display: flex;
    flex-direction: column;
}
        .pricing-card:hover {
            transform: scale(1.05);
        }

        .pricing-card.featured {
            border: 3px solid var(--success-green);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success-green);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin: 1rem 0;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }

        .testimonial {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .developer-statement {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-top:48px;
        }

        .dev-image {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light-gray);
        }

        .dev-avatar {
            font-size: 5rem;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .dev-info {
            flex: 1;
        }

        .dev-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .dev-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .dev-credentials {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .dev-quote {
            position: relative;
            padding-left: 3rem;
        }

        .dev-quote .quote-icon {
            font-size: 4rem;
            color: var(--secondary-blue);
            opacity: 0.2;
            position: absolute;
            top: -1rem;
            left: 0;
        }

        .dev-statement {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .final-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--secondary-blue);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: #999;
        }

        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .features-list {
                margin-bottom: 1.5rem;
            }
        }
   @media (min-width:900px) and (max-width: 1200px) {
            .features-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
            .features-list li {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
        }
    @media (min-width: 769px)and (max-width: 1200px) {
        .hero-stats-grid {
                grid-template-columns:repeat(3, 1fr);
                max-width:850px;
            }
            .stat-box.highlight {
                grid-column:unset;
            }
    }
    @media (max-width: 540px) {
        .stat-box.d540 {
            display: none;
        }
        .nomobile {
            display: none;
        }
    }
        @media (max-width: 768px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }
            .features-list {
                margin-bottom: 0;
            }
        .header {
            padding: 0.75rem 0;
        }
            .hero {
                padding-top: 2.5rem;
            }
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-visual {
                order: -1;
            }

            .hero-stats-grid {
                max-width: 100%;
                gap: 1rem;
            }

            .stat-box {
                padding: 1rem;
            }

            .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .stat-box.highlight .stat-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .stat-title {
                font-size: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-subtitle {
                font-size: 0.75rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .check-form {
                flex-direction: column;
            }

            .report-content {
                grid-template-columns: 1fr;
            }

            .screenshot-grid {
                grid-template-columns: 1fr;
            }

            .report-info {
                position: static;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .dev-image {
                flex-direction: column;
                text-align: center;
            }

            .dev-quote {
                padding-left: 0;
                padding-top: 2rem;
            }

            .dev-quote .quote-icon {
                left: 50%;
                transform: translateX(-50%);
            }

            .customers-grid {
                grid-template-columns: 1fr;
            }

            .customer-highlight-badge {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}
.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255,255,255,0.2);
    max-height: calc(90vh - 100px);
}
.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}
.div468 {
    display: none;
}
.divno468 {
    display: block;
}
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .screenshot-image {
        aspect-ratio: 16 / 9;
    }
    .sample-report-section {
        padding: 2rem 1.5rem;
    }
    .lightbox {
        padding: 1rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
.div468 {
    display: inline-block;
}
    .divno468 {
        display: none;

    }
}
@media (max-width: 468px) {
    .hero-stats-grid {
        gap: 0.5rem;
    }
    .container {
        padding: 0 8px;
    }
    .stat-icon.opt {
        display:none;
    }
    .stat-box {
        padding:1.1rem;
    }
}
@media ((min-width: 769px) and (max-width: 1268px)) {
    .stat-title {
        font-size:1.0rem;
    }
    .stat-box {
        padding:1.0rem;
    }
    .hero {
        padding:3rem 0;
    }
    .stat-icon.opt {
        display:none;
    }
}
.faq-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    background: var(--light-gray);
    border-radius: 30px;
    padding: 4rem 2rem;
}

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
        margin: 3rem auto;
    }

    .faq-container h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1.3rem;
    }
}
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    background: #fff;
  padding: 4px;
  border-radius: 12px;
}
.language-selector.show {
    animation: popIn 0.9s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.75);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    cursor: default;
}
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                transition: left 0.3s;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .consultation-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .consultant-image {
                margin: 0 auto;
            }

            .filter-buttons {
                flex-direction: column;
            }

            .filter-btn {
                width: 100%;
            }
            .language-selector {
                margin-left: 0;
                margin-top: 1rem;
            }
        }
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.modal-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 90vw;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #81c784;
}

.form-status.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.form-submit-btn {
    width: 100%;
    max-width: 90vw;
    padding: 1.25rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 112, 192, 0.3);
}

.form-submit-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.0rem;
        width: 97%;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }
}
.website_url {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.min-chars {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: normal;
}
a {
    cursor: pointer;
}
.white {
color:#fff;
}





/* ═══════════════════════════════════════════════════════
   PRODUCT SWITCHER BAR
   ═══════════════════════════════════════════════════════ */
.product-switcher-bar {
    background: linear-gradient(90deg, #0d1925 0%, #1d395c 50%, #0d1925 100%);
    border-bottom: 2px solid var(--secondary-blue);
    padding: 0.75rem 0;
}
.product-switcher-bar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.ps-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
}
.ps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.25s;
}
.ps-btn:hover,
.ps-btn.active {
    background: var(--primary-blue);
    border-color: var(--secondary-blue);
    color: #fff;
}
.ps-sep {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    font-weight: bold;
}

/* ═══════════════════════════════════════════════════════
   SECURITY SECTION – Hero Band
   ═══════════════════════════════════════════════════════ */
.security-section {
    background: linear-gradient(to bottom, #f5f7fa 0%, #e9eef5 100%);
}

.security-hero-band {
    background: linear-gradient(135deg, #0d1925 0%, #1a2f4a 50%, #0d1925 100%);
    padding: 4rem 0 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.security-hero-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(80,185,255,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 10% 80%, rgba(58,108,206,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.security-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(80,185,255,0.15);
    border: 1px solid var(--secondary-blue);
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--secondary-blue);
}

.security-hero-band h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.security-hero-band .subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.security-usp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin-bottom: 0.5rem;
}
.security-usp-item {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
}

/* Scope pills grid */
.security-scope-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}
.scope-pill {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.scope-pill.scope-red    { background: rgba(220,53,69,0.18);  border: 1px solid rgba(220,53,69,0.5);  color: #ff8a9a; }
.scope-pill.scope-blue   { background: rgba(80,185,255,0.15); border: 1px solid rgba(80,185,255,0.5); color: #8dd5ff; }
.scope-pill.scope-green  { background: rgba(58,180,120,0.18); border: 1px solid rgba(58,180,120,0.5); color: #7ae0b8; }
.scope-pill.scope-orange { background: rgba(253,144,71,0.18); border: 1px solid rgba(253,144,71,0.5); color: #ffc099; }
.scope-pill.scope-purple { background: rgba(147,90,220,0.18); border: 1px solid rgba(147,90,220,0.5); color: #c9a5f5; }

/* ═══════════════════════════════════════════════════════
   SECURITY CHECKS GRID
   ═══════════════════════════════════════════════════════ */
.security-checks-grid-wrap {
    padding-bottom: 1rem;
}
.security-checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.sec-check-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 1px solid #e5eaf2;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.sec-check-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.sec-check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.sec-check-card:hover::after {
    transform: scaleX(1);
}
.sec-check-card--highlight {
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
    border-color: var(--secondary-blue);
    grid-column: span 2;
}

.sec-check-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.sec-check-icon.sec-red    { background: rgba(220,53,69,0.1);  }
.sec-check-icon.sec-blue   { background: rgba(0,112,192,0.1);  }
.sec-check-icon.sec-green  { background: rgba(40,167,69,0.1);  }
.sec-check-icon.sec-orange { background: rgba(253,144,71,0.12);}
.sec-check-icon.sec-purple { background: rgba(147,90,220,0.1); }

.sec-check-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}
.sec-check-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SECURITY DIFFERENTIATOR / COMPARISON
   ═══════════════════════════════════════════════════════ */
.security-differentiator {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    overflow: hidden;
    border: 2px solid var(--secondary-blue);
}
.sec-diff-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.sec-diff-text {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
}
.sec-diff-text h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.sec-diff-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.sec-diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sec-diff-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.sec-diff-list li em {
    font-style: normal;
    color: var(--primary-blue);
    font-weight: 600;
}

.sec-diff-table-wrap {
    padding: 2.5rem;
    overflow-x: auto;
    display: flex;
    align-items: center;
}
.sec-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.sec-compare-table th {
    background: var(--primary-blue);
    color: #fff;
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 600;
}
.sec-compare-table th:last-child { background: var(--success-green); }
.sec-compare-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}
.sec-compare-table tr:nth-child(even) td { background: #f9fafc; }
.sec-compare-table tr.highlight-row td { background: #edfaf2; font-weight: 600; }
.sec-compare-table td:nth-child(2) { text-align: center; color: var(--text-light); }
.sec-compare-table td:nth-child(3) { text-align: center; color: var(--success-green); font-weight: bold; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .security-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .security-scope-grid { justify-content: flex-start; }
    .security-hero-band h2 { font-size: 1.8rem; }
    .sec-diff-inner { grid-template-columns: 1fr; }
    .sec-diff-text { border-radius: 0; }
    .sec-check-card--highlight { grid-column: span 1; }
}
@media (max-width: 600px) {
    .security-checks-grid { grid-template-columns: 1fr; }
    .product-switcher-bar .container { gap: 0.5rem; }
    .ps-btn { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
}
