/* Why Different & Investor Pages Styling */

/* Hero Section */
.hero-alt {
    background: linear-gradient(135deg, #2c5aa0 0%, #5c8dd6 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero-content-with-image {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-text-content {
    text-align: left;
}

.hero-alt h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-alt h1 {
        font-size: 2.5rem;
    }
}

/* Differentiators Section */
.differentiators {
    background: linear-gradient(135deg, #2c5aa0 0%, #5c8dd6 100%);
    color: white;
    padding: 4rem 0;
}

.differentiators h2,
.differentiators h3,
.differentiators .diff-number {
    color: white;
}

.differentiators p,
.differentiators li {
    color: rgba(255, 255, 255, 0.95);
}

.differentiators .diff-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.diff-item {
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.diff-item.final {
    border-bottom: none;
}

.diff-number {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.diff-item h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.diff-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.diff-item .emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.diff-summary {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 2rem !important;
}

.tagline {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 2rem !important;
}

/* Comparison Layouts */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.comparison-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.comparison-col.highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comparison-col ul {
    list-style: none;
    padding-left: 0;
}

.comparison-col ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.comparison-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.comparison-col.highlight ul li::before {
    content: "✓";
    color: #90EE90;
}

/* Privacy Grid */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-point {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefits-list li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Home Coverage */
.home-coverage {
    margin: 2rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.room {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: white;
}

/* Questions List */
.questions-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.questions-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

/* Setup Steps */
.setup-steps {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.setup-steps p {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin: 0.5rem 0 !important;
    color: white !important;
}

/* Tech Stack */
.tech-stack {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 12px;
}

.tech-stack h3 {
    color: white;
    margin-bottom: 1rem;
}

.tech-stack ul {
    list-style: none;
    padding-left: 0;
}

.tech-stack ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.scale-info {
    font-size: 1.2rem !important;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0 !important;
}

/* Two Column Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.two-col-grid h3 {
    color: white;
    margin-bottom: 1rem;
}

.two-col-grid ul {
    list-style: none;
    padding-left: 0;
}

.two-col-grid ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.two-col-grid ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90EE90;
    font-weight: bold;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.impact-item h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: white !important;
}

.closing-statement {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-align: center;
    color: white !important;
    margin-top: 3rem !important;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #5c8dd6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Avoid List */
.avoid-list {
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.avoid-list li {
    padding: 0.75rem 1.5rem;
    background: #fed7d7;
    color: #c53030;
    border-radius: 8px;
    font-weight: 600;
}

/* INVESTOR PAGE STYLES */

.investor-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.content-section {
    padding: 4rem 0;
}

.content-section.bg-light {
    background: #f7fafc;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Market Insights */
.market-insight {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.market-insight.highlight {
    background: linear-gradient(135deg, #2c5aa0 0%, #5c8dd6 100%);
    color: white;
    border-left: none;
}

.market-insight.highlight h3 {
    color: white;
}

.market-insight ul {
    list-style: none;
    padding-left: 0;
}

.market-insight ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.market-insight ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.market-insight.highlight ul li::before {
    content: "✓";
    color: white;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    line-height: 1.6;
    color: #4a5568;
}

/* Revenue Streams */
.revenue-streams {
    margin: 3rem 0;
}

.stream {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.stream.highlight {
    background: #f7fafc;
    border-left: 4px solid #48bb78;
}

.stream h3 {
    margin-bottom: 1rem;
}

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

.stream ul li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

/* Financial Projection */
.financial-projection {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.projection-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.projection-table th,
.projection-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.projection-table thead th {
    background: #2d3748;
    color: white;
    font-weight: 600;
}

.projection-table tbody tr:hover {
    background: #f7fafc;
}

.projection-table .highlight-row {
    background: #2c5aa0;
    color: white;
    font-weight: 600;
}

.projection-table .highlight-row:hover {
    background: #5568d3;
}

.note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
}

/* Timing Factors */
.timing-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.factor {
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.factor h3 {
    margin-bottom: 1rem;
}

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

.factor ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.factor ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
}

/* Traction Timeline */
.traction-timeline {
    margin: 3rem 0;
}

.milestone {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    padding-left: 5rem;
}

.milestone.completed {
    background: #c6f6d5;
    border-left: 4px solid #48bb78;
}

.milestone.current {
    background: #bee3f8;
    border-left: 4px solid #4299e1;
}

.milestone.future {
    background: #f7fafc;
    border-left: 4px solid #cbd5e0;
}

.milestone-marker {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.milestone h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.milestone p {
    margin: 0;
    color: #4a5568;
}

/* Investor CTA */
.investor-cta {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.investment-terms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.term {
    text-align: center;
    padding: 1rem;
}

.term strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.confidential-note {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .timing-factors {
        grid-template-columns: 1fr;
    }
    
    .investment-terms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-alt h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .diff-item h2 {
        font-size: 1.8rem;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
