.elementor-129 .elementor-element.elementor-element-08b8a4a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8f8c038 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .header p {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .content {
            padding: 40px;
        }

        .section-title {
            font-size: 2em;
            color: #1e3c72;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #667eea;
            text-align: center;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .comparison-table thead tr {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
        }

        .comparison-table th {
            padding: 20px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }

        .comparison-table th:first-child {
            width: 20%;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s;
        }

        .comparison-table tbody tr:hover {
            background: #f8f9fa;
            transform: scale(1.01);
        }

        .comparison-table td {
            padding: 20px 15px;
            vertical-align: top;
        }

        .comparison-table td:first-child {
            background: #f8f9fa;
            font-weight: 600;
            color: #1e3c72;
        }

        .score-excellent {
            color: #4caf50;
            font-weight: 700;
            font-size: 1.1em;
        }

        .score-good {
            color: #8bc34a;
            font-weight: 600;
        }

        .score-fair {
            color: #ff9800;
            font-weight: 600;
        }

        .score-poor {
            color: #f44336;
            font-weight: 600;
        }

        .winner-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #1e3c72;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9em;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
            margin-top: 10px;
        }

        .summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .summary-card {
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

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

        .card-email {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-left: 6px solid #4caf50;
        }

        .card-pdf {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 6px solid #ff9800;
        }

        .card-physical {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            border-left: 6px solid #f44336;
        }

        .card-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .card-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1e3c72;
        }

        .roi-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }

        .roi-title {
            font-size: 2em;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .roi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .roi-box {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .roi-number {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .recommendation {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 6px solid #2196f3;
            margin: 40px 0;
        }

        .recommendation h3 {
            color: #1565c0;
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .recommendation ol {
            margin-left: 30px;
            font-size: 1.05em;
            line-height: 2;
        }

        .score-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        @media (max-width: 768px) {
            .header h1 { font-size: 1.8em; }
            .content { padding: 20px; }
            .comparison-table { font-size: 0.9em; }
            .comparison-table th, .comparison-table td { padding: 12px 8px; }
        }

        @media print {
            body { background: white; padding: 0; }
            .container { box-shadow: none; }
        }
    </style>/* End custom CSS */