/* This is the custom CSS for the Landing page template. */
    /* CranSEO Landing Page Styles */
    .cranseo-landing-page {
        --primary: #1d617a;
        --primary-light: #2a7a98;
        --secondary: #7bd0ad;
        --secondary-light: #94dbc1;
        --dark: #1f2937;
        --darker: #111827;
        --light: #f9fafb;
        --gray: #6b7280;
        --accent: #4fd1c5;
    }
    
    .cranseo-landing-page .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .cranseo-hero-section {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, rgba(29, 97, 122, 0.03) 0%, rgba(123, 208, 173, 0.03) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .cranseo-hero-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, rgba(29, 97, 122, 0.1), rgba(123, 208, 173, 0.1));
        border-radius: 50%;
        z-index: 0;
    }
    
    .cranseo-hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cranseo-hero-content h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--primary);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--gray);
        margin-bottom: 30px;
    }
    
    .cranseo-cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .cranseo-landing-page .button {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .cranseo-landing-page .primary-button {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        box-shadow: 0 4px 6px rgba(29, 97, 122, 0.3);
    }
    
    .cranseo-landing-page .primary-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(29, 97, 122, 0.4);
    }
    
    .cranseo-landing-page .secondary-button {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        box-shadow: 0 4px 6px rgba(29, 97, 122, 0.3);
    }
    
    .cranseo-landing-page .secondary-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(29, 97, 122, 0.4);
    }
    
    .hero-image {
        margin-top: 40px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Solution Showcase */
    .cranseo-solution-showcase {
        padding: 100px 0;
        background: white;
    }
    
    .solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .solution-image {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .image-caption {
        margin-top: 15px;
        font-style: italic;
        color: var(--gray);
        text-align: center;
    }
    
    .solution-heading {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: var(--primary);
    }
    
    .solution-feature {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(29, 97, 122, 0.1), rgba(123, 208, 173, 0.1));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--primary);
    }
    
    .feature-content p {
        color: var(--gray);
    }
    
    /* Features Section */
    .cranseo-features {
        padding: 100px 0;
        background: linear-gradient(135deg, rgba(29, 97, 122, 0.03), rgba(123, 208, 173, 0.03));
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--primary);
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        transition: all 0.3s;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary);
    }
    
    .feature-card p {
        color: var(--gray);
        margin-bottom: 20px;
    }
    
    .feature-hover-content {
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .feature-card:hover .feature-hover-content {
        opacity: 1;
        height: auto;
    }
    
    .feature-hover-content ul {
        text-align: left;
        list-style: none;
        padding: 0;
    }
    
    .feature-hover-content li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }
    
    .feature-hover-content li:before {
        content: "•";
        color: var(--secondary);
        position: absolute;
        left: 0;
    }
    
    /* Pricing Section */
    .cranseo-pricing {
        padding: 100px 0;
        background: white;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .pricing-card {
        background: var(--light);
        border-radius: 12px;
        padding: 40px 30px;
        transition: all 0.3s;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .pricing-card.featured {
        border: 2px solid var(--primary);
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(29, 97, 122, 0.15);
        z-index: 1;
    }
    
    .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .card-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        color: var(--primary);
    }
    
    .price-annual {
        color: var(--secondary);
        font-weight: 600;
    }
    
    .price-box {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .price {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
    }
    
    .price-details {
        display: block;
        margin-top: 5px;
    }
    
    .price-period {
        color: var(--primary);
        font-weight: 600;
    }
    
    .price-vs {
        color: var(--gray);
        font-size: 0.875rem;
        display: block;
    }
    
    .features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    
    .features-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .feature-check {
        color: var(--secondary);
        margin-right: 10px;
        font-weight: bold;
    }
    
    .feature-muted {
        color: var(--gray);
        margin-right: 10px;
    }
    
    .pricing-button {
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .pricing-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(29, 97, 122, 0.3);
    }
    
    .plan-note {
        text-align: center;
        margin-top: 15px;
        color: var(--gray);
        font-size: 0.875rem;
    }
    
    .guarantee-box {
        background: linear-gradient(135deg, rgba(29, 97, 122, 0.05), rgba(123, 208, 173, 0.05));
        border-radius: 12px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .guarantee-icon {
        width: 50px;
        height: 50px;
        background: var(--secondary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .guarantee-content h4 {
        margin-bottom: 5px;
        color: var(--primary);
    }
    
    .guarantee-content p {
        color: var(--gray);
        margin: 0;
    }
    
    /* Final CTA */
    .cranseo-final-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        text-align: center;
    }
    
    .cranseo-final-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cranseo-final-cta p {
        font-size: 1.25rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .large-button {
        padding: 15px 40px;
        font-size: 1.125rem;
    }
    
    .small-text {
        margin-top: 15px;
        font-size: 0.875rem;
        opacity: 0.8;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .solution-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 500px;
            margin: 0 auto 40px auto;
        }
        
        .pricing-card.featured {
            transform: scale(1);
        }
    }
    
    @media (max-width: 768px) {
        .cranseo-hero-content h1 {
            font-size: 2.5rem;
        }
        
        .cranseo-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .solution-heading {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .guarantee-box {
            flex-direction: column;
            text-align: center;
        }
    }
