:root {
    /* Color Palette: Light, Clean, AgTech */
    --color-chlorophyll-green: #2e7d32;
    --color-chlorophyll-green-glow: rgba(46, 125, 50, 0.2);
    --color-earth-brown: #5d4037;
    --color-golden-wheat: #f5c469;
    --color-accent-orange: #e65100;
    --color-tech-white: #ffffff;
    --color-tech-dark: #1b2e1b;
    --color-tech-dark-transparent: rgba(255, 255, 255, 0.8);
    --color-light-bg: #ffffff;
    --color-alt-bg: #f4f7f4;
    --color-text-main: #2c3e2c;
    --color-text-muted: #627262;
    
    --font-main: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--color-light-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end; /* Align bottom */
    justify-content: flex-start; /* Align left */
    overflow: hidden;
    padding-bottom: 5rem;
    padding-left: 4rem;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.2) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: var(--color-chlorophyll-green);
    text-shadow: 0 0 10px var(--color-chlorophyll-green-glow);
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Adjust size based on preference */
    width: auto;
    margin-right: 10px; /* Space between logo image and text */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-tech-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-chlorophyll-green);
}

/* Hero Content */
.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 800px;
    position: relative;
}

.main-title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-tech-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #4ade80; /* Brighter green for contrast against dark video overlay */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-filled-green {
    background-color: var(--color-chlorophyll-green);
    color: var(--color-tech-white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
}

.btn-filled-green:hover {
    background-color: var(--color-tech-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--color-text-main);
    padding: 1rem 2.5rem;
    font-weight: 700;
}

.btn-outline-dark:hover {
    background: var(--color-text-main);
    color: var(--color-tech-white);
    transform: translateY(-3px);
}

.product-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.model-info-block {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.model-info-block h2 {
    font-size: 3rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.model-info-block p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.model-footer-links {
    margin-top: 1.5rem;
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-main);
    text-decoration: underline;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-chlorophyll-green), transparent);
    animation: scroll-anim 2s infinite ease-in-out;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* General Section Styles */
.section {
    padding: 8rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-alt {
    background-color: var(--color-alt-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-chlorophyll-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--color-light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(46, 125, 50, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    letter-spacing: 0.05rem;
}

.product-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Science Section */
#science.parallax-bg {
    background: #7a8b82; /* Slate light green background */
    padding: 8rem 5%;
}

#science .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#science .section-header h2 {
    color: #ffffff; /* White title like screenshot */
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#science .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    max-width: 600px;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.science-card {
    background: #ffffff;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.science-card-header {
    background: var(--color-alt-bg);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.science-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.science-card:hover .science-img {
    transform: scale(1.05);
}

.science-card-body {
    padding: 0 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.science-card h3 {
    color: #1a2a3a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.science-divider {
    width: 100%;
    height: 2px;
    background-color: #82cc9b; /* Light green line */
    margin: 0.5rem 0 1rem 0;
}

.science-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.science-btn {
    display: inline-block;
    background: #243444; /* Dark slate button */
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.3s;
}

.science-btn:hover {
    background: #15202b;
}

@media (max-width: 900px) {
    .science-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent-orange);
    text-shadow: 0 0 10px rgba(0,0,0,0.5); /* extra readibility on parallax */
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--color-light-bg);
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.85rem;
}

/* Sustainability Section */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.sust-card {
    background: var(--color-light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-chlorophyll-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sust-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sust-card:hover::before {
    transform: scaleX(1);
}

.sust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.sust-card h3 {
    color: var(--color-text-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.sust-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.benefits-grid-section {
    padding-top: 0;
}

.footer-margin-top {
    margin-top: 4rem;
}

/* Benefits Section Layout */
.benefits-layout-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: start;
}

.benefits-image-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: block;
}

.benefits-side-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 4rem 5% 4rem 4rem;
}

@media (max-width: 1200px) {
    .benefits-layout-container {
        grid-template-columns: 40% 60%;
    }
}

@media (max-width: 1024px) {
    .benefits-layout-container {
        grid-template-columns: 1fr;
    }
    .benefits-image-wrapper {
        position: relative;
        top: 0;
        height: 60vh;
        margin-bottom: 2rem;
    }
    .benefits-grid {
        padding: 0 5% 4rem 5%;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.bf-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.bf-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 125, 50, 0.1);
}

.bf-number {
    font-size: 4rem;
    font-weight: 800;
    color: #4ade80; /* vibrant green */
    opacity: 0.3; /* slight transparency for a sleek look */
    line-height: 0.8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    font-family: var(--font-main);
}

.bf-item h4 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.bf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bf-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bf-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-chlorophyll-green);
}

