/* Modern Solution Page Styles - Shared Template */
/* This file is for reference - styles are added inline to each page */

/* Modern Hero Section */
.hero-modern {
    padding: 120px 0 80px;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 119, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 175, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-content-modern {
    position: relative;
    z-index: 1;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle-modern {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Smart Image Placeholder */
.image-placeholder-modern {
    background: linear-gradient(135deg, rgba(22, 119, 255, 0.1) 0%, rgba(78, 175, 205, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 119, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-placeholder-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(22, 119, 255, 0.2);
    border-color: rgba(22, 119, 255, 0.3);
}

.image-placeholder-modern i {
    font-size: 120px;
    color: rgba(22, 119, 255, 0.3);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.image-placeholder-modern:hover i {
    color: rgba(22, 119, 255, 0.6);
    transform: scale(1.1);
}

.image-placeholder-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 8px 0;
}

/* Benefits List */
.benefits-list-modern {
    list-style: none;
    padding: 0;
}

.benefits-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.benefits-list-modern li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.benefits-list-modern li i {
    color: #1677ff;
    font-size: 1.25rem;
    margin-top: 4px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefits-list-modern li:hover i {
    transform: translate(3px, -3px);
    color: #4ecdc4;
}

/* Section Titles */
.section-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle-modern {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card-modern {
    background: linear-gradient(135deg, rgba(22, 119, 255, 0.1) 0%, rgba(78, 175, 205, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 119, 255, 0.15) 0%, rgba(78, 175, 205, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(22, 119, 255, 0.3);
    box-shadow: 0 30px 60px rgba(22, 119, 255, 0.2);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section-modern {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 119, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.cta-section-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 175, 205, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.cta-container-modern {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(22, 119, 255, 0.1) 0%, rgba(78, 175, 205, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-container-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(22, 119, 255, 0.2);
    border-color: rgba(22, 119, 255, 0.3);
}

.cta-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.cta-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.cta-description-modern {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 56px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--primary-gradient);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(22, 119, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-button-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-modern:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button-modern:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(22, 119, 255, 0.5);
}

.cta-button-modern span,
.cta-button-modern i {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 100px 0 60px;
    }
    
    .cta-container-modern {
        padding: 60px 30px;
    }
}

