/* Complete new design CSS - Part 2 of 2 */

/* Phone Mockup */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-3d {
    position: relative;
    animation: float-phone 6s ease-in-out infinite;
}

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

.phone-glow {
    position: absolute;
    inset: -40px;
    background: rgba(138, 43, 226, 0.2);
    filter: blur(80px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.phone {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1f2e, #0f1419);
    border-radius: 45px;
    padding: 15px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-top {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
}

.phone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f1419 0%, #050810 100%);
    border-radius: 35px;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

/* Voice Chat UI */
.voice-chat-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 20px;
}

.voice-status {
    text-align: center;
    width: 100%;
}

.status-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.voice-wave {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    height: 50px;
}

.voice-wave span {
    width: 4px;
    background: linear-gradient(180deg, #9F4FFF 0%, #00FF94 100%);
    border-radius: 10px;
    animation: wave 1s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { height: 45px; animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.voice-wave span:nth-child(6) { height: 25px; animation-delay: 0.5s; }
.voice-wave span:nth-child(7) { height: 35px; animation-delay: 0.6s; }

.yapp-btn-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yapp-btn {
    width: 90px;
    height: 90px;
    background: #00FF94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.5);
    position: relative;
    z-index: 2;
}

.yapp-btn span {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.yapp-btn:hover {
    background: #00E085;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 148, 0.7);
}

.ring-animation {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    z-index: 1;
    animation: spin-ring 3s linear infinite;
}

.ring-animation circle {
    fill: none;
    stroke: #9F4FFF;
    stroke-width: 2.5;
    opacity: 0.5;
}

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

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: float-card 4s ease-in-out infinite;
}

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

.fc-icon {
    font-size: 28px;
}

.fc-label {
    font-weight: 600;
    font-size: 14px;
}

.fc-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.fc-2 {
    top: 45%;
    right: -80px;
    animation-delay: 1.3s;
}

.fc-3 {
    bottom: 15%;
    right: -40px;
    animation-delay: 2.6s;
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fcard {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9F4FFF 0%, #00FF94 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.fcard:hover {
    transform: translateY(-8px);
    background: rgba(138, 43, 226, 0.25);
    border-color: rgba(159, 79, 255, 0.4);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.fcard:hover::before {
    transform: scaleX(1);
}

.fcard-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s;
}

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

.fcard-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
}

.fcard-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* Walkie-Talkie Section */
.walkie {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.walkie-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #9F4FFF 0%, #00FF94 100%);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #000;
}

.walkie-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.walkie-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 500px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 20px 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(10px);
}

.step-num {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(159, 79, 255, 0.6));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
    border: 2px solid rgba(159, 79, 255, 0.3);
    position: relative;
}

.step-num::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8A2BE2, #9F4FFF);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-num::before {
    opacity: 1;
}

.step-info {
    flex: 1;
    min-width: 0;
}

.step-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.3;
}

.step-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Device */
.walkie-right {
    display: flex;
    justify-content: center;
}

.device {
    width: 350px;
    height: 550px;
    background: linear-gradient(145deg, #1a1f2e, #0f1419);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: float-device 5s ease-in-out infinite;
}

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

.device-shine {
    position: absolute;
    inset: -30px;
    background: rgba(138, 43, 226, 0.2);
    filter: blur(50px);
    animation: glow-pulse 3s ease-in-out infinite;
}

.device-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.device-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 148, 0.15);
    border: 1px solid rgba(0, 255, 148, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #00FF94;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00FF94;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.walkie-interface {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 148, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.contact-status {
    font-size: 12px;
    color: #00FF94;
    font-weight: 500;
}

.walkie-controls {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.voice-beat-container {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-beats {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-beats.active {
    opacity: 1;
}

.beat {
    width: 3px;
    background: #00FF94;
    border-radius: 2px;
    animation: voice-beat 0.6s ease-in-out infinite;
}

.beat:nth-child(1) { height: 8px; animation-delay: 0s; }
.beat:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.beat:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.beat:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.beat:nth-child(5) { height: 12px; animation-delay: 0.4s; }

@keyframes voice-beat {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.push-to-talk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: #00FF94;
    border: none;
    border-radius: 20px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.4);
    animation: pulse-button 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    
    /* Prevent mobile selection and context menu */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.push-to-talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.push-to-talk:hover::before {
    left: 100%;
}

.push-to-talk.talking {
    background: #FF4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.6);
    animation: talking-pulse 0.8s ease-in-out infinite;
}

@keyframes talking-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 68, 68, 0.6); }
    50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(255, 68, 68, 0.8); }
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 255, 148, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(0, 255, 148, 0.6); }
}

.push-to-talk:hover {
    transform: scale(1.05);
    background: #00E085;
}

.push-to-talk svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.push-to-talk.talking svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.mic-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wave-bars {
    display: flex;
    justify-content: center;
    gap: 8px;
    height: 70px;
    align-items: center;
}

