/* LetzPocket GTM Strategy Website - Brand Colors: Navy (#2C3E50) & Coral (#FF6B6B) */

/* CSS Variables */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #FF6B6B;
    --accent-color: #FF8787;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card i {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.bg-light {
    background: var(--bg-light);
}

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

.section-header i {
    width: 64px;
    height: 64px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Market Grid */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.market-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    grid-column: span 2;
}

.market-card.highlight h3,
.market-card.highlight h4 {
    color: white;
}

.market-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.market-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.chart-container {
    position: relative;
    height: 300px;
    margin: 2rem 0;
}

.chart-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.stat-list {
    list-style: none;
}

.stat-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.stat-list i {
    width: 20px;
    height: 20px;
    color: var(--success-color);
}

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

.metric {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.metric i {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric p {
    font-size: 0.9rem;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.highlight-box i {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    color: rgba(255,255,255,0.95);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.badge-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error-color);
}

.icon-success {
    color: var(--success-color);
}

.icon-warning {
    color: var(--warning-color);
}

.icon-error {
    color: var(--error-color);
}

/* Cost Comparison */
.cost-comparison {
    margin-top: 4rem;
}

.cost-comparison h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.savings-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.savings-highlight i {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.savings-highlight h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.savings-highlight p {
    color: rgba(255,255,255,0.95);
    margin: 0;
}

/* Strategy Phases */
.strategy-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.phase-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.phase-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.phase-card h3 {
    color: var(--primary-color);
    margin-top: 1rem;
}

.phase-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.phase-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.phase-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.phase-card li i {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.phase-kpi {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

/* Channel Mix */
.channel-mix {
    margin-top: 4rem;
}

.channel-mix h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.channel-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.channel-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.channel-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.channel-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.channel-budget {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.channel-card ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.channel-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.channel-metric {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Influencer Grid */
.influencer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.influencer-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.influencer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.influencer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.influencer-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.influencer-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.influencer-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.influencer-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.influencer-stats i {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.influencer-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.influencer-pricing {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-range i {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.campaign-type {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Influencer ROI */
.influencer-roi {
    margin-top: 4rem;
}

.influencer-roi h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.roi-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.roi-card i {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.roi-card h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.roi-card p {
    color: var(--text-light);
    margin: 0;
}

.campaign-timeline {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.campaign-timeline h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-phase {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.timeline-phase h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-phase p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-phase .budget {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Influencer Pricing Guide */
.influencer-pricing-guide {
    margin-top: 4rem;
}

.influencer-pricing-guide h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.tier-card.highlight {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.tier-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.tier-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
    text-align: left;
}

.tier-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.plan-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-badge.popular {
    background: var(--secondary-color);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.plan-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.plan-features i {
    width: 20px;
    height: 20px;
    color: var(--success-color);
}

.plan-savings {
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
}

.plan-savings strong {
    color: var(--secondary-color);
}

/* Add-ons */
.add-ons {
    margin-top: 4rem;
}

.add-ons h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.addon-card i {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.addon-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.addon-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
}

.roadmap-marker {
    position: absolute;
    left: -3rem;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-marker i {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.roadmap-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.roadmap-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.roadmap-target {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.roadmap-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.roadmap-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.roadmap-kpi {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.roadmap-kpi i {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

/* Revenue Projection */
.revenue-projection {
    margin-top: 4rem;
}

.revenue-projection h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.projection-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.projection-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.projection-card.highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.projection-card h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.projection-card.highlight h4 {
    color: rgba(255,255,255,0.9);
}

.projection-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.projection-card.highlight .projection-value {
    color: white;
}

.projection-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.projection-card.highlight .projection-label {
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.cta-stat i {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.cta-stat p {
    color: white;
    margin: 0;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.sources-section {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.sources-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.sources-intro {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.source-category h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.source-category ul {
    list-style: none;
}

.source-category li {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.source-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.sources-note {
    background: rgba(255,107,107,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    margin-top: 2rem;
}

.sources-note strong {
    color: var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .market-card.highlight {
        grid-column: span 1;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .roadmap-timeline {
        padding-left: 2rem;
    }
    
    .roadmap-marker {
        left: -2.5rem;
        width: 32px;
        height: 32px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}