/* ============================================
   DOW ELEF AUTO EV - Main Stylesheet
   Brand Colors from Logo:
   Primary Green: #4CAF50 / #5cb85c
   Dark Charcoal: #2d3436
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --primary-pale: #E8F5E9;
    --secondary: #2d3436;
    --secondary-light: #636e72;
    --dark: #1a1a2e;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #95a5a6;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #ecf0f1;
    --border: #dfe6e9;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --success: #27ae60;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

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

/* --- Top Bar --- */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: rgba(255,255,255,0.85); font-size: 0.82rem; }
.top-bar-left a:hover { color: var(--primary-light); }
.top-bar-left i { margin-right: 5px; color: var(--primary); }

.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    color: rgba(255,255,255,0.7);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.75rem;
}
.top-bar-right a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* --- Navbar --- */
.navbar {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); background: var(--primary-pale); }

.nav-menu .fa-chevron-down { font-size: 0.65rem; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0;
    display: block;
}

.dropdown li a:hover { background: var(--primary-pale); color: var(--primary); }

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px; height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Flash Messages --- */
.flash-message {
    padding: 14px 0;
    font-size: 0.92rem;
    position: relative;
}

.flash-message .container { display: flex; justify-content: space-between; align-items: center; }
.flash-success { background: var(--primary-pale); color: var(--primary-dark); }
.flash-error { background: #fdecea; color: var(--danger); }
.flash-info { background: #e3f2fd; color: var(--info); }

.flash-close {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: inherit; opacity: 0.7;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span { color: var(--primary); }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
}

/* Hero Car Showcase */
.hero-car-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-car-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    aspect-ratio: 16/10;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-car-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(76,175,80,0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}

.hero-overlay-badge i {
    color: #fff;
}

.hero-car-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-car-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    aspect-ratio: 16/10;
    transition: var(--transition);
    cursor: pointer;
}

.hero-car-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-car-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76,175,80,0.4);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* --- Section Styles --- */
.section {
    padding: 80px 0;
}

