/* =========================================
   CSS Variables & Reset
   ========================================= */
   :root {
    /* Colors */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --accent-cyan: #00E5CC;  
    --accent-purple: #8C52FF; 
    --accent-pink: #FF0080;   
    --text-primary: #0F172A;
    --text-secondary: #475569;
    
    /* UI Elements */
    --card-bg: #FFFFFF;
    --card-border: rgba(148, 163, 184, 0.2);
    --glass-blur: blur(12px);
    --gradient-main: linear-gradient(90deg, #0057FF 0%, #8C52FF 50%, #00E5CC 100%);
    --gradient-text: linear-gradient(90deg, #0057FF 0%, #8C52FF 50%, #00E5CC 100%);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: 100px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Noto Sans Hebrew', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    position: relative; 
}

/* Background Particles */
.particles-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; 
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(0, 229, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(140, 82, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 87, 255, 0.08) 0%, transparent 50%);
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 6vw, 4.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 700; }
p { color: var(--text-secondary); font-size: 1.05rem; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 229, 204, 0.1); color: var(--accent-cyan);
    font-weight: 700; font-size: 0.9rem; padding: 6px 16px;
    border-radius: 50px; margin-bottom: 20px; border: 1px solid rgba(0, 229, 204, 0.2);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-icon {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    transition: all var(--transition-fast); position: relative; overflow: hidden; z-index: 1;
}

.btn-primary { background: var(--gradient-main); color: #FFFFFF !important; box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 87, 255, 0.5); }

.glow-effect { animation: glowPulse 3s infinite; }
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 87, 255, 0.6); }
}

.btn-secondary {
    background: #FFFFFF; color: var(--text-primary);
    border: 2px solid rgba(15, 23, 42, 0.1); backdrop-filter: blur(5px);
}
.btn-secondary:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); transform: translateY(-3px); }

.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }

/* Header & Nav */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; height: var(--header-height);
    background: linear-gradient(90deg, rgba(0, 87, 255, 0.6) 0%, rgba(140, 82, 255, 0.6) 50%, rgba(0, 229, 204, 0.6) 100%);
    background-size: 200% 200%;
    animation: gradientHeader 6s ease infinite;
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); z-index: 1000;
    display: flex; align-items: center; transition: all var(--transition-fast);
}
.site-header.scrolled { background: linear-gradient(90deg, rgba(0, 87, 255, 0.85) 0%, rgba(140, 82, 255, 0.85) 50%, rgba(0, 229, 204, 0.85) 100%); background-size: 200% 200%; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

@keyframes gradientHeader {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.flex-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 1.6rem; font-weight: 900; color: #FFFFFF; display: flex; align-items: center; gap: 8px; }
.logo-icon { color: #FFFFFF; }
.logo span { color: #FFFFFF; }
.logo-image { max-height: 60px; width: auto; }

.desktop-nav {
    display: flex; gap: 32px; background: rgba(255,255,255,0.1);
    padding: 8px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
}
.desktop-nav a { color: #FFFFFF; font-weight: 500; font-size: 0.95rem; }
.desktop-nav a:hover, .desktop-nav a.active { color: rgba(255,255,255,0.8); }

.header-actions { display: flex; gap: 12px; align-items: center; }
.btn-icon { 
    width: 45px; height: 45px; border-radius: 50%; 
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); 
    color: #FFFFFF; padding: 0; 
}
.btn-icon:hover { background: #FFFFFF; color: var(--accent-purple); border-color: #FFFFFF; }

/* Mobile Menu - Fixed */
.mobile-menu-toggle { display: none; background: none; color: #FFFFFF; font-size: 1.5rem; z-index: 1001; }
.mobile-menu-container {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 300px; height: 100%;
    background: #FFFFFF; z-index: 1005; padding: 60px 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu-container.active { right: 0; }
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 1004;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; color: var(--text-secondary); z-index: 1006; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-nav-links a { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 15px; }

/* Mobile Social Icons */
.mobile-social-links {
    display: flex; justify-content: center; gap: 15px;
    margin-top: 25px; padding-top: 25px;
    border-top: 1px solid var(--card-border);
}
.mobile-social-links .btn-icon {
    background: var(--bg-secondary); color: var(--text-secondary);
    border: 1px solid var(--card-border);
}
.mobile-social-links .btn-icon:hover {
    background: var(--gradient-main); color: white; border-color: transparent;
}

/* Sections */
section { padding: var(--section-spacing) 0; }

/* Hero */
.hero-section { padding-top: 120px; min-height: 90vh; display: flex; align-items: center; text-align: center; }
.hero-container-v { display: flex; flex-direction: column; align-items: center; gap: 25px; }

.subtitle-badge { 
    display: inline-flex; align-items: center; gap: 8px; background: rgba(138, 43, 226, 0.1);
    color: var(--accent-purple); border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 8px 16px; border-radius: 50px; font-weight: 600; margin-bottom: 10px;
}

.hero-section h1 { margin-bottom: 10px; }
.hero-section p { font-size: 1.2rem; margin-bottom: 20px; max-width: 700px; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 30px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.9rem; background: rgba(0,0,0,0.03); padding: 5px 12px; border-radius: 8px; }
.trust-icon { color: var(--accent-cyan); width: 18px; }

.hero-image-wrapper { position: relative; display: flex; justify-content: center; margin-bottom: 15px; }
.hero-image-wrapper::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 240px; height: 240px;
    background: var(--gradient-main);
    filter: blur(40px); opacity: 0.4;
    border-radius: 50%; z-index: 0;
    animation: pulseGlow 3s infinite alternate;
}
.cyber-frame {
    position: relative; border-radius: 50%; padding: 8px;
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(140, 82, 255, 0.1));
    z-index: 1;
}
.hero-img { border-radius: 50%; width: 220px; height: 220px; object-fit: cover; position: relative; z-index: 2; }
.cyber-lines {
    position: absolute; inset: -3px; border-radius: 50%; border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-cyan), transparent, var(--accent-purple)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude; z-index: 1; opacity: 0.6;
}
@keyframes pulseGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}
.floating-card {
    position: absolute; bottom: 10px; left: -40px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border); padding: 15px 25px;
    border-radius: 16px; display: flex; align-items: center; gap: 15px; z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card-icon-small { width: 40px; height: 40px; background: var(--gradient-main); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }

/* Typewriter Effect */
.typewriter {
    display: block;
    text-align: center;
    width: 100%;
}
.typewriter h1 {
    border-left: none;
    white-space: normal;
    margin: 0 auto;
    width: auto;
    animation: none;
    max-width: 100%;
}

.typewriter h1 .text-gradient {
    display: inline-block;
    overflow: hidden;
    border-left: 3px solid var(--accent-cyan);
    white-space: nowrap;
    width: 0;
    direction: rtl;
    text-align: right;
    animation: 
        typing 3s steps(13, end) forwards,
        blink-caret .75s step-end infinite;
    vertical-align: bottom;
    padding-left: 0;
}

/* The typing effect */
@keyframes typing { 
    0% { width: 0 } 
    100% { width: 12.5ch }
}

/* The typewriter cursor effect */
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--accent-cyan); } }

