
        /* ===== COLOR VARIABLES ===== */
        .main-content-area {
            --primary-color: #f5576c;
            --secondary-color: #f093fb;
            --accent-color: #764ba2;
            --text-primary: #003366;
            --text-secondary: #555;
            --text-light: #777;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --border-color: #e9ecef;
        }

        /* ===== HERO SECTION — VARIANT C (CREDIBILITY-LED) ===== */
        .hero-section {
            background: linear-gradient(135deg, #003366 0%, #1a1a6e 50%, #f5576c 100%);
            color: white;
            padding: 110px 0 90px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(245,87,108,0.25) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -60px;
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 50px;
            padding: 7px 18px;
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.03em;
        }

        .hero-trust-badge .dot {
            width: 8px; height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero-section h1 {
            font-size: 3.4rem;
            font-weight: 800;
            margin-bottom: 22px;
            line-height: 1.18;
            letter-spacing: -0.02em;
        }

        .hero-section h1 .highlight {
            color: #fbbf24;
        }

        .hero-section .lead {
            font-size: 1.2rem;
            opacity: 0.92;
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 520px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 32px;
        }

        .btn-hero-primary {
            background: #f5576c;
            color: white;
            border: none;
            padding: 15px 32px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(245,87,108,0.4);
        }

        .btn-hero-primary:hover {
            background: #e03050;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(245,87,108,0.5);
        }

        .btn-hero-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1.5px solid rgba(255,255,255,0.4);
            padding: 15px 28px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
        }

        .hero-trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 8px;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.88rem;
            opacity: 0.88;
        }

        .hero-trust-item i {
            color: #4ade80;
            font-size: 0.85rem;
        }

        /* Hero image panel */
        .hero-image-panel {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            padding: 20px;
            position: relative;
        }

        .hero-stats-overlay {
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            width: calc(100% - 40px);
        }

        .hero-stat-pill {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 12px 10px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .hero-stat-pill .num {
            font-size: 1.4rem;
            font-weight: 800;
            color: #f5576c;
            line-height: 1;
        }

        .hero-stat-pill .lbl {
            font-size: 0.72rem;
            color: #555;
            margin-top: 3px;
        }

        #img1 {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 14px;
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
            color: var(--text-primary);
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.3;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
        }

        .section-title.center-line:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 55px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* ===== WHAT IS SECTION ===== */
        .what-is-section { padding: 80px 0; background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%); }

        .definition-card {
            background: white;
            border-radius: 22px;
            padding: 48px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            border: 2px solid #f5576c;
            width: 100%;
        }

        .definition-header .badge {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 9px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            margin-bottom: 18px;
            display: inline-block;
        }

        .definition-header h2 { color: #003366; font-weight: 800; font-size: 2.4rem; line-height: 1.3; }
        .definition-content .lead { color: #003366; font-size: 1.3rem; line-height: 1.75; margin-bottom: 28px; }

        .definition-highlight {
            background: rgba(240,147,251,0.08);
            border-radius: 14px;
            padding: 24px;
            border-left: 5px solid #f5576c;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .highlight-icon {
            flex-shrink: 0;
            width: 56px; height: 56px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; color: white;
        }

        .highlight-content h5 { color: #003366; font-weight: 700; margin-bottom: 8px; font-size: 1.25rem; }
        .highlight-content p { color: #555; line-height: 1.65; margin-bottom: 0; }

        /* ===== GEO SECTION ===== */
        .geo-section { background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%); padding: 70px 0; border-bottom: 3px solid var(--primary-color); }

        .city-card {
            background: white;
            border-radius: 16px;
            padding: 28px 22px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            height: 100%;
        }

        .city-card:hover { transform: translateY(-8px); box-shadow: 0 16px 35px rgba(0,0,0,0.14); }
        .city-icon { font-size: 2.4rem; color: var(--primary-color); margin-bottom: 14px; }

        /* ===== STATS SECTION ===== */
        .stats-section { padding: 90px 0; background-color: var(--bg-light); }

        .stats-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 35px 22px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 28px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stats-card:hover { transform: translateY(-10px); }
        .stats-card .number { font-size: 3.2rem; font-weight: 800; display: block; line-height: 1; margin-bottom: 8px; }
        .stats-card .label { font-size: 1.1rem; opacity: 0.95; font-weight: 500; }

        /* ===== PROBLEMS SECTION ===== */
        .problems-section { background-color: var(--bg-white); padding: 90px 0; }

        .problem-card {
            background: #fff5f5;
            border-left: 5px solid var(--primary-color);
            padding: 22px 24px;
            border-radius: 12px;
            margin-bottom: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .problem-card:hover { transform: translateX(8px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
        .problem-card i { color: var(--primary-color); font-size: 1.4rem; margin-top: 3px; flex-shrink: 0; }

        /* ===== FEATURES SECTION ===== */
        .features-section { padding: 90px 0; background-color: var(--bg-light); }

        .feature-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-color);
        }

        .feature-card:hover { transform: translateY(-12px); box-shadow: 0 22px 45px rgba(0,0,0,0.14); }
        .feature-card i { font-size: 2.6rem; color: var(--primary-color); margin-bottom: 22px; display: block; transition: transform 0.3s ease; }
        .feature-card:hover i { transform: scale(1.15); }
        .feature-card h4 { color: var(--text-primary); font-weight: 700; margin-bottom: 16px; font-size: 1.35rem; }
        .feature-card p { color: var(--text-secondary); line-height: 1.7; font-size: 1rem; }

        /* ===== ONBOARDING ===== */
        .onboarding-section { padding: 90px 0; background: #ffffff; }

        .process-timeline { position: relative; padding-left: 50px; }

        .process-timeline:before {
            content: '';
            position: absolute;
            left: 25px; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #f093fb, #f5576c);
            border-radius: 2px;
        }

        .process-step { position: relative; margin-bottom: 46px; }

        .step-number {
            position: absolute;
            left: -50px; top: 0;
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; font-weight: 700;
            box-shadow: 0 5px 15px rgba(240,147,251,0.3);
            z-index: 2;
        }

        .step-content {
            background: white; border-radius: 15px; padding: 28px;
            box-shadow: 0 10px 28px rgba(0,0,0,0.07);
            border-left: 5px solid #f5576c;
            transition: transform 0.3s ease;
        }

        .step-content:hover { transform: translateX(8px); }
        .step-content h4 { color: #003366; font-weight: 700; margin-bottom: 12px; font-size: 1.35rem; }
        .step-content p { color: #555; margin-bottom: 18px; line-height: 1.6; }

        .step-details { list-style: none; padding-left: 0; margin-bottom: 18px; }
        .step-details li { padding: 7px 0 7px 24px; position: relative; color: #555; }
        .step-details li:before { content: '✓'; position: absolute; left: 0; color: #f5576c; font-weight: bold; }

        .step-duration {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(240,147,251,0.1); color: #f5576c;
            padding: 7px 14px; border-radius: 50px;
            font-weight: 600; font-size: 0.88rem;
        }

        .success-guarantee {
            background: linear-gradient(135deg, rgba(240,147,251,0.08) 0%, rgba(245,87,108,0.08) 100%);
            border-radius: 20px; padding: 36px;
            display: flex; align-items: center;
            border: 2px solid rgba(245,87,108,0.2);
        }

        .guarantee-icon { flex-shrink: 0; margin-right: 28px; }
        .guarantee-icon i { font-size: 3.8rem; color: #f5576c; }
        .guarantee-content h4 { color: #003366; font-weight: 700; margin-bottom: 12px; font-size: 1.5rem; }
        .guarantee-content p { color: #555; line-height: 1.7; margin-bottom: 22px; }

        .guarantee-badges { display: flex; flex-wrap: wrap; gap: 10px; }

        .guarantee-badges .badge {
            background: white; color: #003366;
            padding: 9px 18px; border-radius: 50px;
            font-weight: 600; font-size: 0.88rem;
            border: 2px solid #f5576c;
            display: inline-flex; align-items: center; gap: 7px;
        }

        /* ===== EFFICIENCY ===== */
        .efficiency-section { padding: 90px 0; background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); }

        .efficiency-card {
            background: var(--bg-white); padding: 36px;
            border-radius: 18px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-left: 5px solid var(--success-color);
            margin-bottom: 28px;
        }

        /* ===== CASE STUDY SECTION ===== */
        .case-study-section { padding: 90px 0; background: linear-gradient(135deg, #003366 0%, #1a1a6e 100%); }

        .cs-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 22px;
            padding: 44px;
        }

        .cs-label {
            display: inline-block;
            background: #f5576c;
            color: white;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .cs-card h2 { color: white; font-size: 2.2rem; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
        .cs-card .cs-company { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 28px; }

        .cs-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }

        .cs-stat {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }

        .cs-stat .num { font-size: 2.2rem; font-weight: 800; color: #fbbf24; line-height: 1; }
        .cs-stat .desc { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

        .cs-challenge, .cs-result { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; margin-bottom: 18px; }

        .cs-quote {
            background: rgba(255,255,255,0.08);
            border-left: 4px solid #fbbf24;
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 22px 0;
        }

        .cs-quote p { color: rgba(255,255,255,0.9); font-style: italic; font-size: 1.05rem; line-height: 1.7; margin: 0; }
        .cs-quote cite { color: rgba(255,255,255,0.55); font-size: 0.88rem; display: block; margin-top: 10px; }

        .cs-results-list { list-style: none; padding: 0; margin: 0; }

        .cs-results-list li {
            color: rgba(255,255,255,0.85);
            padding: 8px 0 8px 28px;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .cs-results-list li:last-child { border-bottom: none; }
        .cs-results-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: bold; }

        .cs-cta {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        /* ===== INDUSTRIES ===== */
        .industries-section { padding: 90px 0; background-color: var(--bg-white); }

        .industry-card {
            background: var(--bg-white);
            border-radius: 18px;
            padding: 30px 26px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.07);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            border-top: 4px solid transparent;
        }

        .industry-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 22px 45px rgba(0,0,0,0.14); border-top-color: var(--primary-color); }
        .industry-icon { font-size: 2.6rem; color: var(--primary-color); margin-bottom: 20px; height: 65px; display: flex; align-items: center; }
        .industry-card h4 { color: var(--text-primary); font-weight: 700; margin-bottom: 14px; font-size: 1.35rem; }
        .industry-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }

        .industry-link {
            color: var(--primary-color); text-decoration: none;
            font-weight: 700; font-size: 0.95rem;
            display: inline-flex; align-items: center; gap: 8px;
            transition: all 0.3s ease;
        }

        .industry-link:hover { color: var(--accent-color); transform: translateX(8px); }

        /* ===== CLIENTS ===== */
        .clients-section { padding: 90px 0; background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%); }

        .client-logo-card {
            border-radius: 14px; background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            height: 160px;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            border: 2px solid var(--border-color);
            padding: 28px;
            transition: all 0.3s ease;
        }

        .client-logo-card:hover { transform: translateY(-10px); box-shadow: 0 18px 38px rgba(0,0,0,0.14); border-color: var(--primary-color); }

        .testimonial-quote {
            border-left: 5px solid var(--primary-color);
            height: 100%;
            background: white;
            padding: 30px 26px;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
        }

        .testimonial-quote:hover { transform: translateY(-8px); box-shadow: 0 18px 38px rgba(0,0,0,0.14); }

        /* ===== BENEFITS ===== */
        .benefits-section { padding: 90px 0; background-color: var(--bg-light); }

        .benefit-card {
            background: var(--bg-white);
            padding: 30px 26px;
            border-radius: 18px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.07);
            margin-bottom: 26px;
            border-left: 5px solid #3498db;
            transition: all 0.3s ease;
            height: 100%;
        }

        .benefit-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(0,0,0,0.14); }
        .benefit-card h5 { color: #3498db; font-weight: 700; margin-bottom: 16px; font-size: 1.3rem; }
        .benefit-card p { color: var(--text-secondary); line-height: 1.7; font-size: 1rem; }

        /* ===== SECURITY SECTION ===== */
        .security-section { padding: 90px 0; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); }

        .security-card {
            background: white; border-radius: 18px; padding: 32px 26px;
            text-align: center;
            box-shadow: 0 12px 28px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
            position: relative; overflow: hidden;
        }

        .security-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(0,0,0,0.14); border-color: #f5576c; }
        .security-card:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); opacity: 0; transition: opacity 0.3s ease; }
        .security-card:hover:before { opacity: 1; }
        .security-icon { font-size: 2.8rem; color: #f5576c; margin-bottom: 22px; transition: transform 0.3s ease; }
        .security-card:hover .security-icon { transform: scale(1.15); }
        .security-card h4 { color: #003366; font-weight: 700; margin-bottom: 12px; font-size: 1.3rem; }
        .security-card p { color: #555; margin-bottom: 22px; line-height: 1.6; }
        .security-features { display: flex; flex-direction: column; gap: 9px; }
        .security-features span { background: rgba(240,147,251,0.1); color: #003366; padding: 9px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 9px; }
        .security-features i { color: #f5576c; }

        .compliance-badges { background: white; border-radius: 18px; padding: 36px; box-shadow: 0 12px 28px rgba(0,0,0,0.07); }
        .compliance-badges h4 { color: #003366; font-weight: 700; margin-bottom: 26px; }
        .badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
        .badge-item { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); border-radius: 14px; padding: 22px; text-align: center; border: 2px solid rgba(245,87,108,0.2); transition: all 0.3s ease; }
        .badge-item:hover { transform: translateY(-5px); border-color: #f5576c; }
        .badge-icon { font-size: 2.2rem; color: #f5576c; margin-bottom: 12px; }
        .badge-item span { color: #003366; font-weight: 600; font-size: 1rem; }

        .data-protection-notice { background: linear-gradient(135deg, rgba(240,147,251,0.08) 0%, rgba(245,87,108,0.08) 100%); border-radius: 14px; padding: 28px; border-left: 5px solid #f5576c; }
        .data-protection-notice h5 { color: #003366; font-weight: 700; margin-bottom: 12px; font-size: 1.2rem; }
        .data-protection-notice p { color: #555; line-height: 1.7; margin-bottom: 0; }

        /* ===== COMPARISON ===== */
        .comparison-section { padding: 90px 0; background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); }

        .comparison-table { background: var(--bg-white); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 45px rgba(0,0,0,0.11); }
        .comparison-table th { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); color: white; padding: 22px; text-align: center; font-weight: 700; font-size: 1.2rem; }
        .comparison-table td { padding: 22px; border-bottom: 2px solid var(--border-color); font-size: 1rem; }
        .comparison-table tr:nth-child(even) { background-color: rgba(0,0,0,0.02); }
        .comparison-table tr:hover { background-color: rgba(38,208,206,0.04); }

        /* ===== FAQ ===== */
        .faq-section { padding: 90px 0; background-color: var(--bg-white); }

        .faq-item {
            background: var(--bg-white); border-radius: 14px;
            margin-bottom: 18px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            border: 2px solid transparent;
            overflow: hidden; transition: all 0.3s ease;
        }

        .faq-item:hover { border-color: var(--primary-color); box-shadow: 0 14px 36px rgba(0,0,0,0.11); }

        .faq-header {
            padding: 22px 28px; background: none; border: none;
            width: 100%; text-align: left;
            font-weight: 700; font-size: 1.15rem;
            color: var(--text-primary);
            display: flex; justify-content: space-between; align-items: center;
            cursor: pointer; transition: background-color 0.3s ease;
        }

        .faq-header:hover { background-color: rgba(0,0,0,0.02); }
        .faq-header i { color: var(--primary-color); transition: transform 0.3s ease; font-size: 1.1rem; }
        .faq-header[aria-expanded="true"] i { transform: rotate(180deg); }
        .faq-body { padding: 0 28px 28px; color: var(--text-secondary); line-height: 1.8; font-size: 1rem; }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #003366 0%, #f5576c 100%);
            color: white; padding: 110px 0; text-align: center;
            position: relative; overflow: hidden;
        }

        .cta-section h2 { font-size: 3rem; font-weight: 800; margin-bottom: 22px; color: white; line-height: 1.3; }
        .cta-section .lead { font-size: 1.3rem; margin-bottom: 44px; color: rgba(255,255,255,0.92); max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.7; }

        .btn-cta-primary {
            background: white; color: #f5576c;
            font-weight: 700; padding: 17px 46px;
            border-radius: 50px; font-size: 1.2rem;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 12px 32px rgba(0,0,0,0.2);
        }

        .btn-cta-primary:hover { background: #f8f9fa; color: #f5576c; transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.28); }

        .btn-cta-secondary {
            background: rgba(255,255,255,0.12);
            border: 1.5px solid rgba(255,255,255,0.35);
            color: white; font-weight: 600;
            padding: 17px 36px; border-radius: 50px;
            font-size: 1.1rem; text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.3s ease; margin-left: 14px;
        }

        .btn-cta-secondary:hover { background: rgba(255,255,255,0.22); color: white; transform: translateY(-5px); }

        /* ===== AI SEARCH SNIPPET SECTION ===== */
        .ai-snippet-section { padding: 70px 0; background: linear-gradient(135deg, #f0f8ff 0%, #f8f0ff 100%); border-top: 3px solid #764ba2; }

        .ai-snippet-card {
            background: white;
            border-radius: 18px;
            padding: 36px;
            box-shadow: 0 12px 30px rgba(118,75,162,0.1);
            border: 1.5px solid rgba(118,75,162,0.2);
        }

        .ai-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, #764ba2 0%, #f5576c 100%);
            color: white; padding: 6px 16px; border-radius: 50px;
            font-size: 0.8rem; font-weight: 700;
            margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em;
        }

        .ai-snippet-card h3 { color: #003366; font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
        .ai-snippet-card p { color: #555; line-height: 1.75; margin-bottom: 14px; }

        .ai-quick-answers { list-style: none; padding: 0; margin: 0; }
        .ai-quick-answers li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid #f0f0f0; color: #444; font-size: 0.97rem; line-height: 1.6; }
        .ai-quick-answers li:last-child { border-bottom: none; }
        .ai-quick-answers li::before { content: '›'; position: absolute; left: 0; color: #764ba2; font-size: 1.3rem; font-weight: bold; top: 8px; }

        /* ===== SEO SOLUTION SECTION ===== */
        #solution .seo-content { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.65; color: #333; }
        #solution .seo-content h3 { color: #2c3e50; font-size: 2rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 14px; position: relative; }
        #solution .seo-content h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 55px; height: 3px; background: #3498db; border-radius: 2px; }
        #solution .seo-content h4 { color: #3498db; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; border-left: 3px solid #ff6b6b; padding-left: 13px; display: flex; align-items: center; }
        #solution .seo-content h4::before { content: '✓'; background: #e3f2fd; color: #3498db; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 9px; font-weight: bold; font-size: 13px; flex-shrink: 0; }
        #solution .seo-content p { color: #555; font-size: 0.97rem; line-height: 1.65; margin-bottom: 0; }

        .solution-item {
            background: #fff; border-radius: 10px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            border: 1px solid #eef2f7;
            padding: 22px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .solution-item:hover { box-shadow: 0 6px 22px rgba(52,152,219,0.1); border-color: #d6e9ff; transform: translateY(-3px); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) { .hero-section h1 { font-size: 2.9rem; } .section-title { font-size: 2.2rem; } }

        @media (max-width: 992px) {
            .hero-section { padding: 80px 0 60px; }
            .hero-section h1 { font-size: 2.5rem; }
            .hero-stats-overlay { position: static; transform: none; width: 100%; margin-top: 18px; }
            .hero-image-panel { margin-bottom: 28px; }
            .section-title { font-size: 2rem; }
            .cs-stat-row { grid-template-columns: 1fr 1fr; }
            .success-guarantee { flex-direction: column; text-align: center; padding: 28px; }
            .guarantee-icon { margin-right: 0; margin-bottom: 18px; }
            .process-timeline { padding-left: 40px; }
            .process-timeline:before { left: 20px; }
            .step-number { left: -40px; width: 40px; height: 40px; font-size: 1.2rem; }
        }

        @media (max-width: 768px) {
            .hero-section { padding: 65px 0 50px; text-align: center; }
            .hero-section h1 { font-size: 2.1rem; }
            .hero-section .lead { max-width: 100%; }
            .hero-cta-group { justify-content: center; }
            .hero-trust-row { justify-content: center; }
            .section-title { font-size: 1.8rem; }
            .cs-card { padding: 28px 20px; }
            .cs-card h2 { font-size: 1.7rem; }
            .cs-stat-row { grid-template-columns: 1fr; }
            .process-timeline { padding-left: 30px; }
            .process-timeline:before { left: 15px; }
            .step-number { left: -30px; width: 30px; height: 30px; font-size: 1rem; }
            .step-content { padding: 22px 18px; }
            .guarantee-badges { flex-direction: column; }
            .badge-grid { grid-template-columns: repeat(2, 1fr); }
            .btn-cta-secondary { margin-left: 0; margin-top: 12px; }
            .cta-section h2 { font-size: 2.1rem; }
        }

        @media (max-width: 576px) {
            .hero-section h1 { font-size: 1.85rem; }
            .section-title { font-size: 1.6rem; }
            .cs-card { padding: 22px 16px; }
            .badge-grid { grid-template-columns: 1fr; }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }

        .breadcrumb { background: transparent; padding: 0; margin-bottom: 28px; }
        .breadcrumb-item a { color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 500; }
        .breadcrumb-item.active { color: rgba(255,255,255,0.65); }

