/* ═══════════════════════════════════════════════════════════
   RESOLUTION PAGE - FRANDZZO INSPIRED DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Resolution Hero */
.resolution-hero {
    margin-top: 80px;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.85) 100%);
}

.resolution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(58, 123, 213, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.resolution-hero .container {
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.back-link i {
    font-size: 12px;
}

.resolution-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.resolution-category {
    padding: 8px 16px;
    background: var(--zoho-red);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.resolution-date {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.resolution-hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.resolution-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.6;
}

/* Resolution Content */
.resolution-content {
    padding: 100px 0;
    background: var(--white);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.resolution-intro {
    padding: 40px;
    background: var(--lighter-bg);
    border-left: 4px solid var(--zoho-red);
    margin-bottom: 60px;
}

.resolution-intro p {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.resolution-section {
    margin-bottom: 60px;
}

.resolution-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.resolution-section p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    padding: 32px;
    background: var(--lighter-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.commitment-card:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.commitment-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--zoho-red) 0%, var(--zoho-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.commitment-icon i {
    font-size: 28px;
    color: var(--white);
}

.commitment-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.commitment-card p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Initiative List */
.initiative-list {
    margin-top: 40px;
}

.initiative-item {
    display: flex;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.initiative-item:last-child {
    border-bottom: none;
}

.initiative-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--lighter-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--zoho-red);
}

.initiative-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.initiative-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Tech List */
.tech-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
}

.tech-list i {
    color: var(--zoho-red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tech-list i.fa-leaf {
    color: var(--zoho-green);
}

/* Resolution CTA */
.resolution-cta {
    margin: 80px 0 60px;
    padding: 60px;
    background: linear-gradient(135deg, var(--zoho-red) 0%, var(--zoho-dark-red) 100%);
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.resolution-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.resolution-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.resolution-cta .btn {
    background: var(--white);
    color: var(--zoho-red);
    border-color: var(--white);
}

.resolution-cta .btn:hover {
    background: var(--lighter-bg);
    transform: translateY(-4px);
}

.resolution-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.resolution-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--zoho-red);
}

/* Share Section */
.resolution-share {
    margin: 60px 0;
    padding: 40px;
    background: var(--lighter-bg);
    border-radius: 12px;
    text-align: center;
}

.resolution-share h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.share-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--zoho-red);
    border-color: var(--zoho-red);
    color: var(--white);
    transform: translateY(-4px);
}

/* Related Insights */
.related-insights {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.related-insights h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.related-card {
    padding: 24px;
    background: var(--lighter-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.related-card:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-card p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    margin: 0;
}

.view-all-insights {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--zoho-red);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resolution-hero {
        padding: 60px 0 40px;
    }
    
    .resolution-hero h1 {
        font-size: 36px;
    }
    
    .resolution-subtitle {
        font-size: 16px;
    }
    
    .resolution-content {
        padding: 60px 0;
    }
    
    .resolution-intro {
        padding: 30px 20px;
    }
    
    .resolution-intro p {
        font-size: 16px;
    }
    
    .resolution-section h2 {
        font-size: 26px;
    }
    
    .initiative-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .resolution-cta {
        padding: 40px 30px;
    }
    
    .resolution-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
