/* ===================================
   XEMX Website - Modern Redesign
   Clean, Professional CSS
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #047857;
    --primary-light: #059669;
    --primary-dark: #065f46;
    --accent: #ffac3d;
    --accent-light: #ffc56e;
    --dark: #002637;
    --dark-secondary: #1a1a2e;
    --text: #383751;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
}

/* Typography */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 38, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Header Dark (for inner pages) */
.header-dark {
    background: var(--dark);
    position: relative;
}

.header-dark.scrolled {
    position: fixed;
    top: 0;
}

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 38, 55, 0.8) 0%,
        rgba(0, 38, 55, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    max-width: 600px;
}

.hero-card-content h2 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-card-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
}

.play-btn {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
    margin-left: 4px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 172, 61, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    padding-top: 20px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: -80px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.vm-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.vm-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--white);
}

.impact .section-title {
    color: var(--white);
}

.impact .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header .section-subtitle {
    max-width: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.impact-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.impact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ===================================
   FOCUS AREAS SECTION
   =================================== */
.focus {
    background: var(--off-white);
}

.focus-header {
    text-align: center;
    margin-bottom: 60px;
}

.focus-header .section-subtitle {
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.focus-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.focus-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
}

.focus-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.focus-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.technology {
    background: var(--white);
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-image {
    border-radius: var(--radius-xl);
}

.technology-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners {
    background: var(--light-gray);
    padding: 60px 0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
}

.partners-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll-partners 30s linear infinite;
}

.partners-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.partners-track img:hover {
    opacity: 1;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text);
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   CASE STUDIES SECTION
   =================================== */
.case-studies {
    background: var(--white);
}

.case-studies-header {
    text-align: center;
    margin-bottom: 48px;
}

.case-studies-header .section-subtitle {
    margin: 0 auto;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.case-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.case-content > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.7;
}

.case-content .btn-secondary {
    color: var(--white);
    border-color: var(--white);
    width: fit-content;
}

.case-content .btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.case-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.case-location svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Global Image Fixes - Remove white backgrounds behind rounded images */
img {
    background: transparent;
}

section img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact address {
    font-style: normal;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.contact-item a {
    color: var(--primary);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-grid,
    .technology-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        grid-template-columns: 1fr;
    }
    
    .case-image {
        order: -1;
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--dark);
        padding: 100px 32px 40px;
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 1.125rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero */
    .hero-card {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Impact */
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-card {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    
    .impact-number {
        flex-shrink: 0;
        font-size: 1.75rem;
    }
    
    /* Vision Mission Cards */
    .vision-mission-cards {
        margin-top: 24px;
        padding: 0;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-tagline {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .case-content {
        padding: 32px 24px;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* About Intro Section */
.about-intro-section {
    background: var(--white);
}

.about-intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro-header .section-title {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.7;
}

/* About Pillars */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.about-pillar {
    text-align: center;
    padding: 32px 24px;
}

.pillar-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.about-pillar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-pillar p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Tagline */
.about-tagline {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.08), rgba(4, 120, 87, 0.03));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(4, 120, 87, 0.15);
}

.about-tagline p {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.7;
    margin: 0;
}

.about-tagline strong {
    color: var(--primary);
}

/* Vision Mission Cards Grid */
.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 38, 55, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark);
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Exergy Section */
.exergy-section {
    background: var(--off-white);
}

.exergy-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exergy-header .section-subtitle {
    margin: 0 auto;
}

.exergy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.exergy-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.exergy-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.exergy-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.exergy-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.exergy-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.exergy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.team-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Advisor Section */
.advisor-section {
    margin-top: 60px;
    text-align: center;
}

.advisor-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 32px;
}

.advisor-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--off-white), var(--white));
    padding: 40px;
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.advisor-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-info h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.advisor-info .team-role {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.advisor-info p {
    color: var(--text-light);
    line-height: 1.7;
}

/* REC Section */
.rec-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    margin-top: 0;
}

.rec-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 32px;
}

.rec-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.rec-content .rec-logo {
    height: 80px;
    width: auto;
    background: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
}

.rec-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
}

/* REC Section (Alternative layout) */
.rec-logo {
    flex-shrink: 0;
}

.rec-logo img {
    height: 80px;
    width: auto;
}

/* ===================================
   PROJECTS PAGE STYLES
   =================================== */

.track-record-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.track-record-intro .section-title {
    text-align: center;
}

.track-record-intro .section-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

.flagship-section {
    background: var(--off-white);
}

.flagship-section .container {
    text-align: center;
}

.flagship-section .section-label {
    display: block;
    text-align: center;
}

.flagship-section .section-title {
    text-align: center;
}

.flagship-section .btn {
    display: inline-flex;
    margin: 0 auto 32px;
}

.flagship-section .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto 32px;
}

.flagship-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
}

.flagship-description {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.flagship-description p {
    color: var(--text);
    line-height: 1.8;
}

.flagship-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.highlight-item {
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
}

.highlight-item strong {
    color: var(--primary);
}

.flagship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: left;
}

