* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Widget Hero */
        .widget-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 20px 70px;
            position: relative;
            overflow: hidden;
        }

        .widget-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 24px;
        }

        .highlight {
            color: #28a745;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #28a745, #20c997);
            border-radius: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .hero-features {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
        }

        .feature i {
            color: #28a745;
            font-size: 1.1rem;
        }

        .feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }

        /* Website Mockup */
        .widget-preview {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .website-mockup {
            background: white;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            width: 100%;
            max-width: 400px;
        }

        .browser-bar {
            background: #f1f3f4;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid #e9ecef;
        }

        .browser-buttons {
            display: flex;
            gap: 6px;
        }

        .btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .btn.red { background: #ff5f57; }
        .btn.yellow { background: #ffbd2e; }
        .btn.green { background: #28ca42; }

        .address-bar {
            flex: 1;
            background: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            color: #6c757d;
        }

        .website-content {
            padding: 20px;
            min-height: 200px;
            position: relative;
        }

        .content-placeholder {
            margin-bottom: 20px;
        }

        .text-line {
            height: 8px;
            background: #f1f3f4;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .text-line.long { width: 80%; }
        .text-line.medium { width: 60%; }
        .text-line.short { width: 40%; }

        .widget-position {
            position: absolute;
            bottom: 20px;
            right: 20px;
        }

        .widget-preview-image {
            width: 180px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .widget-preview-image:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        }

        /* AZKG Widget Styles */
        .azkg-widget {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .azkg-widget:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        }

        .azkg-widget.compact {
            padding: 10px 15px;
            width: 200px;
        }

        .azkg-widget.standard {
            width: 250px;
        }

        .azkg-widget.extended {
            width: 300px;
            padding: 20px;
        }

        .widget-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .azkg-widget.compact .widget-header {
            margin-bottom: 0;
        }

        .widget-logo {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .widget-title .brand {
            font-size: 1.2rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .widget-title .subtitle {
            font-size: 0.8rem;
            opacity: 0.9;
            line-height: 1;
        }

        .widget-content {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 10px;
        }

        .certification-text {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .azkg-widget.extended .certification-text {
            font-size: 1rem;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .widget-date {
            font-size: 0.7rem;
            opacity: 0.8;
            margin-top: 8px;
        }

        .preview-caption {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
            font-style: italic;
        }

        /* Widget Variants */
        .widget-variants {
            padding: 70px 20px;
            background: #ffffff;
        }

        .variants-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .variants-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .variant-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid #f1f3f4;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
        }

        .variant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #28a745;
        }

        .variant-card.active {
            border-color: #28a745;
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
        }

        .variant-preview {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .variant-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .variant-card p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .variant-specs {
            display: flex;
            gap: 15px;
            justify-content: center;
            font-size: 0.8rem;
            color: #28a745;
            font-weight: 500;
        }

        /* Integration Guide */
        .integration-guide {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .guide-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .integration-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .step-content p {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .code-preview {
            background: #f8f9fa;
            padding: 10px 15px;
            border-radius: 8px;
            border-left: 4px solid #28a745;
        }

        .code-preview code {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #495057;
        }

        .platform-icons {
            display: flex;
            gap: 15px;
        }

        .platform-icons i {
            font-size: 1.5rem;
            color: #6c757d;
            transition: color 0.3s ease;
        }

        .platform-icons i:hover {
            color: #28a745;
        }

        .trust-indicators {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Widget Access */
        .widget-access {
            padding: 70px 20px;
            background: #ffffff;
        }

        .access-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .access-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffc107, #ff9800);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .access-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .widget-access h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
        }

        .widget-access p {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .access-steps {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .access-step {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 15px 25px;
            border-radius: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f3f4;
        }

        .access-step .step-number {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .access-step span:last-child {
            font-weight: 500;
            color: #495057;
        }

        /* Widget Requirements */
        .widget-requirements {
            padding: 70px 20px;
            background: #ffffff;
        }

        .requirements-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .requirement-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
            text-align: center;
        }

        .requirement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .req-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .req-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .requirement-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }

        .requirement-card p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Widget Security */
        .widget-security {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .security-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .security-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .security-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .security-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
        }

        .security-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .security-icon i {
            font-size: 1.2rem;
            color: white;
        }

        .security-feature h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 5px;
        }

        .security-feature p {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.5;
            margin: 0;
        }

        .security-mockup {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .verification-popup {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 25px;
            border: 1px solid #e9ecef;
            max-width: 300px;
            width: 100%;
        }

        .popup-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f3f4;
        }

        .popup-header i {
            color: #28a745;
            font-size: 1.3rem;
        }

        .popup-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
        }

        .cert-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .cert-info .label {
            color: #6c757d;
            font-weight: 500;
        }

        .cert-info .value {
            color: #212529;
            font-weight: 600;
        }

        .cert-info .value.verified {
            color: #28a745;
        }

        /* FAQ Section */
        .widget-faq {
            padding: 70px 20px;
            background: #ffffff;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f3f4;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
            line-height: 1.4;
            flex: 1;
            padding-right: 20px;
        }

        .faq-question i {
            color: #28a745;
            font-size: 1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            margin: 0;
            color: #6c757d;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Widget CTA */
        .widget-cta {
            padding: 70px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #28a745;
            padding: 18px 40px;
            border: 2px solid #28a745;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
        }

        .cta-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .cta-note i {
            color: #28a745;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content,
            .security-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title,
            .cta-title {
                font-size: 2rem;
            }

            .widget-access h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .widget-hero {
                padding: 100px 20px 50px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .variants-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .benefits-grid,
            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .access-steps {
                flex-direction: column;
                gap: 15px;
            }

            .security-features {
                gap: 20px;
            }

            .security-feature {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .benefit-card,
            .step,
            .variant-card,
            .requirement-card {
                padding: 20px;
            }

            .website-mockup {
                max-width: 320px;
            }

            .azkg-widget.standard {
                width: 220px;
            }

            .azkg-widget.extended {
                width: 260px;
            }

            .widget-access h2 {
                font-size: 1.6rem;
            }

            .verification-popup {
                padding: 20px;
            }
        }