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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Hidden tier class */
.hidden-tier {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.hero-image-left {
    width: 20vw;
    height: 20vw;
    max-width: 250px;
    max-height: 250px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.hero-image-right {
    width: 20vw;
    height: 20vw;
    max-width: 250px;
    max-height: 250px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    transform: scaleX(-1);
    object-fit: cover;
}

.logo-image {
    height: 20vw;
    max-height: 250px;
    min-height: 100px;
    width: auto;
    max-width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero .hook {
    font-size: 1.2rem;
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 850px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Section Styles */
.section {
    padding: 20px 0;
    background: white;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #34495e;
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2980b9;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Highlight Boxes */
.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #3498db;
    color: #2c3e50;
    text-align: center;
}

.movement-highlight {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #e67e22;
    text-align: center;
}

.movement-highlight h3 {
    color: #d35400;
    margin-bottom: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-box {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #e74c3c;
    transition: transform 0.3s ease;
    color: #2c3e50;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    display: block;
    margin-bottom: 10px;
}

/* Pricing Tiers */
.tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
}

.tier.referral {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    opacity: 0.8;
}

.tier h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tier .percentage {
    font-size: 3rem;
    font-weight: bold;
    margin: 15px 0;
}

.tier .investment {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tier .annual {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ee5a52;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Why Us Section */
.why-us {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.bullet-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bullet-point {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bullet-point h4 {
    color: #2980b9;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
}

/* Numbers Section */
.numbers-section {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: #2c3e50;
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
}

.numbers-section h2 {
    color: #2c3e50;
}

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

.comparison-item {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    color: #2c3e50;
}

.comparison-item .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    color: #2c3e50;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #34495e;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        margin: 5px;
        padding: 20px 5px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .tiers {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bullet-points {
        grid-template-columns: 1fr;
        margin: 5px;
        gap: 5px;
    }
    
    .bullet-point {
        margin: 5px;
        padding: 5px;
    }
    
    .highlight {
        margin: 5px;
        padding: 5px;
    }
    
    /* Mobile styles for matching box widths and padding */
    .highlight, 
    div[style*="background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%)"] {
        margin: 10px !important;
        padding: 25px !important;
    }
    
    .why-us {
        margin: 5px;
        padding: 5px;
    }
    
    .movement-highlight {
        margin: 5px;
        padding: 5px;
    }
    
    .stat-box {
        padding: 5px;
    }
    
    .comparison-item {
        padding: 5px;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-image-left,
    .hero-image-right {
        width: 25vw;
        height: 25vw;
        max-width: 150px;
        max-height: 150px;
        min-width: 80px;
        min-height: 80px;
    }
    
    .logo-image {
        height: 25vw;
        max-height: 150px;
        min-height: 80px;
        order: 2;
    }
    
    .hero-image-left {
        order: 1;
    }
    
    .hero-image-right {
        order: 3;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .footer-links a {
        margin: 0 8px;
        font-size: 0.9rem;
    }
    
    /* Additional mobile styles for hero section fonts */
    .hero h2 {
        font-size: 1.8rem !important;
    }
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero h1 span:last-child {
        font-size: 1.5rem !important;
    }
    .hero .hook h2 {
        font-size: 1.5rem !important;
    }
    .hero .hook p[style*="2.2rem"] {
        font-size: 1.5rem !important;
    }
    
    /* Mobile layout for founder header */
    .founder-header {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .founder-title {
        text-align: center !important;
        font-size: 1.5rem !important;
    }
    
    .founder-image {
        order: -1;
    }
}