/* CSS Variables */
:root {
    --primary: #2c5f2d;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Arial', 'Microsoft YaHei', '微软雅黑', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

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

/* Navigation */
.navbar {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.logo a,
.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active {
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-text {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.logo-subtitle {
    color: #ccc;
    font-size: 0.9rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.hero-content .subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content .tagline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ccc;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.highlight-item p {
    font-size: 1.1rem;
}

/* Buttons */
.cta-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin: 10px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Founders Section */
.founders-section,
.goals-section,
.benchmark-section {
    margin-bottom: 60px;
}

.founders-section h3,
.goals-section h3,
.benchmark-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.founder-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.founder-card.featured {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
    grid-column: span 1;
}

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

.founder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.founder-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.founder-card.featured h4 {
    color: var(--accent);
}

.founder-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-card.featured .founder-title {
    color: var(--accent);
}

.founder-achievements {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.founder-achievements li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.founder-achievements li:last-child {
    border-bottom: none;
}

/* Goals Box */
.goals-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.goals-box h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.goal-main {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 25px;
}

.goal-list {
    list-style: none;
    margin-top: 20px;
}

.goal-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.goal-list li:last-child {
    border-bottom: none;
}

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

.benchmark-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.benchmark-card.highlight {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
}

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

.benchmark-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.benchmark-card.highlight h4 {
    color: var(--accent);
}

.benchmark-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.benchmark-card.highlight .stat {
    background: rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.benchmark-card.highlight .stat-label {
    color: #ccc;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
}

.benchmark-card.highlight .stat-value {
    color: var(--accent);
}

.benchmark-desc,
.benchmark-underwriters {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.benchmark-card.highlight .benchmark-desc,
.benchmark-card.highlight .benchmark-underwriters {
    border-top-color: rgba(255, 255, 255, 0.2);
}

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

.product-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card.featured {
    background: linear-gradient(135deg, #ff6b35 0%, #e85d28 100%);
    color: white;
}

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

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.product-card.featured h3 {
    color: white;
}

.product-type {
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-card.featured .product-type {
    color: var(--accent);
}

.product-details h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.product-card.featured .product-details h4 {
    color: white;
}

.product-details ul {
    list-style: none;
    margin-left: 0;
}

.product-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-card.featured .product-details li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.channel-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-note {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.product-card.featured .product-note {
    color: #f0f0f0;
}

/* Flavors */
.flavors h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.flavor-tag {
    background: var(--bg-light);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
}

/* Channels Section */
.channels-section {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.channels-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.channel-region h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.channel-region ul {
    list-style: none;
}

.channel-region li {
    padding: 8px 0;
    padding-left: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.channel-region li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.channel-region li:last-child {
    border-bottom: none;
}

/* Brand Section */
.brand-section {
    background: linear-gradient(135deg, #1a3d1b 0%, #0d1f0e 100%);
    color: white;
}

.brand-section .section-header h2,
.brand-section .section-header p {
    color: white;
}

.brand-story {
    max-width: 900px;
    margin: 0 auto;
}

.brand-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.brand-logo {
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.brand-symbol {
    font-size: 5rem;
    color: var(--accent);
}

.brand-name {
    font-size: 2.5rem;
    color: var(--accent);
}

.brand-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bible-quote {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--accent);
}

.quote-reference {
    color: #ccc;
}

.brand-meaning h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.brand-meaning p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Financial Timeline */
.financial-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.timeline-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 250px;
    transition: all 0.3s;
}

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

.timeline-item.current {
    border: 2px solid #ccc;
}

.timeline-item.future {
    border: 2px solid var(--secondary);
}

.timeline-item.target {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.timeline-item.target h3 {
    color: var(--accent);
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--primary);
}

.financial-stat {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
}

.timeline-item.target .stat-value {
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.timeline-item.target .stat-label {
    color: #ccc;
}

/* IPO Plan */
.ipo-plan {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 60px;
}

.ipo-plan h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.ipo-timeline {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.ipo-milestone {
    flex: 1;
    min-width: 200px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.ipo-milestone.highlight {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
}

.ipo-milestone h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.ipo-milestone.highlight h4 {
    color: var(--accent);
}

.ipo-milestone p {
    color: #666;
}

.ipo-milestone.highlight p {
    color: #ccc;
}

.valuation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.valuation-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}

.valuation-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* Investment Section */
.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.investment-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.investment-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.investment-badge {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.investment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    border-bottom: none;
    font-weight: 600;
}

.detail-label {
    color: #666;
}

.detail-value {
    color: var(--primary);
    font-weight: 600;
}

.detail-row.highlight .detail-value {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Investment Benefits */
.investment-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.investment-benefits h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Investment Terms */
.investment-terms {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.investment-terms h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.investment-terms ul {
    list-style: none;
}

.investment-terms li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.investment-terms li:last-child {
    border-bottom: none;
}

/* Market Analysis */
.market-stat-hero {
    text-align: center;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.market-stat-hero h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.stat-value-large {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.stat-note {
    font-size: 1.1rem;
    color: #ccc;
}

/* Demographics */
.demographics-section {
    margin-bottom: 60px;
}

.demographics-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.demo-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.demo-card.highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #e85d28 100%);
    color: white;
}

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

.demo-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.demo-card.highlight .demo-percentage {
    color: white;
}

.demo-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.demo-card.highlight h4 {
    color: white;
}

.demo-count {
    color: #666;
    font-size: 1.1rem;
}

.demo-card.highlight .demo-count {
    color: #f0f0f0;
}

.demo-note {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    font-weight: 600;
}

/* Hispanic Market */
.hispanic-market {
    margin-bottom: 60px;
}

.hispanic-market h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.market-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.insight-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.insight-box h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

/* Ranking List */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ranking-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ranking-item.gold {
    border-left: 5px solid #ffd700;
}

.ranking-item.silver {
    border-left: 5px solid #c0c0c0;
}

.ranking-item.bronze {
    border-left: 5px solid #cd7f32;
}

.rank {
    font-size: 1.5rem;
    white-space: nowrap;
}

.rank-content h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.rank-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Traditional Drinks */
.traditional-drinks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drink-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.drink-card h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.drink-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Market Opportunity */
.market-opportunity {
    margin-top: 60px;
}

.market-opportunity h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.opportunity-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.opportunity-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.opportunity-card ul {
    list-style: none;
}

.opportunity-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.opportunity-card li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3d1b 100%);
    color: white;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-card-large {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    width: 100%;
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

.phone-number:hover {
    color: #ffed4e;
}

.company-info {
    text-align: center;
}

.company-info h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.company-tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.company-desc {
    font-size: 1.1rem;
    color: #ccc;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent);
    margin-top: 10px;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.3rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .financial-timeline {
        flex-direction: column;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .benchmark-grid,
    .products-grid,
    .channels-grid,
    .investment-options,
    .benefits-grid,
    .demographics-grid,
    .market-insights,
    .opportunity-grid,
    .ipo-timeline {
        grid-template-columns: 1fr;
    }

    .stat-value-large {
        font-size: 3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}
