/* ===================================
   ECOLOSOPHY STRATEGIC ROADMAP
   =================================== */

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

:root {
    --teal: #4FA9A6;
    --teal-dark: #2E8B88;
    --teal-light: #7DC5C2;
    --black: #000000;
    --charcoal: #1d1d1f;
    --gray: #86868b;
    --white: #FFFFFF;
    --cream: #f5f5f7;
    --red: #D32F2F;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

section {
    padding: 6rem 2rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

/* HERO */
.roadmap-hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
}

.roadmap-logo {
    width: 180px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.roadmap-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 4rem;
    opacity: 0.9;
    color: var(--teal-light);
    line-height: 1.8;
}

.hero-journey {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.journey-point {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.journey-point.current {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
}

.journey-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.journey-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.journey-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.journey-arrow {
    font-size: 3rem;
    color: rgba(255,255,255,0.6);
}

/* TESLA STRATEGY */
.tesla-strategy {
    background: var(--cream);
}

.tesla-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tesla-phase {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tesla-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.phase-active {
    border: 3px solid var(--teal);
    background: var(--teal-dark);
    color: var(--white);
}

.phase-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.phase-active .phase-number {
    background: var(--white);
    color: var(--teal-dark);
}

.tesla-phase h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.phase-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.phase-active .phase-details {
    border-bottom-color: rgba(255,255,255,0.2);
}

.phase-product {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.phase-active .phase-price {
    color: var(--white);
}

.phase-market {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.phase-status {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dark);
    margin-top: 0.5rem;
}

.phase-active .phase-status {
    color: var(--teal-light);
}

.phase-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    flex: 1;
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--teal);
}

.phase-active .metric-value {
    color: var(--white);
}

/* CURRENT STATE */
.current-state {
    background: var(--charcoal);
    color: var(--white);
}

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

.current-box {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.current-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.current-box h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.current-stat {
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
}

.current-box p {
    font-size: 1rem;
    opacity: 0.8;
}

.current-breakdown {
    max-width: 1200px;
    margin: 4rem auto 0;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 16px;
}

.current-breakdown h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.breakdown-visual {
    display: flex;
    gap: 1rem;
    height: 80px;
    align-items: flex-end;
}

.breakdown-bar {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
}

.fulfillment-evolution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.evo-stage {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.evo-stage.future {
    background: rgba(79, 169, 166, 0.2);
    border: 2px solid var(--teal-light);
}

.evo-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.evo-cost {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
}

.evo-cogs {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.evo-margin {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-light);
}

.evo-arrow {
    font-size: 3rem;
    color: var(--teal-light);
}

.evo-impact {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(79, 169, 166, 0.1);
    border-radius: 8px;
}

/* MANUFACTURING ROADMAP */
.manufacturing-roadmap {
    background: var(--white);
}

.cost-evolution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
}

.cost-stage {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    min-width: 300px;
    flex: 1;
}

.stage-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.stage-volume {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.stage-cogs {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.cogs-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-item {
    font-size: 0.95rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 8px;
}

.cost-arrow {
    font-size: 3rem;
    color: var(--teal);
}

.margin-impact {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
}

.margin-impact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.margin-impact canvas {
    height: 400px !important;
}

/* PRODUCT PIPELINE */
.product-pipeline {
    background: var(--cream);
}

.pipeline-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pipeline-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.pipeline-date {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.pipeline-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.launched .pipeline-badge {
    background: var(--teal);
    color: var(--white);
}

.upcoming .pipeline-badge {
    background: var(--teal-light);
    color: var(--charcoal);
}

.future .pipeline-badge {
    background: var(--gray);
    color: var(--white);
}

.pipeline-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pipeline-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.pipeline-item p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.pipeline-tam {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: rgba(79, 169, 166, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* EXPO & MARKETING */
.expo-marketing {
    background: var(--white);
}

.gtm-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gtm-channel {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
}

.gtm-channel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.expo-list,
.digital-breakdown,
.b2b-targets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expo-item,
.digital-item,
.b2b-segment {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.expo-name,
.digital-channel {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.expo-date,
.digital-budget {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.expo-goal,
.digital-goal {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.b2b-segment h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.b2b-segment p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.b2b-goal {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* MILESTONES */
.milestones-section {
    background: var(--cream);
}

.milestones-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.milestone {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.milestone-month {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.milestone h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.milestone ul {
    list-style: none;
    padding: 0;
}

.milestone li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.milestone li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* PROJECTIONS */
.projections-section {
    background: var(--white);
}

.projections-chart-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
}

.projections-chart-container canvas {
    height: 400px !important;
}

.projections-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.projections-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.projections-table th {
    background: var(--teal-dark);
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
}

.projections-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--cream);
}

.total-row {
    background: var(--cream);
    font-weight: 700;
}

/* FUNDING */
.funding-section {
    background: var(--charcoal);
    color: var(--white);
}

.funding-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.funding-allocation h3,
.funding-roi h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.allocation-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.allocation-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    flex: 0 0 200px;
    font-size: 1rem;
    font-weight: 600;
}

.bar-visual {
    height: 40px;
    border-radius: 8px;
    transition: width 0.6s ease;
}

.bar-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--teal-light);
    min-width: 80px;
    text-align: right;
}

.roi-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

.roi-period {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.roi-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.roi-multiple {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal-light);
}

/* COMPETITIVE */
.competitive-section {
    background: var(--cream);
}

.competitive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.comp-comparison h3,
.comp-advantages h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.comp-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comp-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-name {
    flex: 0 0 150px;
    font-size: 1rem;
    font-weight: 600;
}

.comp-bar-visual {
    height: 40px;
    background: var(--gray);
    border-radius: 8px;
}

.our-bar .comp-bar-visual {
    background: var(--teal);
}

.our-bar .comp-name {
    font-weight: 900;
    color: var(--teal-dark);
}

.comp-price {
    font-size: 1.3rem;
    font-weight: 900;
    min-width: 80px;
    text-align: right;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.advantage-text p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-btn.primary {
    background: var(--white);
    color: var(--teal-dark);
}

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

.cta-footer {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* VALIDATION BANNER */
.validation-banner {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(79, 169, 166, 0.2) 0%, rgba(46, 139, 136, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid var(--teal);
}

.validation-banner h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--teal-light);
}

.validation-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.val-stat-mini {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
}

.val-mini-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
}

.val-mini-label {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.3;
}

.validation-insight {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    border-left: 4px solid var(--teal-light);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .tesla-phases,
    .pipeline-timeline,
    .milestones-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gtm-channels,
    .current-grid,
    .validation-stats-row {
        grid-template-columns: 1fr;
    }
    
    .competitive-grid,
    .funding-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }
    
    .roadmap-hero h1 {
        font-size: 3rem;
    }
    
    .tesla-phases,
    .pipeline-timeline,
    .milestones-timeline {
        grid-template-columns: 1fr;
    }
    
    .hero-journey {
        flex-direction: column;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .cost-evolution {
        flex-direction: column;
    }
    
    .cost-arrow {
        transform: rotate(90deg);
    }
}