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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 50%, #FFE135 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FF6B6B;
}

.logo i {
    font-size: 1.5rem;
}

.logo small {
    font-size: 0.8rem;
    color: #666;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #FF6B6B;
}

.cta-nav {
    background: #FF6B6B;
    color: white !important;
}

.cta-nav:hover {
    background: #FF5252;
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FF6B6B;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 50%, #FFE135 100%);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-title .highlight {
    color: #FF6B6B;
    font-size: 3rem;
    font-weight: 800;
}

.hero-title .subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-item i {
    color: #FF6B6B;
    font-size: 1.1rem;
}

.hero-cta {
    text-align: left;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.cta-button.secondary:hover {
    background: #FF6B6B;
    color: white;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.main-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(255, 142, 142, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-video:hover .video-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stats {
    display: flex;
    gap: 1rem;
}

.stat {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B6B;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Problems Section */
.problems {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.problem-item i {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.solution {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 15px;
    color: white;
}

.solution i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution .highlight {
    font-weight: 700;
}

/* Reasons Section */
.reasons {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 100%);
}

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

.reason-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

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

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Guests Section */
.guests {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.guests-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.category ul {
    list-style: none;
}

.category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

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

.trust-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 15px;
    color: white;
    margin-bottom: 3rem;
}

.guest-photos h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-content p {
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #FF6B6B;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 100%);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-arrow {
    font-size: 2rem;
    color: #FF6B6B;
    margin: 0 1rem;
}

.pricing {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.currency {
    font-size: 1.2rem;
}

.unit {
    font-size: 0.9rem;
    color: #666;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-features i {
    color: #FF6B6B;
}

.detailed-flow {
    margin-bottom: 2rem;
}

.detailed-flow h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
}

.flow-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #FF6B6B;
    margin: 0 0.5rem;
}

.process-cta {
    text-align: center;
}

/* Online Recording Section */
.online-recording {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.online-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.online-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.online-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.feature i {
    font-size: 2rem;
    color: #FF6B6B;
    margin-top: 0.25rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
}

/* Trial Section */
.trial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 100%);
    text-align: center;
}

.trial-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.trial-cta {
    margin-top: 2rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #FF6B6B;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE135 0%, #FFF8DC 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.contact-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
}

/* Form Notifications */
.form-notification {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    animation: slideInDown 0.3s ease-out;
}

.form-notification.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-notification.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1rem;
    backdrop-filter: blur(10px);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FF6B6B;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-cta {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
}

.footer-cta:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-title .highlight {
        font-size: 2.2rem;
        display: block;
        margin: 0.5rem 0;
    }
    
    .hero-title .subtitle {
        font-size: 1.1rem;
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* Hero Features Mobile */
    .hero-features {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        justify-content: flex-start;
    }
    
    .feature-item i {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Hero CTA Mobile */
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly minimum */
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        line-height: 1.2;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 56px;
    }
    
    .cta-note {
        margin-top: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Hero Visual Mobile */
    .hero-visual {
        margin-top: 1rem;
    }
    
    .main-video,
    .main-image {
        height: 250px;
        border-radius: 12px;
    }
    
    .stats {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .stat {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .guests-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .online-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Optimization */
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero-title .highlight {
        font-size: 1.8rem;
        display: block;
    }
    
    .hero-title .subtitle {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    /* Feature Items Extra Small */
    .hero-features {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        border-radius: 6px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    /* CTA Buttons Extra Small */
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 22px;
    }
    
    .cta-button.large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    /* Visual Elements Extra Small */
    .main-video,
    .main-image {
        height: 200px;
        border-radius: 10px;
    }
    
    .stats {
        gap: 0.5rem;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .online-image img {
        height: 200px;
    }
    
    /* Header Mobile */
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
}