.bf-list li strong {
    color: #2d3748;
    font-weight: 700;
}

.benefits-intro, .benefits-footer {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.bf-card {
    background: var(--color-light-bg);
    padding: 3rem;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bf-card.highlight {
    background: linear-gradient(135deg, var(--color-alt-bg) 0%, #fff 100%);
    border-left: 5px solid var(--color-chlorophyll-green);
}

.bf-card.important {
    border-left: 5px solid var(--color-accent-orange);
    background: #fffafa;
}

.bf-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-text-main);
}
.bf-card p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}
.bf-card p:last-child {
    margin-bottom: 0;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--color-chlorophyll-green);
    color: var(--color-chlorophyll-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-outline:hover {
    background: var(--color-chlorophyll-green);
    color: var(--color-light-bg);
    box-shadow: 0 0 15px var(--color-chlorophyll-green-glow);
}

.text-accent {
    color: var(--color-accent-orange);
}

.benefits-list {
    margin-left: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Benefits Hero Section */
.benefits-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: url('images/IMG-20250605-WA0004.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    color: var(--color-tech-white);
}

.benefits-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.75); /* Dark overlay to make text readable */
    z-index: 1;
}

.benefits-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.benefits-hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--color-tech-white);
}

.benefits-hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.benefits-hero-content .bf-card {
    background: rgba(20, 30, 20, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--color-tech-white);
    max-width: 800px;
}

.benefits-hero-content .bf-card h3 {
    color: var(--color-chlorophyll-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefits-hero-content .bf-card p {
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits-hero-content .bf-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content { padding: 0 5%; }
    .section { padding: 5rem 5%; }
}

/* Full-Width Sustainability Section */
.sust-full-width-section {
    padding: 8rem 0 0 0;
}

.sust-full-width-section .section-header {
    padding: 0 5%;
    margin-bottom: 4rem;
}

.sust-edge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0;
    padding: 0;
}

.sust-edge-card {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.sust-edge-card:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Elegant Gray & Green tones */
.bg-slate { background-color: #27303f; }
.bg-forest { background-color: #233e30; }
.bg-slate-light { background-color: #374253; }
.bg-forest-dark { background-color: #172a1e; }

.sust-pro-icon {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sust-svg {
    width: 32px;
    height: 32px;
    color: var(--color-chlorophyll-green, #4ade80);
}

.sust-edge-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.sust-edge-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.benefits-list-pro {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
}

.benefits-list-pro li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefits-list-pro li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-chlorophyll-green, #4ade80);
    font-weight: bold;
}

.sust-mt-10 {
    margin-top: 10px;
}
.sust-mt-15 {
    margin-top: 15px;
}

@media (max-width: 1200px) {
    .sust-edge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sust-edge-grid {
        grid-template-columns: 1fr;
    }
    .sust-edge-card {
        padding: 4rem 2rem;
    }
}

/* Removed image-overlay-wrapper and overlay-request-btn as per repositioning request */

/* Gallery Hero Video Background */
.gallery-hero {
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* BGR200 Stacked Layout */
.model-section.stacked-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.model-visual-single {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.model-header.stacked-content {
    max-width: 900px;
    margin: 0 auto;
}

.model-header.stacked-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.model-header.stacked-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.model-details-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.model-details-full .technical-table {
    width: 100%;
    margin: 0 auto;
}

/* Global Footer */
.global-footer {
    background: var(--color-tech-dark);
    color: var(--color-tech-white);
    padding: 6rem 5% 2rem;
    font-family: var(--font-main);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-golden-wheat);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-contact a {
    color: var(--color-tech-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover, .footer-contact a:hover {
    opacity: 1;
    color: var(--color-golden-wheat);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}


/* Removed reveal-on-scroll animations to ensure visibility */
.delay-1, .delay-2, .delay-3 { transition-delay: 0s !important; }