.section-alt { background: var(--off-white); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-green { background: var(--primary); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-header .overline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* --- Mobility Solutions Grid (Homepage) --- */
.mobility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.mobility-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.mobility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.mobility-card .icon {
    width: 64px; height: 64px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.mobility-card:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.mobility-card h4 { font-size: 1rem; margin-bottom: 8px; }
.mobility-card p { font-size: 0.85rem; color: var(--text-light); }

/* --- Vehicle Cards --- */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.vehicle-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-pale), var(--light-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vehicle-card-image img {
    width: 85%;
    max-height: 90%;
    object-fit: contain;
}

.vehicle-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.vehicle-card-body { padding: 24px; }
.vehicle-card-body .category { color: var(--primary); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.vehicle-card-body h3 { margin: 6px 0 10px; }
.vehicle-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.vehicle-spec {
    text-align: center;
}

.vehicle-spec .value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.vehicle-spec .label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-card-actions {
    display: flex;
    gap: 10px;
}

.vehicle-card-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 10px 16px; }

/* --- Vehicle Detail Page --- */
.vehicle-detail { padding: 60px 0; }

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vehicle-gallery {
    background: linear-gradient(135deg, var(--primary-pale), var(--light-gray));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.vehicle-info .category-tag {
    display: inline-block;
    background: var(--primary-pale);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.vehicle-info h1 { margin-bottom: 8px; }
.vehicle-info .tagline { color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; }
.vehicle-info .price-display { font-size: 1.4rem; color: var(--primary); font-weight: 700; margin-bottom: 24px; }
.vehicle-info .description { color: var(--text-light); margin-bottom: 30px; line-height: 1.8; }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.spec-item {
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.spec-item .spec-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.spec-item .spec-value { font-weight: 700; color: var(--secondary); font-size: 1rem; margin-top: 4px; }

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleY(1); }

.service-card .icon {
    width: 56px; height: 56px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; }

/* --- Charging Network --- */
.charging-map-container {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.charging-stations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.station-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.station-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.station-card .station-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-operational { background: var(--primary-pale); color: var(--primary-dark); }
.status-coming_soon { background: #fff3e0; color: #e65100; }
.status-maintenance { background: #fce4ec; color: var(--danger); }

.station-card h4 { margin: 10px 0 6px; }
.station-card .address { color: var(--text-light); font-size: 0.88rem; }
.station-card .station-info { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; }

/* --- Why EV Section --- */
.why-ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-ev-card {
    text-align: center;
    padding: 30px;
}

.why-ev-card .icon {
    width: 72px; height: 72px;
    background: rgba(76,175,80,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
}

.section-dark .why-ev-card .icon { background: rgba(76,175,80,0.2); }

.why-ev-card h4 { margin-bottom: 10px; }
.why-ev-card p { color: var(--text-light); font-size: 0.9rem; }
.section-dark .why-ev-card h4 { color: var(--white); }
.section-dark .why-ev-card p { color: rgba(255,255,255,0.7); }

/* --- TCO Calculator --- */
.tco-calculator {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.tco-calculator h3 { text-align: center; margin-bottom: 30px; }

.tco-result {
    background: var(--primary-pale);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.tco-result .savings {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

/* --- Fleet Page --- */
.fleet-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fleet-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fleet-benefit .icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.fleet-benefit h4 { margin-bottom: 6px; font-size: 1rem; }
.fleet-benefit p { color: var(--text-light); font-size: 0.88rem; }

/* --- About Page --- */
.about-hero {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
}

.value-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.88rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.team-card .avatar {
    width: 80px; height: 80px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 0.85rem; font-weight: 500; }

/* --- Sustainability Page --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.impact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.impact-card .big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.impact-card .label { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead { background: var(--secondary); color: var(--white); }
.comparison-table th { padding: 16px 20px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .highlight { color: var(--primary); font-weight: 700; }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(76,175,80,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

.contact-item .label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.contact-item .value { color: var(--white); font-weight: 500; }
.contact-item a { color: var(--white); }
.contact-item a:hover { color: var(--primary-light); }

/* --- Forms --- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h3 { margin-bottom: 24px; }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.form-group .required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Lead Form (Inline) --- */
.lead-form-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px 0;
}

.lead-form-section h2 { color: var(--white); }
.lead-form-section p { color: rgba(255,255,255,0.85); }

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lead-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.lead-form-card h3 { color: var(--secondary); margin-bottom: 20px; }

/* --- Newsletter --- */
.newsletter-section {
    background: var(--secondary);
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 { color: var(--white); margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.92rem;
    width: 300px;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.15); }

.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.newsletter-form button:hover { background: var(--primary-dark); }

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 40px; margin-bottom: 10px; }
.footer-tagline { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.footer-about { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px !important;
}
.footer-contact li i { color: var(--primary); margin-top: 4px; }
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-brand { color: rgba(255,255,255,0.35); margin-top: 6px; }
.footer-brand strong { color: var(--primary); }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(76,175,80,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* --- Page Headers (interior pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 { color: var(--white); position: relative; z-index: 2; margin-bottom: 10px; }

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    position: relative;
    z-index: 2;
}

.breadcrumb li + li::before { content: '/'; color: rgba(255,255,255,0.4); margin-right: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .current { color: var(--primary-light); }

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }

/* --- Tabs --- */
.tabs {
    display: flex;
    gap: 4px;
    background: var(--light-gray);
    padding: 4px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.tab-btn.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.tab-btn:hover { color: var(--primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Timeline / Roadmap --- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px; top: 0; bottom: 0;
    width: 2px;
    background: var(--primary-pale);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 6px;
    width: 16px; height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--primary-pale);
}

.timeline-item h4 { color: var(--primary); margin-bottom: 6px; }
.timeline-item p { color: var(--text-light); font-size: 0.92rem; }

/* --- Testimonials Placeholder --- */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.testimonial-card .quote { font-style: italic; color: var(--text-light); font-size: 1rem; margin-bottom: 16px; line-height: 1.8; }
.testimonial-card .author { font-weight: 600; color: var(--secondary); }
.testimonial-card .author-role { font-size: 0.82rem; color: var(--text-muted); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { max-width: 500px; margin: 50px auto 0; }
    .hero-visual { display: none; }
    .vehicle-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .lead-form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-content { justify-content: flex-end; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.open { right: 0; }

    .nav-menu a {
        padding: 14px 16px;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--off-white);
        border-radius: 0;
        padding: 0;
    }

    .dropdown li a { padding-left: 36px; }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
        display: block !important;
    }

    .nav-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        display: none;
    }

    .nav-overlay.open { display: block; }

    .hero { min-height: auto; padding: 60px 0; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-stat .number { font-size: 1.4rem; }

    .section { padding: 50px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; }
    .newsletter-form input { flex: 1; width: auto; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
    .mobility-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    .brand-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .image-showcase { grid-template-columns: 1fr 1fr; }
    .solution-features { grid-template-columns: 1fr; }
}

/* ============================================
   Brand Cards (Corporate Ecosystem)
   ============================================ */

.brand-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.brand-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 30px;
    transition: var(--transition);
    color: var(--text);
    text-decoration: none;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    color: var(--text);
}

.brand-card-main {
    background: linear-gradient(135deg, var(--primary-pale), #f0faf0);
    border-color: var(--primary-light);
}

.brand-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.brand-card:hover .brand-card-icon {
    background: var(--primary);
    color: var(--white);
}

.brand-card-content { flex: 1; }
.brand-card-content h3 { margin-bottom: 2px; font-size: 1.25rem; }

.brand-domain {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.brand-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-tags span {
    background: var(--primary-pale);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}

.brand-card-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.brand-card:hover .brand-card-arrow { opacity: 1; transform: translateX(4px); }

/* --- Pillars Grid --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.pillar-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pale);
    line-height: 1;
    margin-bottom: 12px;
}

.pillar-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.pillar-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }

.pillar-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pillar-link:hover { gap: 10px; }

/* --- Solution Sections (Solutions Page) --- */
.solution-section { margin-bottom: 20px; }

.solution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.solution-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: var(--primary-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.solution-header h2 { margin-bottom: 0; }

.solution-domain {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.solution-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.solution-feature:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.solution-feature h4 { margin-bottom: 10px; }
.solution-feature p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.feature-highlights {
    list-style: none;
    margin-top: 12px;
}

.feature-highlights li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.feature-highlights li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.75rem;
}

/* --- Image Showcase --- */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.image-showcase.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.showcase-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img { transform: scale(1.05); }

.showcase-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
}

.showcase-item.tall { grid-row: span 2; aspect-ratio: auto; }
.showcase-item.wide { grid-column: span 2; }

/* --- Hero with Image Background --- */
.hero-image-bg {
    position: relative;
    overflow: hidden;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(45,52,54,0.75) 50%, rgba(56,142,60,0.6) 100%);
    z-index: 1;
}

.hero-image-bg .hero-bg-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
}

/* --- Vehicle Image Cards (used in solutions) --- */
.vehicle-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.vehicle-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.vehicle-img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.vehicle-img-card .img-wrapper {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-pale), var(--light-gray));
}

.vehicle-img-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vehicle-img-card .img-info {
    padding: 16px 20px;
}

.vehicle-img-card .img-info h4 { font-size: 1rem; margin-bottom: 4px; }
.vehicle-img-card .img-info p { font-size: 0.82rem; color: var(--text-muted); }

/* --- Innovation Showcase (full-bleed visual section) --- */
.innovation-showcase {
    padding: 0;
    background: var(--dark);
}

.innovation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4px;
    min-height: 540px;
}

.innovation-feature {
    position: relative;
    overflow: hidden;
}

.innovation-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.innovation-feature:hover img {
    transform: scale(1.04);
}

.innovation-feature-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.6) 60%, transparent 100%);
    color: var(--white);
}

.innovation-feature-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 12px 0 10px;
    max-width: 480px;
}

.innovation-feature-overlay p {
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.innovation-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76,175,80,0.95);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.innovation-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.innovation-card-img {
    position: relative;
    overflow: hidden;
}

.innovation-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.innovation-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, transparent 100%);
    color: var(--white);
}

.innovation-card-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 8px;
}

@media (max-width: 992px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .innovation-feature {
        min-height: 350px;
    }
    .innovation-side {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
    .innovation-card-img {
        min-height: 250px;
    }
    .innovation-feature-overlay {
        padding: 24px;
    }
    .innovation-feature-overlay h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .innovation-side {
        grid-template-columns: 1fr;
    }
}

/* --- Story Section (split image+content rows) --- */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.story-grid-reverse .story-visual {
    order: 0;
}

.story-content .overline {
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-content h2 {
    margin-bottom: 16px;
}

.story-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-list {
    list-style: none;
    padding: 0;
}

.story-list li {
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.story-list i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.story-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
    position: relative;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-visual:hover img {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    .story-grid-reverse .story-visual {
        order: -1;
    }
}
