/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sunflower', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/bgc.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stock-chart {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #00d4aa 0%, #00a8cc 50%, #0066cc 100%);
    opacity: 0.1;
    border-radius: 10px;
    transform: rotate(15deg);
}

.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-numbers .number {
    position: absolute;
    font-size: 2rem;
    font-weight: 900;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-numbers .number:nth-child(1) {
    top: 20%;
    left: 10%;
    color: #00d4aa;
    animation-delay: 0s;
}

.floating-numbers .number:nth-child(2) {
    top: 40%;
    right: 20%;
    color: #ff6b6b;
    animation-delay: 1.5s;
}

.floating-numbers .number:nth-child(3) {
    top: 60%;
    left: 20%;
    color: #00d4aa;
    animation-delay: 3s;
}

.floating-numbers .number:nth-child(4) {
    top: 80%;
    right: 10%;
    color: #ff6b6b;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Black Han Sans', 'Sunflower', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.highlight {
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.gradient-text {
    background: linear-gradient(45deg, #00d4aa, #00a8cc, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.cta-button {
    background: linear-gradient(45deg, #00d4aa, #00a8cc);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Expert Introduction */
.expert-intro {
    padding: 5rem 0;
    background: #f8f9fa;
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.expert-image {
    text-align: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.expert-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00a8cc;
    margin-bottom: 0.5rem;
}

.expert-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.expert-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.credential-icon {
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-family: 'Black Han Sans', 'Sunflower', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #00d4aa;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Image-Text Modules */
.image-text-module {
    padding: 5rem 0;
    background: #f8f9fa;
}

.image-text-module:nth-child(even) {
    background: white;
}

.module-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-text-module.reverse .module-content {
    grid-template-columns: 1fr 1fr;
}

.image-text-module.reverse .module-image {
    order: 2;
}

.image-text-module.reverse .module-text {
    order: 1;
}

.module-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #00a8cc, #0066cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.2);
}

.module-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.module-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #555;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.philosophy-content {
    text-align: center;
}

.philosophy-quote {
    margin-bottom: 3rem;
}

.philosophy-quote blockquote {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    font-style: italic;
    color: #00d4aa;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.point {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.point-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.point h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00d4aa;
}

.point p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(45deg, #00d4aa, #00a8cc);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .expert-content {
        gap: 2rem;
    }
    
    .module-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Expert Section Mobile */
    .expert-intro {
        padding: 3rem 0;
    }
    
    .expert-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .expert-image .image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .expert-text h3 {
        font-size: 2rem;
    }
    
    /* Benefits Section Mobile */
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Image-Text Modules Mobile - Key Improvements */
    .image-text-module {
        padding: 3rem 0;
    }
    
    .module-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .module-image .image-placeholder {
        height: 250px;
        margin: 0 auto;
    }
    
    .module-text {
        text-align: center;
    }
    
    .module-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .module-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .feature-list li {
        padding: 0.3rem 0;
        font-size: 0.95rem;
    }
    
    /* Reset reverse order on mobile for better UX */
    .image-text-module.reverse .module-image {
        order: 1;
    }
    
    .image-text-module.reverse .module-text {
        order: 2;
    }
    
    /* Philosophy Section Mobile */
    .philosophy {
        padding: 3rem 0;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .point {
        padding: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
    
    /* Floating Button Mobile */
    .floating-button {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section Small Mobile */
    .hero {
        min-height: 85vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    /* Expert Section Small Mobile */
    .expert-intro {
        padding: 2.5rem 0;
    }
    
    .expert-image .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 1rem;
    }
    
    .expert-text h2 {
        font-size: 1.2rem;
    }
    
    .expert-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .expert-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .credential {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .credential-icon {
        font-size: 1.2rem;
    }
    
    /* Benefits Small Mobile */
    .benefits {
        padding: 2.5rem 0;
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Image-Text Modules Small Mobile */
    .image-text-module {
        padding: 2.5rem 0;
    }
    
    .module-content {
        gap: 1.5rem;
    }
    
    .module-image .image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
    
    .module-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .module-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .feature-list {
        max-width: 100%;
        margin: 0 0 1.5rem 0;
    }
    
    .feature-list li {
        padding: 0.2rem 0;
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .feature-list li::before {
        font-size: 1rem;
    }
    
    /* Philosophy Small Mobile */
    .philosophy {
        padding: 2.5rem 0;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .philosophy-points {
        gap: 1.2rem;
    }
    
    .point {
        padding: 1.2rem;
    }
    
    .point-icon {
        font-size: 2rem;
    }
    
    .point h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .point p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Testimonials Small Mobile */
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials-grid {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-card p::before {
        font-size: 2.5rem;
        top: -8px;
        left: -8px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
        width: 100%;
        max-width: 200px;
    }
    
    .testimonial-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .testimonial-stats .stat-label {
        font-size: 0.8rem;
    }
    
    /* Final CTA Small Mobile */
    .final-cta {
        padding: 2.5rem 0;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Floating Button Small Mobile */
    .floating-button {
        bottom: 15px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        max-width: 95%;
        border-radius: 40px;
    }
    
    /* Floating Numbers Small Mobile */
    .floating-numbers .number {
        font-size: 1.5rem;
    }
    
    /* Stock Chart Small Mobile */
    .stock-chart {
        width: 200px;
        height: 120px;
        top: 15%;
        right: 5%;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .cta-button, .floating-button {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Better text readability on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Optimize scrolling performance */
    .hero, .image-text-module, .testimonials {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Prevent horizontal scroll */
    .floating-numbers .number {
        max-width: 90vw;
        word-wrap: break-word;
    }
    
    /* Better card interactions on mobile */
    .benefit-card, .testimonial-card {
        -webkit-tap-highlight-color: rgba(0, 212, 170, 0.1);
        tap-highlight-color: rgba(0, 212, 170, 0.1);
    }
    
    /* Optimize hero background for mobile */
    .hero {
        background-attachment: scroll;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #00d4aa, #00a8cc);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #00d4aa;
}

.testimonial-content {
    position: relative;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.testimonial-card p {
    font-family: 'Jua', 'Sunflower', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: #00d4aa;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Black Han Sans', sans-serif;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
    font-family: 'Sunflower', sans-serif;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 150px;
}

.testimonial-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #00d4aa;
    margin-bottom: 0.5rem;
    font-family: 'Black Han Sans', sans-serif;
}

.testimonial-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    font-family: 'Sunflower', sans-serif;
}

/* Update other headings to use unique fonts */
.expert-text h3 {
    font-family: 'Black Han Sans', 'Sunflower', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.benefit-card h3 {
    font-family: 'Sunflower', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.module-text h2 {
    font-family: 'Black Han Sans', 'Sunflower', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.point h3 {
    font-family: 'Sunflower', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00d4aa;
}

.final-cta h2 {
    font-family: 'Black Han Sans', 'Sunflower', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Update responsive styles for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .testimonial-stats .stat-number {
        font-size: 1.5rem;
    }
}
