/* Modern TempMail CSS */
:root {
    --primary-color: #5536DB;
    --secondary-color: #7848FF;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-light: rgba(203, 213, 225, 0.3);
    --gradient-primary: linear-gradient(135deg, #5536DB, #7848FF);
    --gradient-secondary: linear-gradient(135deg, #667eea, #764ba2);
}

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.tempmail-hero {
    background: linear-gradient(135deg, #5536DB 0%, #7848FF 50%, #667eea 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tempmail-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="tempmail" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><rect x="5" y="5" width="10" height="10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tempmail)"/></svg>');
    animation: float-pattern 25s linear infinite;
    opacity: 0.7;
}

@keyframes float-pattern {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { background: rgba(255, 255, 255, 0.15); }
    50% { background: rgba(255, 255, 255, 0.25); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    padding: 40px;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-image {
    max-width: 80%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

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

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float-icon 4s ease-in-out infinite;
}

.floating-icon-1 {
    background: linear-gradient(135deg, #10b981, #059669);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

.floating-icon-3 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon-4 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Main Content */
.tempmail-main {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    min-height: 100vh;
}

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

/* Email Generator Card */
.email-generator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

.email-generator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.generator-header {
    padding: 40px 40px 20px;
    text-align: center;
    background: rgba(248, 250, 252, 0.5);
    border-bottom: 2px solid var(--border-light);
}

.generator-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.generator-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

.generator-content {
    padding: 40px;
}

/* Email Status Badge */
.email-status-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Email Display */
.email-display-wrapper {
    margin-bottom: 30px;
}

.email-display {
    margin-bottom: 20px;
}

.email-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.email-icon {
    padding: 20px;
    background: rgba(85, 54, 219, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.email-input {
    flex: 1;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    outline: none;
    color: var(--text-dark);
}

.copy-btn {
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    transform: scale(1.05);
}

/* Email Info */
.email-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.email-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    font-weight: 500;
    color: var(--text-gray);
}

/* Action Buttons */
.email-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

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

.success-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.danger-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.action-btn.large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

.unread-badge {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 8px;
}

/* No Email State */
.no-email-state {
    text-align: center;
    padding: 60px 40px;
}

.no-email-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(85, 54, 219, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 3px solid rgba(85, 54, 219, 0.2);
}

.no-email-state h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.no-email-state p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Custom Email Creator */
.custom-email-creator {
    margin-top: 40px;
    padding: 30px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 20px;
    border: 2px solid var(--border-light);
}

.creator-header {
    text-align: center;
    margin-bottom: 30px;
}

.creator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.creator-subtitle {
    color: var(--text-gray);
    margin: 0;
}

.form-group-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    z-index: 2;
}

.modern-input, .modern-select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.modern-input:focus, .modern-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(85, 54, 219, 0.1);
}

.input-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.at-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 10px;
    align-self: center;
}

.create-btn {
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(85, 54, 219, 0.3);
}

/* Addresses Container */
.addresses-container {
    margin: 50px 0;
}

.addresses-header {
    text-align: center;
    margin-bottom: 40px;
}

.addresses-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.addresses-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

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

.address-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(85, 54, 219, 0.2);
}

.address-card-header {
    padding: 20px 25px 15px;
    background: rgba(248, 250, 252, 0.5);
    border-bottom: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.unread {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.action-icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(85, 54, 219, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-icon-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.address-card-body {
    padding: 20px 25px;
}

.address-email {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.address-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.address-card-footer {
    padding: 15px 25px 20px;
    background: rgba(248, 250, 252, 0.3);
    border-top: 2px solid var(--border-light);
}

.inbox-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inbox-btn:hover {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px rgba(85, 54, 219, 0.3);
}

/* Features Section */
.features-section {
    margin: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(85, 54, 219, 0.2);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-icon.protection {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.instant {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.destructing {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-benefits {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(85, 54, 219, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(85, 54, 219, 0.2);
}

/* FAQ Section */
.faq-section {
    margin: 80px 0 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

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

.faq-item {
    margin-bottom: 20px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 15px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(85, 54, 219, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(85, 54, 219, 0.02);
}

.faq-question h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.5);
}

.faq-item.active .faq-answer {
    padding: 20px 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tempmail-hero {
        padding: 60px 0;
    }

    .tempmail-hero::before {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-stat {
        min-width: 100px;
        padding: 15px;
        flex: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .floating-icon {
        display: none;
    }

    .tempmail-main {
        padding: 60px 0;
    }

    .tempmail-container {
        padding: 0 15px;
    }

    .email-generator-card {
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .generator-header,
    .generator-content {
        padding: 25px 20px;
    }

    .generator-title {
        font-size: 1.6rem;
    }

    .email-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .form-group-container {
        flex-direction: column;
        align-items: stretch;
    }

    .at-symbol {
        align-self: center;
        margin: 10px 0;
    }

    .create-btn {
        width: 100%;
        justify-content: center;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .faq-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .hero-stat {
        flex: 1;
        min-width: 100px;
        max-width: 150px;
        padding: 15px 10px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
    .hero-stats {
        gap: 8px;
    }
    
    .hero-stat {
        min-width: 80px;
        max-width: 100px;
        padding: 10px 5px;
    }
    
    .hero-stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 