    /* SEO Hero Section */
    .seo-hero {
        background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
        padding: 160px 0 100px;
        color: white;
        position: relative;
        overflow: hidden;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }

    .hero-background-elements {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        top: 60%;
        right: 15%;
        animation-delay: 2s;
    }

    .shape-3 {
        width: 120px;
        height: 120px;
        top: 30%;
        right: 25%;
        animation-delay: 4s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .seo-hero-content {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 24px;
        border-radius: 50px;
        margin-bottom: 32px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .seo-hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .highlight-text {
        background: linear-gradient(45deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .location-text {
        color: #fbbf24;
    }

    .title-underline {
        width: 100px;
        height: 4px;
        background: linear-gradient(45deg, #fbbf24, #f59e0b);
        margin: 20px auto;
        border-radius: 2px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin: 50px 0;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #fbbf24;
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-top: 8px;
    }

    .hero-cta-section {
        margin-top: 40px;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .hero-primary-btn {
        background: linear-gradient(135deg, #1f2937, #374151);
        color: white;
        padding: 20px 40px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .hero-primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        color: white;
    }

    .btn-text {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
    }

    .btn-subtext {
        font-size: 0.8rem;
        opacity: 0.8;
        margin-top: 4px;
    }

    .hero-call-btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 20px 30px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-call-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }

    .hero-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* SEO Services Grid */
    .seo-services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 100px 0;
    }

    @media (max-width: 1400px) {
        .seo-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .seo-service-card {
        background: white;
        border-radius: 20px;
        padding: 30px 25px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .seo-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .seo-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .seo-service-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 32px;
        margin-bottom: 24px;
    }

    .seo-service-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1f2937;
    }

    .seo-service-card p {
        color: #6b7280;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .seo-features {
        list-style: none;
        padding: 0;
        margin: 0 0 32px 0;
    }

    .seo-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        color: #374151;
    }

    .seo-features li i {
        color: #22c55e;
        font-size: 16px;
    }

    .seo-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        padding: 16px 32px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .seo-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
        text-decoration: none;
        color: white;
    }

    /* Benefits Section */
    .benefits-section {
        background: #f8fafc;
        padding: 100px 0;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-top: 60px;
    }

    @media (max-width: 1200px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    .benefit-item {
        text-align: center;
        padding: 40px 30px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 36px;
        margin: 0 auto 24px;
        font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    }

    .benefit-item h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 16px;
        color: #1f2937;
    }

    .benefit-item p {
        color: #6b7280;
        line-height: 1.6;
    }

    /* SEO Packages Section */
    .seo-packages {
        background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f0f9ff 100%);
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: #1f2937;
    }

    .section-header p {
        font-size: 1.125rem;
        color: #6b7280;
        max-width: 600px;
        margin: 0 auto;
    }

    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .package-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .package-card.featured {
        border-color: #22c55e;
        transform: scale(1.05);
    }

    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .package-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }

    .package-badge {
        position: absolute;
        top: -1px;
        right: 40px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        padding: 8px 20px;
        border-radius: 0 0 12px 12px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .package-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .package-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
    }

    .package-subtitle {
        color: #6b7280;
        margin-bottom: 20px;
    }

    .package-price {
        margin-bottom: 20px;
    }

    .price {
        font-size: 3rem;
        font-weight: 800;
        color: #22c55e;
    }

    .period {
        font-size: 1.2rem;
        color: #6b7280;
    }

    .package-features {
        margin-bottom: 30px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        color: #374151;
    }

    .feature-item i {
        color: #22c55e;
        font-size: 16px;
        flex-shrink: 0;
    }

    .package-cta {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        border: none;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
        text-decoration: none;
        color: white;
    }

    .btn-outline {
        background: transparent;
        color: #22c55e;
        border: 2px solid #22c55e;
    }

    .btn-outline:hover {
        background: #22c55e;
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .package-guarantee {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        border: 2px solid #fbbf24;
    }

    .guarantee-content {
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .guarantee-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .guarantee-text h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1f2937;
    }

    .guarantee-text p {
        color: #6b7280;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .seo-hero h1 {
            font-size: 2.5rem;
        }

        .hero-stats {
            gap: 30px;
            margin: 30px 0;
        }

        .stat-number {
            font-size: 2rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-primary-btn, .hero-call-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .seo-services-grid {
            grid-template-columns: 1fr;
            padding: 60px 0;
        }

        .seo-service-card {
            padding: 30px;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .packages-grid {
            grid-template-columns: 1fr;
        }

        .package-card.featured {
            transform: none;
        }

        .package-card.featured:hover {
            transform: translateY(-8px);
        }

        .guarantee-content {
            flex-direction: column;
            text-align: center;
        }
    }

    /* SEO Case Studies Section */
    .seo-case-studies {
        background: white;
        padding: 100px 0;
    }

    .case-studies-grid {
        display: flex;
        gap: 30px;
        margin-bottom: 60px;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Desktop - all items in one line */
    @media (min-width: 1200px) {
        .case-studies-grid {
            justify-content: space-between;
            overflow-x: visible;
        }
    }

    /* Tablet and Mobile */
    @media (max-width: 1199px) {
        .case-studies-grid {
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
        }
    }

    @media (max-width: 768px) {
        .case-studies-grid {
            flex-direction: column;
            overflow-x: visible;
            gap: 20px;
        }
        .case-study-card {
            min-width: 100%;
        }
    }

    .case-study-card {
        background: #f8fafc;
        border-radius: 20px;
        padding: 40px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        flex: 1;
        min-width: 350px;
    }

    .case-study-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: #22c55e;
    }

    .case-study-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .client-logo {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }

    .client-details h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #1f2937;
    }

    .client-industry {
        color: #6b7280;
        font-size: 0.9rem;
    }

    .case-study-badge {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .case-study-content .challenge,
    .case-study-content .solution,
    .case-study-content .results {
        margin-bottom: 25px;
    }

    .case-study-content h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1f2937;
    }

    .case-study-content p {
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .result-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 15px;
    }

    .result-stat {
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }

    .result-stat .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: #22c55e;
        line-height: 1;
    }

    .result-stat .stat-label {
        font-size: 0.8rem;
        color: #6b7280;
        margin-top: 5px;
    }

    .case-study-footer {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
    }

    .revenue-impact {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #16a34a;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .case-studies-cta {
        text-align: center;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        padding: 60px 40px;
        border-radius: 20px;
        border: 2px solid #22c55e;
    }

    .case-studies-cta h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1f2937;
    }

    .case-studies-cta p {
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-lg {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

    /* SEO FAQ Section */
    .seo-faq {
        background: #f8fafc;
        padding: 100px 0;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #22c55e;
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: #1f2937;
    }

    .faq-icon {
        color: #22c55e;
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 30px 25px;
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .faq-answer p {
        color: #6b7280;
        line-height: 1.7;
        margin: 0;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile Responsive Updates */
    /* SEO Contact Section */
    .seo-contact {
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        color: white;
        padding: 100px 0;
    }

    .seo-contact .section-header h2 {
        color: white;
    }

    .seo-contact .section-header p {
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 60px;
        margin-top: 60px;
    }

    .contact-form-container {
        background: white;
        border-radius: 20px;
        padding: 40px;
        color: #1f2937;
    }

    .form-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1f2937;
    }

    .audit-features {
        margin-bottom: 30px;
    }

    .audit-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #374151;
    }

    .audit-feature i {
        color: #22c55e;
        font-size: 16px;
    }

    .contact-form {
        margin-top: 30px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #1f2937;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #22c55e;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .error-message {
        color: #ef4444;
        font-size: 14px;
        margin-top: 5px;
        display: none;
    }

    .form-submit {
        width: 100%;
        margin-top: 20px;
    }

    .form-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        font-size: 0.9rem;
        color: #6b7280;
    }

    .form-status {
        margin-top: 20px;
        padding: 15px;
        border-radius: 8px;
        display: none;
    }

    .form-status.success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #10b981;
    }

    .form-status.error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #ef4444;
    }

    .contact-info {
        color: white;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 40px;
    }

    .contact-header h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .contact-header p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
    }

    .contact-methods {
        margin-bottom: 40px;
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        background: rgba(34, 197, 94, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #22c55e;
        font-size: 20px;
        flex-shrink: 0;
    }

    .method-content h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
    }

    .method-content a {
        color: #22c55e;
        text-decoration: none;
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    .method-content a:hover {
        text-decoration: underline;
    }

    .method-content span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .contact-benefits h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
    }

    .contact-benefits .benefit-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #1f2937;
        font-weight: 600;
    }

    .contact-benefits .benefit-item i {
        color: #22c55e;
        font-size: 14px;
    }

    .social-proof {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .proof-stats {
        display: flex;
        gap: 30px;
        margin-bottom: 20px;
    }

    .proof-stat {
        text-align: center;
    }

    .proof-number {
        font-size: 2rem;
        font-weight: 800;
        color: #22c55e;
        line-height: 1;
    }

    .proof-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 5px;
    }

    .trust-badges {
        display: flex;
        gap: 20px;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }

    .trust-badge i {
        color: #fbbf24;
        font-size: 16px;
    }

    /* Form Validation Styles */
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    .error-message {
        display: block;
        color: #ef4444;
        font-size: 14px;
        margin-top: 5px;
    }

    /* Loading and Animation Styles */
    body.loading * {
        animation-play-state: paused;
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    @media (max-width: 768px) {
        .case-studies-grid {
            grid-template-columns: 1fr;
        }

        .case-study-header {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .result-stats {
            grid-template-columns: 1fr;
        }

        .case-studies-cta {
            padding: 40px 20px;
        }

        .case-studies-cta h3 {
            font-size: 1.5rem;
        }

        .faq-question {
            padding: 20px;
        }

        .faq-answer {
            padding: 0 20px 20px;
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-form-container {
            padding: 30px 20px;
        }

        .contact-card {
            padding: 30px 20px;
        }

        .proof-stats {
            justify-content: center;
        }

        .trust-badges {
            justify-content: center;
            flex-wrap: wrap;
        }
    }

    /* Enhanced Why SEO Matters Section */
    .why-seo-matters {
        padding: 120px 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        position: relative;
        overflow: hidden;
    }

    .why-seo-matters::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 2rem;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.05); opacity: 0.8; }
    }

    .section-badge i {
        color: #fbbf24;
        animation: sparkle 3s infinite;
    }

    @keyframes sparkle {
        0%, 100% { transform: rotate(0deg) scale(1); }
        50% { transform: rotate(180deg) scale(1.2); }
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .gradient-text {
        background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .live-stats-bar {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 4rem;
        backdrop-filter: blur(10px);
    }

    .stat-ticker {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .ticker-item {
        padding: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ticker-item:last-child {
        border-right: none;
    }

    .ticker-value {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #3b82f6;
        margin-bottom: 0.5rem;
        animation: countUp 2s ease-out;
    }

    @keyframes countUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .ticker-label {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        border-color: rgba(59, 130, 246, 0.5);
    }

    .benefit-card:hover::before {
        opacity: 1;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #a855f7);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: white;
    }

    .benefit-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
        margin-bottom: 1rem;
    }

    .benefit-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .benefit-feature {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
    }

    .roi-calculator {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .roi-value {
        font-size: 2rem;
        font-weight: 700;
        color: #10b981;
    }

    .roi-label {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .traffic-chart {
        height: 80px;
        display: flex;
        align-items: flex-end;
        gap: 4px;
    }

    .chart-bar {
        flex: 1;
        background: linear-gradient(to top, #3b82f6, #a855f7);
        border-radius: 4px 4px 0 0;
        animation: growBar 1s ease-out forwards;
    }

    @keyframes growBar {
        from { height: 0; }
    }

    .chart-bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
    .chart-bar:nth-child(2) { height: 45%; animation-delay: 0.2s; }
    .chart-bar:nth-child(3) { height: 60%; animation-delay: 0.3s; }
    .chart-bar:nth-child(4) { height: 75%; animation-delay: 0.4s; }
    .chart-bar:nth-child(5) { height: 90%; animation-delay: 0.5s; }
    .chart-bar:nth-child(6) { height: 100%; animation-delay: 0.6s; }

    .local-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .local-tag {
        background: rgba(168, 85, 247, 0.2);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.875rem;
        color: #a855f7;
    }

    .conversion-meter {
        position: relative;
        height: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .conversion-fill {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 85%;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 10px;
        animation: fillMeter 2s ease-out;
    }

    @keyframes fillMeter {
        from { width: 0; }
    }

    .conversion-percentage {
        text-align: center;
        margin-top: 8px;
        color: #10b981;
        font-weight: 600;
    }

    .comparison-section {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 3rem;
        margin-bottom: 4rem;
    }

    .comparison-title {
        text-align: center;
        font-size: 2rem;
        color: white;
        margin-bottom: 3rem;
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
        align-items: center;
    }

    .comparison-column {
        padding: 2rem;
        border-radius: 15px;
        height: 100%;
    }

    .without-seo {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
        border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .with-seo {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .comparison-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .comparison-label {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .without-seo .comparison-label {
        color: #ef4444;
    }

    .with-seo .comparison-label {
        color: #10b981;
    }

    .comparison-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .comparison-list {
        list-style: none;
        padding: 0;
    }

    .comparison-list li {
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.8);
    }

    .comparison-list i {
        font-size: 1.25rem;
    }

    .without-seo .comparison-list i {
        color: #ef4444;
    }

    .with-seo .comparison-list i {
        color: #10b981;
    }

    .comparison-divider {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vs-badge {
        background: linear-gradient(135deg, #3b82f6, #a855f7);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        animation: pulse 2s infinite;
    }

    .cta-section {
        text-align: center;
        padding: 3rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-title {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-primary, .cta-secondary {
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .cta-primary {
        background: linear-gradient(135deg, #3b82f6, #a855f7);
        color: white;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }

    .cta-secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .stat-ticker {
            grid-template-columns: 1fr 1fr;
        }

        .ticker-item {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ticker-item:nth-last-child(-n+2) {
            border-bottom: none;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
        }

        .comparison-divider {
            transform: rotate(90deg);
            margin: 2rem 0;
        }

        .cta-title {
            font-size: 1.75rem;
        }
    }
