<style>
        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-navy: #001e52;
            --primary-dark: #001338;
            --secondary-navy: #002a6b;
            --accent-orange: #fb572d;
            --accent-hover: #e64a23;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --text-light: #999999;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e0e0e0;
            --success: #22c55e;
            --warning: #f59e0b;
            --info: #3b82f6;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }
        
        /* Header */
        .header {
            background: var(--primary-navy);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .brand-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .brand-logo i {
            color: var(--accent-orange);
            font-size: 32px;
        }
        
        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-orange);
        }
        
        .contact-btn {
            background: var(--accent-orange);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
        }
        
        .contact-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 87, 45, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
            color: var(--white);
            padding: 100px 40px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            opacity: 0.95;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        
        .badge-icon {
            font-size: 28px;
            color: var(--accent-orange);
        }
        
        .badge-text {
            text-align: left;
        }
        
        .badge-label {
            font-size: 12px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .badge-value {
            font-size: 18px;
            font-weight: 700;
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .section {
            padding: 90px 0;
        }
        
        .section-light {
            background: var(--bg-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--primary-navy);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 35px;
            border: 2px solid var(--border-color);
            transition: all 0.4s;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--accent-orange);
        }
        
        .pricing-card.featured {
            border-color: var(--accent-orange);
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.15);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(135deg, var(--accent-orange), #ff7849);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(251, 87, 45, 0.3);
        }
        
        .ssl-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 32px;
            color: var(--white);
        }
        
        .ssl-card.featured .ssl-icon {
            background: linear-gradient(135deg, var(--accent-orange), #ff7849);
        }
        
        .ssl-name {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 10px;
        }
        
        .ssl-description {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .ssl-price {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .price-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-navy);
            line-height: 1;
        }
        
        .price-period {
            font-size: 16px;
            color: var(--text-gray);
            font-weight: 600;
        }
        
        .ssl-features {
            list-style: none;
            margin-bottom: 35px;
            flex-grow: 1;
        }
        
        .ssl-features li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text-dark);
        }
        
        .ssl-features i {
            color: var(--success);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .assurance-badge {
            display: inline-block;
            background: var(--bg-light);
            color: var(--text-dark);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }
        
        .assurance-low {
            background: #e0f2fe;
            color: #0369a1;
        }
        
        .assurance-high {
            background: #dcfce7;
            color: #15803d;
        }
        
        .assurance-very-high {
            background: #fef3c7;
            color: #b45309;
        }
        
        .order-btn {
            background: var(--primary-navy);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 12px;
            border: none;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .order-btn:hover {
            background: var(--secondary-navy);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 30, 82, 0.3);
        }
        
        .pricing-card.featured .order-btn {
            background: linear-gradient(135deg, var(--accent-orange), #ff7849);
        }
        
        .pricing-card.featured .order-btn:hover {
            background: linear-gradient(135deg, var(--accent-hover), #ff6839);
        }
        
        /* Comparison Table */
        .comparison-section {
            margin-top: 80px;
        }
        
        .comparison-table {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .table-header {
            background: var(--primary-navy);
            color: var(--white);
            padding: 25px 30px;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
        }
        
        .table-content {
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        thead th {
            background: var(--bg-light);
            padding: 20px 15px;
            text-align: left;
            font-weight: 700;
            color: var(--primary-navy);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--border-color);
        }
        
        tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: background 0.3s;
        }
        
        tbody tr:hover {
            background: var(--bg-light);
        }
        
        tbody td {
            padding: 20px 15px;
            font-size: 15px;
            color: var(--text-dark);
        }
        
        tbody td:first-child {
            font-weight: 600;
            color: var(--primary-navy);
        }
        
        .check-icon {
            color: var(--success);
            font-size: 20px;
        }
        
        .cross-icon {
            color: var(--text-light);
            font-size: 20px;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-orange), #ff7849);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--white);
        }
        
        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 15px;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 16px;
            margin-bottom: 20px;
            border: 2px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: var(--accent-orange);
        }
        
        .faq-question {
            padding: 25px 30px;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            user-select: none;
        }
        
        .faq-question:hover {
            color: var(--accent-orange);
        }
        
        .faq-icon {
            font-size: 24px;
            color: var(--accent-orange);
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 15px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
            color: var(--white);
            padding: 80px 60px;
            border-radius: 24px;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--accent-orange);
            color: var(--white);
            padding: 18px 45px;
            border-radius: 12px;
            border: none;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 45px;
            border-radius: 12px;
            border: 2px solid var(--white);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-navy);
            transform: translateY(-3px);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 60px 40px 30px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-section h4 i {
            color: var(--accent-orange);
        }
        
        .footer-section p {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 38px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .header-container {
                padding: 0 20px;
            }
            
            .hero {
                padding: 60px 20px 50px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .cta-section {
                padding: 50px 30px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
            
            table {
                font-size: 13px;
            }
            
            thead th, tbody td {
                padding: 12px 8px;
            }
        }
  