/* Services - Centered & Modern */
.services-section { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* Service Card - Modern & Clean */
.service-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 229, 204, 0.15);
    border-color: var(--accent-cyan);
}

.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.service-card p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 25px; }

.card-icon-wrapper {
    width: 60px; height: 60px; background: rgba(0, 229, 204, 0.1);
    color: var(--accent-cyan); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

/* Features Carousel inside Card */
.features-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: auto; /* Push to bottom */
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    direction: ltr; /* Important for smooth loop direction */
}

.features-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollFeatures 20s linear infinite;
}

.feature-box {
    flex: 0 0 auto;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    direction: rtl; /* Keep text RTL */
}
.feature-box:hover {
    background: rgba(0, 229, 204, 0.05);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}
.feature-box i { width: 14px; height: 14px; color: var(--accent-cyan); }

@keyframes scrollFeatures {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Varying animation speeds for each card */
.service-card:nth-of-type(1) .features-track { animation-duration: 22s; }
.service-card:nth-of-type(2) .features-track { animation-duration: 28s; }
.service-card:nth-of-type(3) .features-track { animation-duration: 25s; }
.service-card:nth-of-type(4) .features-track { animation-duration: 32s; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }

/* Infinite Stats Carousel */
.stats-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    border-top: 1px solid var(--card-border);
    direction: ltr; /* Fix alignment for infinite scroll */
}

.stats-track {
    display: flex;
    gap: 0; /* Removed gap to fix jumpy loop, using margin instead */
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
    direction: ltr; /* Ensures consistent scrolling direction */
}

.stat-box {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    min-width: 280px;
    max-width: 280px;
    margin-right: 30px; /* Spacing for seamless loop */
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    direction: rtl; /* Ensure Hebrew text inside is RTL */
    flex-shrink: 0;
}

.stat-box:hover { transform: translateY(-5px); border-color: var(--accent-cyan); }
.stat-box h4 { font-size: 1.5rem; color: var(--accent-cyan); margin-bottom: 8px; font-weight: 900; line-height: 1.1; }
.stat-box p { font-size: 0.95rem; line-height: 1.4; margin: 0; }

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.process-card {
    background: var(--card-bg); padding: 30px; border-radius: 20px;
    border: 1px solid var(--card-border); text-align: center; position: relative;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.step-number { 
    position: absolute; top: 15px; right: 20px; font-size: 2.5rem; font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}
.step-icon-wrapper { 
    width: 60px; height: 60px; background: rgba(0,0,0,0.03); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--accent-cyan); margin-bottom: 20px;
}

