/* ═══════════════════════════════════════════════════════════
   INSIGHTS PAGE - FRANDZZO MINIMAL DESIGN WITH VIDEOS
   ═══════════════════════════════════════════════════════════ */

/* Smooth Scrolling & Performance */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hardware Acceleration */
.insight-card,
.video-thumbnail,
.play-button {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* CSS Variables - Matching Index Page */
:root {
    --zoho-red: #3A7BD5;
    --zoho-dark-red: #2563EB;
    --zoho-orange: #60A5FA;
    --zoho-blue: #3A7BD5;
    --zoho-dark-blue: #2563EB;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --lighter-bg: #FAFBFC;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --zoho-green: #10B981;
    --zoho-yellow: #F59E0B;
    --zoho-purple: #8B5CF6;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Insights Section */
.insights-section {
    padding: 80px 0 120px;
    background: var(--white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

/* Insight Card Minimal */
.insight-card-minimal {
    background: var(--white);
    display: block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.insight-card-minimal.featured {
    grid-column: 1 / -1;
}

.insight-card-minimal:hover {
    background: var(--lighter-bg);
}

.insight-video-minimal {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #000;
}

.insight-card-minimal.featured .insight-video-minimal {
    height: 500px;
}

.insight-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insight-card-minimal:hover .insight-video {
    transform: scale(1.05);
}

.insight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.insight-card-minimal:hover .insight-overlay {
    opacity: 1;
}

.insight-content-minimal {
    padding: 40px;
}

.insight-card-minimal.featured .insight-content-minimal {
    padding: 50px;
}

.insight-category-minimal {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--zoho-red);
    margin-bottom: 16px;
}

.insight-content-minimal h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: var(--transition);
}

.insight-card-minimal.featured .insight-content-minimal h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.insight-card-minimal:hover .insight-content-minimal h3 {
    color: var(--zoho-red);
}

.insight-content-minimal p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.insight-card-minimal.featured .insight-content-minimal p {
    font-size: 17px;
    margin-bottom: 24px;
}

.insight-date-minimal {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-section {
        padding: 60px 0 80px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-video-minimal {
        height: 250px;
    }
    
    .insight-card-minimal.featured .insight-video-minimal {
        height: 350px;
    }
    
    .insight-content-minimal {
        padding: 30px;
    }
    
    .insight-card-minimal.featured .insight-content-minimal {
        padding: 35px;
    }
    
    .insight-card-minimal.featured .insight-content-minimal h3 {
        font-size: 28px;
    }
    
    .insight-card-minimal.featured .insight-content-minimal p {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESOLUTION REVEAL SECTION - VIDEO FADE OUT EFFECT
   ═══════════════════════════════════════════════════════════ */

.resolution-reveal-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.resolution-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.resolution-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: videoFadeOut 3s ease-in-out forwards;
    animation-delay: 1s;
}

.resolution-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    animation: overlayFadeIn 3s ease-in-out forwards;
    animation-delay: 1s;
}

.resolution-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0;
}

.resolution-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: contentFadeIn 1.5s ease-out forwards;
    animation-delay: 2.5s;
}

.resolution-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #3A7BD5;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 24px;
    border: 2px solid #3A7BD5;
    border-radius: 30px;
}

.resolution-title {
    font-size: 56px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.resolution-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3A7BD5 0%, #00D4FF 100%);
    margin: 0 auto 40px;
}

.resolution-statement {
    max-width: 800px;
    margin: 0 auto 80px;
}

.resolution-lead {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.resolution-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.resolution-pillar {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.resolution-pillar:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(58, 123, 213, 0.5);
    transform: translateY(-8px);
}

.pillar-number {
    font-size: 48px;
    font-weight: 100;
    color: rgba(58, 123, 213, 0.6);
    margin-bottom: 20px;
    line-height: 1;
}

.resolution-pillar h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.resolution-pillar p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.resolution-cta {
    margin-top: 60px;
}

.btn-resolution {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3A7BD5 0%, #00D4FF 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.3);
}

.btn-resolution:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.4);
}

.btn-resolution i {
    transition: transform 0.3s ease;
}

.btn-resolution:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes videoFadeOut {
    0% {
        opacity: 1;
        filter: brightness(1);
    }
    100% {
        opacity: 0.2;
        filter: brightness(0.3);
    }
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resolution-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .resolution-title {
        font-size: 42px;
    }
    
    .resolution-lead {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .resolution-content-wrapper {
        padding: 80px 0;
    }
    
    .resolution-title {
        font-size: 32px;
    }
    
    .resolution-lead {
        font-size: 18px;
    }
    
    .resolution-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resolution-pillar {
        padding: 30px 20px;
    }
    
    .pillar-number {
        font-size: 36px;
    }
    
    .resolution-pillar h3 {
        font-size: 18px;
    }
    
    .resolution-pillar p {
        font-size: 14px;
    }
    
    .btn-resolution {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════
   QUOTE SECTION - SIMPLE & ELEGANT
   ═══════════════════════════════════════════════════════════ */

.quote-section {
    padding: 120px 0;
    background: #FAFAFA;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 48px;
    color: #3A7BD5;
    margin-bottom: 40px;
    opacity: 0.3;
}

.main-quote {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 40px 0;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-name {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive;
    font-style: italic;
    color: #3A7BD5;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-section {
        padding: 80px 0;
    }
    
    .quote-icon {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .main-quote {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 13px;
    }
}


/* Author Logo Styling */
.author-logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
    display: inline-block;
}

.author-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
