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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    min-height: 100vh;
    position: relative;
}

/* WhatsApp CTA Button - Top Right */
.whatsapp-cta-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-start-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    overflow: visible; /* Changed from hidden to visible to show badge */
    /* Additional security for button container */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.whatsapp-start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #22C55E;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    color: white; /* SVG uses currentColor, so this sets the icon to white */
    /* Icon security and interaction prevention */
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-context-menu: none;
    context-menu: none;
    outline: none;
}

.whatsapp-start-button:hover .whatsapp-icon {
    animation: jumpBounce 0.6s ease-in-out;
}

@keyframes jumpBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.1); }
    50% { transform: scale(1.05); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Notification Badge - iPhone Style */
.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3b30; /* iOS red color */
    color: white;
    border-radius: 12px;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(255, 59, 48, 0.4), 0 0 0 2px white;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    letter-spacing: -0.5px;
    z-index: 15;
    animation: badgePulse 2s ease-in-out infinite;
    border: 2px solid white;
    box-sizing: border-box;
}

/* Badge Animation */
@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 6px rgba(255, 59, 48, 0.4), 0 0 0 2px white;
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 59, 48, 0.6), 0 0 0 2px white;
    }
}

/* Badge hover effect */
.whatsapp-start-button:hover .notification-badge {
    animation: badgeBounce 0.6s ease-in-out;
}

@keyframes badgeBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Waitlist Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    display: flex; /* Show when needed */
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.3s ease-out;
}

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #000;
}

.popup-content h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}

.popup-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.popup-form {
    margin-bottom: 20px;
}

/* Compact Popup Input Styling */
.popup-input-group {
    position: relative;
    margin-bottom: 16px;
}

.popup-email-input,
.popup-phone-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-family: inherit;
    line-height: 1.4;
    height: 50px;
    box-sizing: border-box;
}

