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

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --primary-green: #4CAF50;
    --secondary-green: #45a049;
    --dark-green: #2E7D32;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
} */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.earnings-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-yellow);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
}

.earnings-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.earnings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.earnings-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.work-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
}

.spots-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-yellow);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    font-weight: 600;
}

.spots-counter i {
    color: var(--primary-green);
}

.apply-btn {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    color: var(--text-white);
    border: none;
    padding: 1rem 4rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    animation: twinkle1 .6s infinite alternate;
    -moz-animation: twinkle1 .6s infinite alternate;
    -ms-animation: twinkle1 .6s infinite alternate;
    -webkit-animation: twinkle1 .6s infinite alternate;
}
@keyframes twinkle1 {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.main-img:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Stats Section */
.stats-section {
    padding: 1.5rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.stats-image {
    text-align: center;
}

.stats-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stats-image img:hover {
    transform: scale(1.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.8rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 3rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.how-it-works-image {
    text-align: center;
    order: 2;
}

.how-it-works-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.how-it-works-image img:hover {
    transform: scale(1.05);
}

.how-it-works-text {
    order: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
}

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

.step-number {
    background: var(--primary-yellow);
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.3rem;
    color: var(--text-white);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.benefits-image {
    text-align: center;
    order: 1;
}

.benefits-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefits-image img:hover {
    transform: scale(1.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    order: 2;
    width: 100%;
}

.benefit-card {
    background: var(--bg-light);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.benefit-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    flex-grow: 0;
    text-align: center;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Gallery Section - 移除独立部分，图片已整合到其他部分 */
.gallery {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-btn {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--secondary-yellow);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-yellow);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

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

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

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

/* Fixed Bottom CTA */
.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
}

.bottom-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-weight: 700;
    color: var(--text-dark);
}

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

.bottom-cta-btn {
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bottom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 10px 0 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .work-features {
        align-items: center;
    }
    
    .floating-card {
        /* display: none; */
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 1rem 0;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-image img {
        max-width: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* How It Works Mobile */
    .how-it-works {
        padding: 2rem 0;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-it-works-image {
        order: 1;
    }
    
    .how-it-works-text {
        order: 2;
    }
    
    .how-it-works-image img {
        max-width: 300px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
    
    /* Section Header Mobile */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.5;
    }
    
    /* Benefits Mobile */
    .benefits {
        padding: 1.5rem 0;
    }
    
    .benefits-content {
        gap: 1.5rem;
    }
    
    .benefits-image img {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .benefit-card {
        padding: 1rem 0.6rem;
        min-height: 110px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.6rem;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        text-align: center;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-note {
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bottom-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 360px) {
    /* Benefits Extra Small Mobile */
    .benefits {
        padding: 0.8rem 0;
    }
    
    .benefits-content {
        gap: 0.8rem;
    }
    
    .benefits-image img {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .benefit-card {
        padding: 0.6rem 0.4rem;
        flex-direction: row;
        text-align: left;
        gap: 0.6rem;
        align-items: flex-start;
    }
    
    .benefit-icon {
        width: 25px;
        height: 25px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        font-size: 0.8rem;
    }
    
    .benefit-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .benefit-card p {
        font-size: 0.65rem;
        line-height: 1.1;
        text-align: left;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .earnings-amount {
        font-size: 2rem;
    }
    
    /* Stats Section Small Mobile */
    .stats-image img {
        max-width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 0.6rem 0.2rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    /* How It Works Small Mobile */
    .how-it-works-image img {
        max-width: 250px;
    }
    
    /* Section Header Small Mobile */
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    /* Benefits Small Mobile */
    .benefits {
        padding: 1rem 0;
    }
    
    .benefits-content {
        gap: 1rem;
    }
    
    .benefits-image img {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .benefit-card {
        padding: 0.8rem 0.5rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-items: anchor-center;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto 0.3rem;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        font-size: 0.9rem;
    }
    
    .benefit-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* CTA Small Mobile */
    .countdown-timer {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 50px;
        padding: 0.6rem;
    }
    
    .timer-number {
        font-size: 1.3rem;
    }
    
    .timer-label {
        font-size: 0.65rem;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 0.7rem 5rem;
        font-size: 1rem;
    }
    .cta-btn i{font-size: 2rem;}
}