.wave-bars span {
    width: 6px;
    background: linear-gradient(180deg, #9F4FFF 0%, #00FF94 100%);
    border-radius: 10px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bars span:nth-child(1) { height: 25px; animation-delay: 0s; }
.wave-bars span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave-bars span:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.wave-bars span:nth-child(4) { height: 50px; animation-delay: 0.3s; }
.wave-bars span:nth-child(5) { height: 35px; animation-delay: 0.4s; }
.wave-bars span:nth-child(6) { height: 55px; animation-delay: 0.5s; }
.wave-bars span:nth-child(7) { height: 30px; animation-delay: 0.6s; }

/* CTA Section */
.cta {
    padding: 120px 0;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-heading {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.store-btn svg {
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.store-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.playstore-btn:hover {
    border-color: #00FF94;
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.4);
}

.appstore-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(159, 79, 255, 0.5);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
/* Large Desktop - Better spacing for wide screens */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
        gap: 100px;
        padding: 0 60px;
    }
    
    .hero-heading {
        font-size: 72px;
        line-height: 1.1;
    }
    
    .hero-text {
        font-size: 20px;
        line-height: 1.6;
    }
}

/* Medium Desktop - Optimize for standard screens */
@media (max-width: 1400px) and (min-width: 1025px) {
    .hero-container {
        max-width: 1200px;
        gap: 60px;
        padding: 0 40px;
    }
    
    .hero-heading {
        font-size: 64px;
        line-height: 1.1;
    }
    
    .hero-text {
        font-size: 18px;
        max-width: 500px;
    }
    
    .hero-buttons {
        gap: 20px;
    }
}

/* iPad and Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container, .walkie-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 60px;
    }
    
    .hero-heading {
        font-size: 56px;
        text-align: center;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }
    
    .hero-buttons, .hero-metrics {
        justify-content: center;
    }
    
    .float-card {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 42px;
        text-align: center;
    }
    
    .walkie-title {
        font-size: 38px;
        text-align: center;
    }
    
    /* Walkie-Talkie page specific */
    .walkie-container {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .steps {
        justify-content: center;
    }
    
    .step-item {
        text-align: center;
    }
}

/* Tablet and Small Desktop (Legacy) */
@media (max-width: 1024px) {
    .hero-container, .walkie-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 56px;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons, .hero-metrics {
        justify-content: center;
    }
    
    .float-card {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .walkie-title {
        font-size: 38px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: var(--nav-height-mobile, 80px) 0 0 0;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .nav.no-notification .nav-menu {
        top: 0;
        height: 100vh;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        display: block;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        text-align: left;
        padding: 20px 30px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
    }
    
    .nav-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #9F4FFF 0%, #00FF94 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-item:hover,
    .nav-item:active {
        background: rgba(138, 43, 226, 0.15);
        color: #fff;
        padding-left: 35px;
    }
    
    .nav-item:hover::before,
    .nav-item:active::before {
        transform: scaleY(1);
    }
    
    .nav-btn {
        display: block;
        font-size: 18px;
        font-weight: 800;
        width: calc(100% - 60px);
        text-align: center;
        padding: 18px 30px;
        margin: 30px;
        background: linear-gradient(135deg, #00FF94 0%, #00E085 100%);
        color: #000;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 255, 148, 0.4);
        border: none;
    }
    
    .nav-btn:hover,
    .nav-btn:active {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 255, 148, 0.6);
        background: linear-gradient(135deg, #00E085 0%, #00FF94 100%);
    }
    
    .hero {
        padding: calc(36px + 80px + 60px) 0 60px;
        min-height: calc(100vh - 36px);
    }
    
    /* Adjust padding when notification is closed */
    body.notification-closed .hero {
        padding-top: calc(80px + 60px);
    }
    
    /* Fix for pages with fixed top padding */
    .walkie-page,
    .careers-hero,
    .yappwolf-page {
        padding-top: calc(36px + 80px + 20px);
    }
    
    body.notification-closed .walkie-page,
    body.notification-closed .careers-hero,
    body.notification-closed .yappwolf-page {
        padding-top: calc(80px + 20px);
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 20px;
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-heading {
        font-size: 38px;
        letter-spacing: -1px;
        text-align: left;
    }
    
    .hero-text {
        font-size: 16px;
        text-align: left;
    }
    
    .hero-right {
        order: 2;
        margin-top: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .btn-main, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fcard {
        padding: 30px;
    }
    
    .walkie {
        padding: 80px 0;
    }
    
    .walkie-title {
        font-size: 32px;
    }
    
    .walkie-subtitle {
        font-size: 16px;
    }
    
    .steps {
        max-width: 100%;
        gap: 25px;
    }
    
    .step-item {
        padding: 15px;
        gap: 20px;
    }
    
    .step-item:hover {
        transform: translateX(5px);
    }
    
    .step-num {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-info h4 {
        font-size: 20px;
    }
    
    .step-info p {
        font-size: 15px;
    }
    
    .device {
        width: 280px;
        height: 450px;
        padding: 30px;
    }
    
    .contact-info {
        padding: 12px;
    }
    
    .contact-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .contact-name {
        font-size: 14px;
    }
    
    .push-to-talk {
        padding: 16px;
        font-size: 12px;
    }
    
    .push-to-talk svg {
        width: 24px;
        height: 24px;
    }
    
    .voice-beat-container {
        height: 35px;
    }
    
    .voice-beats {
        height: 25px;
    }
    
    .beat {
        width: 2.5px;
    }
    
    .beat:nth-child(1) { height: 6px; }
    .beat:nth-child(2) { height: 12px; }
    .beat:nth-child(3) { height: 18px; }
    .beat:nth-child(4) { height: 12px; }
    .beat:nth-child(5) { height: 8px; }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .store-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .metric-num {
        font-size: 28px;
    }
    
    .metric-label {
        font-size: 12px;
    }
    
    .phone {
        width: 260px;
        height: 520px;
    }
    
    .device {
        width: 240px;
        height: 400px;
    }
    
    .contact-info {
        padding: 10px;
    }
    
    .contact-avatar {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .contact-name {
        font-size: 13px;
    }
    
    .push-to-talk {
        padding: 14px;
        font-size: 11px;
    }
    
    .push-to-talk svg {
        width: 22px;
        height: 22px;
    }
    
    .voice-beat-container {
        height: 30px;
    }
    
    .voice-beats {
        height: 20px;
    }
    
    .beat {
        width: 2px;
    }
    
    .beat:nth-child(1) { height: 5px; }
    .beat:nth-child(2) { height: 10px; }
    .beat:nth-child(3) { height: 15px; }
    .beat:nth-child(4) { height: 10px; }
    .beat:nth-child(5) { height: 7px; }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

/* Careers Hero Section */
.careers-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.careers-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.careers-hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -2px;
}

.careers-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(159, 79, 255, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 24px;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Open Positions Section */
.open-positions {
    padding: 80px 0;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.job-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9F4FFF 0%, #00FF94 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.job-card:hover {
    transform: translateY(-8px);
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(159, 79, 255, 0.3);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.job-title-section {
    flex: 1;
}

.job-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-location,
.job-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.job-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, #00FF94 0%, #00E085 100%);
    color: #000;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.job-section {
    margin-bottom: 30px;
}

.job-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.job-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00FF94;
    font-weight: 700;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #00FF94;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0, 255, 148, 0.4);
    margin-top: 10px;
}

.job-apply-btn:hover {
    transform: translateY(-3px);
    background: #00E085;
    box-shadow: 0 12px 40px rgba(0, 255, 148, 0.6);
}

.job-apply-btn svg {
    transition: transform 0.3s;
}

.job-apply-btn:hover svg {
    transform: translateX(5px);
}

/* Application Form Section */
.application-section {
    padding: 80px 0 120px;
}

.application-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.required {
    color: #FF4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #00FF94;
    box-shadow: 0 0 0 3px rgba(0, 255, 148, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-select option {
    background: #1A0B2E;
    color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: block;
    color: #FF4444;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.form-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00FF94;
}

.file-upload-label svg {
    color: #00FF94;
    flex-shrink: 0;
}

.file-upload-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.file-upload-name {
    color: #00FF94;
    font-weight: 600;
    font-size: 14px;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: #00FF94;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0, 255, 148, 0.4);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    background: #00E085;
    box-shadow: 0 12px 40px rgba(0, 255, 148, 0.6);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-submit-btn.loading .btn-text,
.form-submit-btn.loading .btn-icon {
    display: none;
}

.form-submit-btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-icon {
    transition: transform 0.3s;
}

.form-submit-btn:hover:not(:disabled) .btn-icon {
    transform: translateX(5px);
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

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

.form-success svg {
    margin-bottom: 25px;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #00FF94;
}

.form-success p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero {
        padding: calc(36px + 80px + 20px) 0 60px;
        min-height: 70vh;
    }
    
    body.notification-closed .careers-hero {
        padding-top: calc(80px + 20px);
    }
    
    .careers-hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .careers-hero-text {
        font-size: 16px;
    }
    
    .careers-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px 20px;
    }
    
    .stat-icon {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-card {
        padding: 30px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-title {
        font-size: 24px;
    }
    
    .job-badge {
        align-self: flex-start;
    }
    
    .application-form {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-submit-btn {
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {
    .careers-hero-title {
        font-size: 36px;
    }
    
    .job-title {
        font-size: 22px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .application-form {
        padding: 25px 20px;
    }
}