/* CTA Section */
.cta-section { padding: var(--section-spacing) 0; }
.cta-box {
    background: var(--bg-secondary);
    padding: 80px 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--card-border);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 87, 255, 0.05);
}
.cta-content h2 { margin-bottom: 24px; }
.cta-content p { margin-bottom: 45px; max-width: 750px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; }
.cta-note { margin-top: 20px; opacity: 0.8; }

/* Why Me */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.why-item {
    width: 100%;
    min-height: 280px;
    background: #FFFFFF;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 87, 255, 0.15);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(140, 82, 255, 0.25);
    border-color: var(--accent-cyan);
}

.why-icon { 
    width: 60px; 
    height: 60px; 
    margin-bottom: 20px;
    background: rgba(138, 43, 226, 0.1); 
    color: var(--accent-purple); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

/* Footer - Centered & Organized */
.site-footer { background: linear-gradient(to bottom, #F8FAFC, #F1F5F9); padding-top: 80px; border-top: 1px solid var(--card-border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; text-align: center; } /* Centered Footer */
.brand-col { display: flex; flex-direction: column; align-items: center; }
.social-links { display: flex; gap: 15px; margin-top: 20px; justify-content: center; }
.social-links a { 
    width: 40px; height: 40px; background: #FFFFFF; color: var(--text-secondary); border: 1px solid var(--card-border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
}
.social-links a:hover { background: var(--accent-cyan); color: var(--bg-main); }
.map-wrapper { border-radius: 12px; overflow: hidden; border: 1px solid var(--card-border); margin-top: 15px; }
.contact-list li { justify-content: center; display: flex; gap: 10px; margin-bottom: 12px; color: var(--text-secondary); }
.contact-icon { color: var(--accent-cyan); width: 18px; }
.footer-bottom { background: rgba(0,0,0,0.03); padding: 20px 0; text-align: center; font-size: 0.9rem; color: var(--text-secondary); }

/* Floating WhatsApp */
.whatsapp-float-container { 
    position: fixed; bottom: 30px; right: 30px; z-index: 9999; 
    display: flex; align-items: center; flex-direction: row-reverse; gap: 15px; 
}
.whatsapp-btn-float {
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: 0.3s;
    animation: pulse-green 2s infinite;
}
.whatsapp-btn-float:hover { transform: scale(1.1); }
.whatsapp-btn-float i { width: 32px; height: 32px; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
    background: white; color: #333; padding: 8px 16px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative; animation: floatIn 0.5s ease-out; margin-bottom: 0;
}
.whatsapp-tooltip::after {
    content: ''; position: absolute; top: 50%; right: -6px; transform: translateY(-50%);
    width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 6px solid white;
}
@keyframes floatIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Reveal Animation */
.reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; } /* Default visible */

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    :root { --section-spacing: 50px; }
    .container { padding: 0 16px; }
    .hero-section { padding-top: 110px; min-height: auto; }
    .stats-row { padding-top: 20px; }

    .desktop-nav, .header-actions { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .hero-container-v { text-align: center; }
    .hero-image-wrapper { margin-bottom: 20px; }
    .hero-img { width: 180px; height: 180px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .trust-badges { justify-content: center; }
    
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-content-col { order: 2; display: flex; flex-direction: column; align-items: center; }
    .about-image-col { order: 1; margin-bottom: 40px; }
    .stats-row { flex-wrap: wrap; justify-content: center; gap: 30px; }
    
    .process-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
    .step-number { font-size: 2rem; top: 10px; right: 15px; }
    
    .check-list li { justify-content: center; } /* Center list items on mobile */
    
    .cta-box { padding: 60px 24px; }
    .cta-buttons { 
        flex-direction: column; 
        gap: 15px; 
    }
    .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; }
    
    .logo { font-size: 1.4rem; }
    .whatsapp-float-container { right: 20px; bottom: 20px; }

    /* Why Me Mobile Improvements */
    .why-grid { gap: 30px; }
    .why-icon { 
        width: 70px; height: 70px; 
        margin-bottom: 20px;
        animation: floatMobile 3s ease-in-out infinite;
    }
    .why-icon svg { width: 35px; height: 35px; }
    .why-item h4 { font-size: 1.4rem; margin-bottom: 10px; }
    .why-item p { font-size: 1.1rem; padding: 0 10px; }
    @keyframes floatMobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}