.popup-email-input:focus,
.popup-phone-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.popup-email-input:hover:not(:focus),
.popup-phone-input:hover:not(:focus) {
    border-color: #c1c5c9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Simplified Popup Placeholder Styling */
.popup-email-input::placeholder,
.popup-phone-input::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.popup-email-input:focus::placeholder,
.popup-phone-input:focus::placeholder {
    opacity: 0.7;
}

/* Compelling Popup CTA Button */
.popup-waitlist-button {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Popup button shine effect */
.popup-waitlist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.popup-waitlist-button:hover::before {
    left: 100%;
}

.popup-waitlist-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 50%, #333 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.popup-waitlist-button:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.popup-waitlist-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Popup Loading State */
.popup-waitlist-button.loading {
    color: transparent;
}

.popup-waitlist-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.popup-urgency {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 500;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero {
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}

.nura-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.social-proof-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.user-count {
    font-weight: 600;
    color: #28a745;
}

.hero h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight styles for dynamic headline */
.highlight-pink {
    background: #ffb3d1;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin: 2px;
    animation: fadeInUp 0.6s ease-out;
}

.highlight-blue {
    background: #87ceeb;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin: 2px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.highlight-yellow {
    background: #fff59d;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin: 2px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.highlight-green {
    background: #c8e6c9;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin: 2px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.highlight-lime {
    background: #dcedc8;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin: 2px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    margin-bottom: 30px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 450px;
    margin: 0 auto 16px auto;
    align-items: center;
}

/* Compact Input Field Styling */
.input-group {
    position: relative;
    width: 100%;
    min-width: 280px;
}

.email-input,
.phone-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-family: inherit;
    line-height: 1.4;
    height: 50px;
    box-sizing: border-box;
}

.email-input:focus,
.phone-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.email-input:hover:not(:focus),
.phone-input:hover:not(:focus) {
    border-color: #c1c5c9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Simplified Placeholder Styling */
.email-input::placeholder,
.phone-input::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.email-input:focus::placeholder,
.phone-input:focus::placeholder {
    opacity: 0.7;
}

/* Compelling CTA Button Styling */
.waitlist-button {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Subtle shine effect */
.waitlist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.waitlist-button:hover::before {
    left: 100%;
}

.waitlist-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 50%, #333 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.waitlist-button:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.waitlist-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Loading State */
.waitlist-button.loading {
    color: transparent;
}

.waitlist-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Message Styling */
.urgency-text {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 500;
    margin-top: 12px;
}

.spots-remaining {
    font-weight: 700;
}

/* Form Validation Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.form-message.show {
    display: block;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-message.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.form-message.info {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

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

/* Input Validation States */
.email-input.error,
.phone-input.error,
.popup-email-input.error,
.popup-phone-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.email-input.success,
.phone-input.success,
.popup-email-input.success,
.popup-phone-input.success {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Accessibility Enhancements */
.email-input:focus-visible,
.phone-input:focus-visible,
.popup-email-input:focus-visible,
.popup-phone-input:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.waitlist-button:focus-visible,
.popup-waitlist-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .email-input,
    .phone-input,
    .popup-email-input,
    .popup-phone-input,
    .waitlist-button,
    .popup-waitlist-button,
    .input-group label,
    .popup-input-group label,
    .form-message {
        transition: none;
        animation: none;
    }

    .waitlist-button:hover:not(:disabled),
    .popup-waitlist-button:hover:not(:disabled) {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .email-input,
    .phone-input,
    .popup-email-input,
    .popup-phone-input {
        border-width: 3px;
    }

    .waitlist-button,
    .popup-waitlist-button {
        border: 2px solid #fff;
    }
}

/* Problem Section */
.problem-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.problem-section h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.problem-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Scrolling Benefits Bar */
.scrolling-benefits-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 30px 0;
    padding: 20px 0;
    position: relative;
}

.scrolling-benefits {
    display: flex;
    animation: scroll-left 40s linear infinite;
    white-space: nowrap;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* Social Proof Compact */
.social-proof-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-compact {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #f1f3f4;
    text-align: left;
}

.testimonial-compact p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.4;
}

.testimonial-compact span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}



/* Footer */
.footer-links {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px 15px 20px;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-cta-button {
        top: 15px;
        right: 15px;
    }

    .whatsapp-start-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    /* Mobile Notification Badge */
    .notification-badge {
        top: -5px;
        right: -5px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        padding: 0 5px;
    }

    .hero {
        margin-bottom: 30px;
    }

    .nura-logo {
        height: 50px;
        max-width: 160px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    /* Mobile highlight styles */
    .highlight-pink,
    .highlight-blue,
    .highlight-yellow,
    .highlight-green,
    .highlight-lime {
        padding: 3px 6px;
        margin: 1px;
        font-size: 0.95em;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .input-group {
        min-width: 100%;
    }

    .email-input,
    .phone-input {
        min-width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        height: 48px;
    }

    .waitlist-button {
        width: 100%;
        padding: 15px 24px;
        font-size: 1rem;
        min-width: 100%;
        height: 52px;
    }

    /* Mobile Popup Adjustments */
    .popup-email-input,
    .popup-phone-input {
        padding: 14px 16px;
        height: 48px;
    }

    .popup-waitlist-button {
        height: 52px;
        padding: 15px 24px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }

    .feature {
        padding: 15px 10px;
    }

    .scrolling-benefits-container {
        margin: 20px 0;
        padding: 15px 0;
    }

    .benefit-item {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin: 0 8px;
    }

    .social-proof-compact {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    .testimonial-compact {
        padding: 15px;
    }

    .footer-links {
        margin-top: 20px;
        padding: 15px 0;
    }

    .footer-links a {
        display: block;
        margin: 8px 0;
    }

    /* Popup Mobile */
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.5;
    }

    /* Small mobile highlight styles */
    .highlight-pink,
    .highlight-blue,
    .highlight-yellow,
    .highlight-green,
    .highlight-lime {
        padding: 2px 4px;
        margin: 0.5px;
        font-size: 0.9em;
        border-radius: 4px;
    }

    .social-proof-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* WhatsApp Button Small Mobile */
    .whatsapp-cta-button {
        top: 10px;
        right: 10px;
    }

    .whatsapp-start-button {
        width: 45px;
        height: 45px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    /* Small Mobile Notification Badge */
    .notification-badge {
        top: -4px;
        right: -4px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        padding: 0 4px;
        border-radius: 10px;
    }

    .features {
        gap: 15px;
    }

    .scrolling-benefits-container {
        padding: 12px 0;
    }

    .benefit-item {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin: 0 6px;
    }
}
