/* ============================================
   OUR STORY PAGE - INSTITUTIONAL SKYSCRAPER VIBES
   Epic. Powerful. Aligned. Professional.
   ============================================ */

:root {
    --primary-green: #A4D233;
    --dark-green: #8AB62A;
    --pure-black: #000000;
    --deep-black: #0A0B0F;
    --pure-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-gray: #6B7280;
    --border-gray: #E5E7EB;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
}

/* HERO - FULL SCREEN SKYSCRAPER BACKGROUND */
.story-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 40px 120px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=2000&q=80') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(164, 210, 51, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.story-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.story-hero .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
    margin-bottom: 32px;
    padding: 8px 20px;
    background: rgba(164, 210, 51, 0.1);
    border: 1px solid rgba(164, 210, 51, 0.3);
    border-radius: 100px;
}

.story-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--pure-white);
    margin-bottom: 40px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.story-hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* VIDEO SECTION - CINEMATIC */
.story-video-section {
    padding: 140px 40px;
    background: var(--deep-black);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0B0F 0%, #1A1B23 100%);
    padding: 80px;
}

.video-placeholder svg {
    margin-bottom: 40px;
}

.video-placeholder-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.video-placeholder-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    text-align: center;
    line-height: 1.6;
}

/* STORY SECTIONS - PERFECTLY ALIGNED */
.story-section {
    padding: 140px 40px;
    background: var(--deep-black);
}

.story-section.story-dark {
    background: #000000;
}

.story-section.story-values {
    background: var(--deep-black);
}

.story-section.story-future {
    background: linear-gradient(135deg, #000000 0%, #0A0B0F 100%);
    padding: 180px 40px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* STORY GRID - PERFECT ALIGNMENT */
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.story-grid.reverse .story-image {
    order: -1;
}

.story-content .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.story-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--pure-white);
    margin-bottom: 40px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.story-text p {
    margin-bottom: 28px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: var(--pure-white);
    font-weight: 700;
}

.story-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 40px;
    display: block;
}

/* STAT CARD - GLOWING GREEN */
.story-stat-card {
    background: linear-gradient(135deg, #A4D233 0%, #8AB62A 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(164, 210, 51, 0.4);
    position: relative;
}

.story-stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #A4D233, #8AB62A);
    border-radius: 24px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}

.story-stat-number {
    font-size: 120px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.story-stat-label {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.story-stat-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    max-width: 340px;
    margin: 0 auto;
}

/* MISSION CARD - ELEGANT QUOTE */
.story-mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 80px 60px;
    border-radius: 24px;
    backdrop-filter: blur(40px);
}

.story-mission-card h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-green);
    margin-bottom: 32px;
}

.story-mission-card p {
    font-size: 28px;
    line-height: 1.6;
    color: var(--pure-white);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 48px;
}

.story-signature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-signature-line {
    width: 240px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, transparent 100%);
}

.story-signature-name {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* SECTION HEADER - CENTERED & ALIGNED */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--pure-white);
    margin-bottom: 32px;
}

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

/* IMPACT GRID - 4 COLUMNS, PERFECTLY ALIGNED */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.impact-card {
    text-align: center;
    padding: 60px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(164, 210, 51, 0.2);
}

.impact-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.impact-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.impact-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* VALUES GRID - 4 COLUMNS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-8px);
}

.value-icon {
    margin-bottom: 32px;
}

.value-icon svg {
    width: 56px;
    height: 56px;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.value-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* FUTURE SECTION - POWERFUL CTA */
.story-future-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--pure-white);
    margin-bottom: 40px;
}

.story-future-text {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.story-future-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.story-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 60px;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 56px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: #000000;
    box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(164, 210, 51, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

/* FOOTER - CLEAN & PROFESSIONAL */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 100px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 120px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 32px;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-green);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--dark-green);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-hero-title {
        font-size: 56px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-grid.reverse .story-image {
        order: 0;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        padding: 140px 24px 80px;
        background-attachment: scroll;
    }
    
    .story-hero-title {
        font-size: 40px;
    }
    
    .story-hero-subtitle {
        font-size: 18px;
    }
    
    .story-video-section {
        padding: 80px 24px;
    }
    
    .story-section {
        padding: 80px 24px;
    }
    
    .story-section.story-future {
        padding: 100px 24px;
    }
    
    .story-title {
        font-size: 36px;
    }
    
    .story-text {
        font-size: 16px;
    }
    
    .story-stat-card {
        padding: 60px 40px;
    }
    
    .story-stat-number {
        font-size: 80px;
    }
    
    .story-mission-card {
        padding: 48px 32px;
    }
    
    .story-mission-card p {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-card {
        padding: 48px 24px;
    }
    
    .impact-number {
        font-size: 56px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 48px 32px;
    }
    
    .story-future-title {
        font-size: 40px;
    }
    
    .story-future-text {
        font-size: 18px;
    }
    
    .story-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        padding: 20px 40px;
        font-size: 16px;
    }
    
    .footer {
        padding: 60px 24px 32px;
    }
    
    .footer-grid {
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