.flagship-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.flagship-card .performance-grid {
    display: table !important;
    width: 100%;
    border-collapse: collapse;
}

.flagship-card .performance-grid .performance-item {
    display: table-row;
}

.flagship-card .performance-grid .performance-item:last-child .perf-label,
.flagship-card .performance-grid .performance-item:last-child .perf-value {
    border-bottom: none;
}

.flagship-card .performance-grid .perf-label {
    display: table-cell;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 16px 40px 16px 0;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    width: 120px;
    vertical-align: top;
}

.flagship-card .performance-grid .perf-value {
    display: table-cell;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 16px 0 16px 30px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.flagship-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.flagship-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin: 24px 0 16px;
}

.feature-grid {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.feature-label {
    color: var(--text-light);
    font-weight: 500;
}

.feature-value {
    color: var(--dark);
    text-align: right;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.performance-item .perf-label {
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 100px;
}

.performance-item .perf-value {
    color: var(--text);
    text-align: right;
}

.performance-item .label {
    color: var(--text-light);
    font-weight: 500;
}

.performance-item .value {
    color: var(--primary);
    font-weight: 600;
}

/* Upcoming Projects */
.upcoming-section {
    background: var(--white);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.upcoming-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.upcoming-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.upcoming-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-2xl);
    margin-bottom: 16px;
}

.upcoming-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.upcoming-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact CTA (Projects page) */
.contact-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta .section-label {
    color: var(--accent);
}

.contact-cta .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Flagship Image */
.flagship-image {
    margin-top: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.flagship-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Upcoming Cards Enhancement */
.upcoming-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.upcoming-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.upcoming-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.upcoming-card:hover .upcoming-image img {
    transform: scale(1.05);
}

.upcoming-content {
    padding: 28px;
}

.upcoming-content h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.upcoming-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Project Status Badge */
.upcoming-image {
    position: relative;
}

.project-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.upcoming-card.featured {
    border: 2px solid var(--primary);
}

.upcoming-card.featured .project-status {
    background: var(--primary);
    color: var(--white);
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.project-details .detail-item {
    padding: 8px 14px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.project-details .detail-item strong {
    color: var(--primary);
}

/* Plant Video Section */
.plant-video-section {
    background: var(--off-white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}

.plant-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   RESPONSIVE - ABOUT & PROJECTS
   =================================== */

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exergy-grid {
        grid-template-columns: 1fr;
    }
    
    .flagship-grid,
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
    
    .advisor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .advisor-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-pillar {
        padding: 24px 16px;
    }
    
    .vm-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-tagline {
        padding: 24px 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rec-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .flagship-highlights {
        flex-direction: column;
    }
    
    .highlight-item {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CAREERS PAGE STYLES
   =================================== */

.careers-section {
    background: var(--white);
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.8;
}

.careers-values h3,
.careers-benefits h3,
.careers-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.value-card h4 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text);
}

.careers-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.careers-cta h3 {
    color: var(--white);
}

.careers-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.careers-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.email-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.email-note a {
    color: var(--accent);
}

.email-note a:hover {
    text-decoration: underline;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-page-section {
    background: var(--off-white);
}

.contact-page-section .contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 32px;
}

/* Contact page specific form grid */
.contact-page-section .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* General form styling */
.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-page-section .form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page-section .contact-form .btn {
    grid-column: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-card h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.office-card address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.office-card address strong {
    color: var(--dark);
    display: block;
    margin-bottom: 8px;
}

/* Map Section */
.map-section {
    padding: 0 0 var(--section-padding);
    background: var(--off-white);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.map-overlay {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.map-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.map-overlay .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===================================
   RESPONSIVE - CAREERS & CONTACT
   =================================== */

@media (max-width: 768px) {
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-page-section .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .contact-page-section .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form .btn,
    .contact-page-section .contact-form .btn {
        grid-column: span 1;
        width: 100%;
    }
    
    .contact-page-section .contact-form-wrapper {
        padding: 24px;
    }
    
    .careers-cta {
        padding: 40px 24px;
    }
}

/* ===================================
   CASE STUDY PAGE STYLES
   =================================== */

.case-study-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-location svg {
    stroke: var(--accent);
}

/* Project Overview */
.case-overview {
    background: var(--off-white);
    padding: 60px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.overview-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.overview-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.overview-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.overview-content {
    display: flex;
    flex-direction: column;
}

.overview-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.overview-value {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
}

.overview-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Plant Features */
.plant-features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Plant Performance */
.plant-performance {
    background: var(--off-white);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.performance-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.performance-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.performance-card.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
}

.performance-card.highlight h3 {
    color: var(--dark);
    margin: 0;
    font-size: 1.5rem;
}

.performance-card.highlight p {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.performance-badge {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: var(--accent);
}

.performance-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.performance-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.performance-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section .section-label {
    color: var(--accent);
}

.cta-section .section-title {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - CASE STUDY
   =================================== */

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-card.highlight {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .overview-grid,
    .features-grid,
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-card.highlight {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    
    .cta-content p {
        max-width: none;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
