* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #000000;
            color: #E0E0E0;
            overflow-x: hidden;
        }

        /* Hero Section */
        .seo-hero {
            position: relative;
            padding: 4rem 2rem 1rem;
            overflow: hidden;
        }

        .seo-hero-gradient {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .seo-hero-gradient::before,
        .seo-hero-gradient::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.3;
        }

        .seo-hero-gradient::before {
            background: radial-gradient(circle, #1E73BE, transparent);
            top: -200px;
            left: -200px;
        }

        .seo-hero-gradient::after {
            background: radial-gradient(circle, #00C2A0, transparent);
            bottom: -200px;
            right: -200px;
        }

        .seo-hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .seo-hero-label {
            display: inline-block;
            background: rgba(30, 115, 190, 0.1);
            border: 1px solid rgba(30, 115, 190, 0.3);
            color: #1E73BE;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .seo-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .seo-hero-gradient-text {
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .seo-hero-description {
            font-size: 1.2rem;
            color: #B0B0B0;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Trust Section */
        .trust-section {
            padding: 4rem 2rem;
            background: rgba(15, 15, 15, 0.3);
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .trust-stat {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .trust-stat:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
        }

        .trust-stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .trust-stat-label {
            color: #B0B0B0;
            font-size: 1.1rem;
        }

        /* SEO Check Form - FULL WIDTH */
        .seo-check-section {
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.5));
        }

        .seo-check-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .seo-check-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
            border: 1px solid rgba(30, 115, 190, 0.3);
            border-radius: 24px;
            padding: 3rem 4rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .seo-check-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-label {
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .form-label i {
            color: #1E73BE;
            font-size: 1.3rem;
        }

        .form-input-wrapper {
            position: relative;
            display: flex;
            gap: 1.5rem;
            align-items: stretch;
        }

        .form-input {
            flex: 1;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(30, 115, 190, 0.3);
            border-radius: 16px;
            color: #FFFFFF;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #1E73BE;
            background: rgba(30, 115, 190, 0.1);
            box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.1);
        }

        .form-input::placeholder {
            color: #666;
        }

        .seo-check-btn {
            padding: 1.5rem 3rem;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border: none;
            border-radius: 16px;
            color: #FFFFFF;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(30, 115, 190, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            white-space: nowrap;
            min-width: 280px;
        }

        .seo-check-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 115, 190, 0.6);
        }

        .seo-check-btn:active {
            transform: translateY(-1px);
        }

        .seo-check-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-hint {
            color: #B0B0B0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-left: 0.5rem;
        }

        .form-hint i {
            color: #1E73BE;
        }

        /* Loading State */
        .loading-container {
            display: none;
            text-align: center;
            padding: 4rem 2rem;
        }

        .loading-container.active {
            display: block;
        }

        .loading-spinner {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(30, 115, 190, 0.2);
            border-top: 5px solid #1E73BE;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 2rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            color: #FFFFFF;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .loading-steps {
            margin-top: 2rem;
            color: #B0B0B0;
            font-size: 1rem;
        }

        /* Results Section - FULL WIDTH */
        .results-container {
            display: none;
            margin-top: 4rem;
        }

        .results-container.active {
            display: block;
        }

        .results-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(0, 194, 160, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(30, 115, 190, 0.2);
        }

        .results-score {
            width: 180px;
            height: 180px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .score-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #10B981 0deg,
                #10B981 calc(var(--score) * 3.6deg),
                rgba(30, 115, 190, 0.1) calc(var(--score) * 3.6deg),
                rgba(30, 115, 190, 0.1) 360deg
            );
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .score-inner {
            width: 145px;
            height: 145px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .score-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: #FFFFFF;
        }

        .score-label {
            font-size: 1rem;
            color: #B0B0B0;
            margin-top: 0.25rem;
        }

        .results-url {
            color: #1E73BE;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .results-title {
            color: #FFFFFF;
            font-size: 2rem;
            font-weight: 700;
        }

        /* Results Grid - WIDER */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .result-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .result-card:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(30, 115, 190, 0.2);
        }

        .result-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(30, 115, 190, 0.2);
        }

        .result-card-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .result-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.3rem;
        }

        .result-card-score {
            font-size: 2rem;
            font-weight: 800;
        }

        .result-card-score.good { color: #10B981; }
        .result-card-score.warning { color: #ffc107; }
        .result-card-score.error { color: #ff6b6b; }

        .result-items {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .result-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(30, 115, 190, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(30, 115, 190, 0.1);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            background: rgba(30, 115, 190, 0.1);
            border-color: rgba(30, 115, 190, 0.2);
        }

        .result-item-icon {
            margin-top: 0.25rem;
            font-size: 1.2rem;
        }

        .result-item-icon.success { color: #10B981; }
        .result-item-icon.warning { color: #ffc107; }
        .result-item-icon.error { color: #ff6b6b; }

        .result-item-content {
            flex: 1;
        }

        .result-item-title {
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .result-item-text {
            color: #B0B0B0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features Section */
        .seo-features-section {
            padding: 6rem 2rem;
            background: rgba(15, 15, 15, 0.5);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(30, 115, 190, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            color: #FFFFFF;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: #B0B0B0;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* CTA Section */
        .seo-cta-section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .seo-cta-gradient {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .seo-cta-gradient::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(30, 115, 190, 0.3), transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            filter: blur(150px);
        }

        .seo-cta-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        .seo-cta-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
            border: 1px solid rgba(30, 115, 190, 0.3);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            backdrop-filter: blur(20px);
        }

        .seo-cta-card h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .seo-cta-card p {
            color: #B0B0B0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .seo-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .seo-cta-btn {
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border: none;
            border-radius: 12px;
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
        }

        .seo-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(30, 115, 190, 0.6);
        }

        .seo-cta-btn-secondary {
            background: rgba(30, 115, 190, 0.1);
            border: 1px solid rgba(30, 115, 190, 0.3);
            color: #1E73BE;
        }

        .seo-cta-btn-secondary:hover {
            background: rgba(30, 115, 190, 0.2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .results-grid {
                grid-template-columns: repeat(auto-fit, minmin(400px, 1fr));
            }
        }

        @media (max-width: 968px) {
            .seo-hero-title {
                font-size: 2.5rem;
            }

            .seo-check-card {
                padding: 2.5rem 2rem;
            }

            .form-input-wrapper {
                flex-direction: column;
            }

            .seo-check-btn {
                min-width: 100%;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .seo-hero {
                padding: 4rem 1.5rem 3rem;
            }

            .seo-hero-title {
                font-size: 2rem;
            }

            .seo-check-card {
                padding: 2rem 1.5rem;
            }

            .results-score {
                width: 140px;
                height: 140px;
            }

            .score-inner {
                width: 110px;
                height: 110px;
            }

            .score-value {
                font-size: 2.5rem;
            }

            .result-card {
                padding: 2rem;
            }

            .seo-cta-card {
                padding: 2.5rem 1.5rem;
            }

            .seo-cta-card h2 {
                font-size: 1.8rem;
            }

            .seo-cta-buttons {
                flex-direction: column;
            }

            .seo-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Trust Section */
        .trust-section {
            padding: 4rem 2rem;
            background: rgba(15, 15, 15, 0.3);
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .trust-stat {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .trust-stat:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
        }

        .trust-stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .trust-stat-label {
            color: #B0B0B0;
            font-size: 1.1rem;
        }

        /* Loading State */
        .loading-container {
            display: none;
            text-align: center;
            padding: 4rem 2rem;
        }

        .loading-container.active {
            display: block;
        }

        .loading-spinner {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(30, 115, 190, 0.2);
            border-top: 5px solid #1E73BE;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 2rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            color: #FFFFFF;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .loading-steps {
            margin-top: 2rem;
            color: #B0B0B0;
            font-size: 1rem;
        }

        /* Results Section - FULL WIDTH */
        .results-container {
            display: none;
            margin-top: 4rem;
        }

        .results-container.active {
            display: block;
        }

        .results-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(0, 194, 160, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(30, 115, 190, 0.2);
        }

        .results-score {
            width: 180px;
            height: 180px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .score-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #10B981 0deg,
                #10B981 calc(var(--score) * 3.6deg),
                rgba(30, 115, 190, 0.1) calc(var(--score) * 3.6deg),
                rgba(30, 115, 190, 0.1) 360deg
            );
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .score-inner {
            width: 145px;
            height: 145px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .score-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: #FFFFFF;
        }

        .score-label {
            font-size: 1rem;
            color: #B0B0B0;
            margin-top: 0.25rem;
        }

        .results-url {
            color: #1E73BE;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .results-title {
            color: #FFFFFF;
            font-size: 2rem;
            font-weight: 700;
        }

        /* Results Grid - WIDER */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .result-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .result-card:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(30, 115, 190, 0.2);
        }

        .result-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(30, 115, 190, 0.2);
        }

        .result-card-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .result-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.3rem;
        }

        .result-card-score {
            font-size: 2rem;
            font-weight: 800;
        }

        .result-card-score.good { color: #10B981; }
        .result-card-score.warning { color: #ffc107; }
        .result-card-score.error { color: #ff6b6b; }

        .result-items {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .result-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(30, 115, 190, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(30, 115, 190, 0.1);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            background: rgba(30, 115, 190, 0.1);
            border-color: rgba(30, 115, 190, 0.2);
        }

        .result-item-icon {
            margin-top: 0.25rem;
            font-size: 1.2rem;
        }

        .result-item-icon.success { color: #10B981; }
        .result-item-icon.warning { color: #ffc107; }
        .result-item-icon.error { color: #ff6b6b; }

        .result-item-content {
            flex: 1;
        }

        .result-item-title {
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .result-item-text {
            color: #B0B0B0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, rgba(15, 15, 15, 0.5), transparent);
        }

        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .benefits-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .benefits-header p {
            color: #B0B0B0;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
        }

        .benefit-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .benefit-title {
            color: #FFFFFF;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: #B0B0B0;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* SEO Importance Section */
        .seo-importance-section {
            padding: 6rem 2rem;
            background: rgba(15, 15, 15, 0.5);
        }

        .seo-importance-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .seo-importance-content {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 24px;
            padding: 4rem;
        }

        .seo-importance-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 2rem;
        }

        .seo-importance-content p {
            color: #B0B0B0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .seo-importance-list {
            list-style: none;
            margin-top: 2rem;
        }

        .seo-importance-list li {
            color: #B0B0B0;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .seo-importance-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00C2A0;
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.5));
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .faq-header p {
            color: #B0B0B0;
            font-size: 1.1rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(30, 115, 190, 0.5);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(30, 115, 190, 0.1);
        }

        .faq-question i {
            color: #1E73BE;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: #B0B0B0;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* How it Works Section */
        .how-it-works-section {
            padding: 6rem 2rem;
            background: rgba(15, 15, 15, 0.3);
        }

        .how-it-works-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .how-it-works-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .how-it-works-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .how-it-works-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .step-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
            border: 1px solid rgba(30, 115, 190, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            border-color: rgba(30, 115, 190, 0.5);
            transform: translateY(-5px);
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1E73BE, #00C2A0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0 auto 1.5rem;
        }

        .step-title {
            color: #FFFFFF;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .step-description {
            color: #B0B0B0;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .results-grid {
                grid-template-columns: repeat(auto-fit, minmin(400px, 1fr));
            }
        }

        @media (max-width: 968px) {
            .seo-hero-title {
                font-size: 2.5rem;
            }

            .seo-check-card {
                padding: 2.5rem 2rem;
            }

            .form-input-wrapper {
                flex-direction: column;
            }

            .seo-check-btn {
                min-width: 100%;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .seo-hero {
                padding: 4rem 1.5rem 3rem;
            }

            .seo-hero-title {
                font-size: 2rem;
            }

            .seo-check-card {
                padding: 2rem 1.5rem;
            }

            .results-score {
                width: 140px;
                height: 140px;
            }

            .score-inner {
                width: 110px;
                height: 110px;
            }

            .score-value {
                font-size: 2.5rem;
            }

            .result-card {
                padding: 2rem;
            }

            .seo-cta-card {
                padding: 2.5rem 1.5rem;
            }

            .seo-cta-card h2 {
                font-size: 1.8rem;
            }

            .seo-cta-buttons {
                flex-direction: column;
            }

            .seo-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }