@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html {
    scroll-behavior: smooth;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: screen;
}

/* Main cursor - geometric diamond shape */
.cursor-main {
    width: 24px;
    height: 24px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 69, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: cursorBreathing 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes cursorBreathing {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 60px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

/* Trailing follower cursor */
.cursor-follower {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Orbiting particles */
.cursor-orbit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: orbit 2s linear infinite;
    opacity: 0.8;
}

.cursor-orbit:nth-child(2) {
    animation-delay: -0.5s;
}

.cursor-orbit:nth-child(3) {
    animation-delay: -1s;
}

.cursor-orbit:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Hover state - expand and glow */
.cursor-hover .cursor-main {
    width: 32px;
    height: 32px;
}

.cursor-hover .cursor-diamond {
    background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
    box-shadow:
        0 0 30px rgba(255, 140, 66, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 140, 66, 0.5);
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
}

/* Click state - pulse ripple */
.cursor-clicking .cursor-main {
    width: 20px;
    height: 20px;
}

.cursor-clicking .cursor-follower {
    width: 50px;
    height: 50px;
}

/* Click ripple effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Text/Link hover - color shift to deeper red */
.cursor-text .cursor-diamond {
    background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
    box-shadow:
        0 0 30px rgba(255, 60, 0, 0.8),
        0 0 60px rgba(233, 30, 99, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-text .cursor-follower {
    border-color: rgba(255, 60, 0, 0.5);
    background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
}

/* Mobile - hide custom cursor */
@media (max-width: 768px),
(hover: none) {
    .custom-cursor {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}

body {
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    /* iOS Safari fix */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
    /* Better tap feedback */
}

html {
    height: -webkit-fill-available;
    /* iOS Safari fix */
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

a,
button,
.role-card,
.benefit-card,
.form-input {
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
    touch-action: manipulation;
}

/* ========== GLASS MORPHISM NAVBAR ========== */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes logoRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar-menu li:nth-child(1) {
    animation-delay: 0.3s;
}

.navbar-menu li:nth-child(2) {
    animation-delay: 0.4s;
}

.navbar-menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.navbar-menu li:nth-child(4) {
    animation-delay: 0.6s;
}

.navbar-menu li:nth-child(5) {
    animation-delay: 0.7s;
}

.navbar-menu li:nth-child(6) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.navbar-menu a:hover {
    color: white;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.navbar-menu a.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.navbar-cta {
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.nav-btn-outline {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.navbar-toggle {
    display: none;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.navbar-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* ========== HERO SECTION ========== */
.join-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    overflow: hidden;
}

.join-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.join-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.join-hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: #8B5CF6;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.join-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 50px;
}

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

.hero-btn {
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

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

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
}

/* ========== ROLES SECTION ========== */
.roles-section {
    position: relative;
    padding: 100px 50px;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: #8B5CF6;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.role-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
}

.role-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
}

.role-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.role-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.role-card:hover .role-icon img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.6));
}

.role-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.role-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.role-requirements {
    list-style: none;
    padding: 0;
}

.role-requirements li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.role-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    position: relative;
    padding: 100px 50px;
    background: linear-gradient(180deg, rgba(15, 12, 41, 0.5), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.6));
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== APPLICATION FORM SECTION ========== */
.application-section {
    position: relative;
    padding: 100px 50px;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 21, 53, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(26, 21, 53, 0.7);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

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

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

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Make anchor behave visually like a premium CTA button (pill, gradient, glow) */
.submit-btn {
    display: block;
    width: min(860px, 88%);
    max-width: 860px;
    margin: 18px auto 0;
    padding: 22px 84px;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
    background-size: 200% 200%;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow:
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 8px 24px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    animation: btnPulse 3s ease-in-out infinite;
}

.submit-btn::after {
    /* subtle inner shine with shimmer effect */
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15) 50%,
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) skewX(-20deg); }
    50% { transform: translateX(100%) skewX(-20deg); }
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(139, 92, 246, 0.4),
            0 8px 24px rgba(59, 130, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 25px 80px rgba(139, 92, 246, 0.6),
            0 12px 36px rgba(59, 130, 246, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    }
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background-position: 100% 100%;
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow:
        0 30px 90px rgba(139, 92, 246, 0.7),
        0 15px 45px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn:focus {
    outline: 3px solid rgba(139,92,246,0.22);
    outline-offset: 4px;
}

.submit-btn.active {
    transform: translateY(-2px) scale(0.99);
    box-shadow:
        0 18px 50px rgba(139, 92, 246, 0.5),
        0 6px 20px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ripple feedback for touch */
.btn-ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.14);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.2);
    animation: btnRippleAnim 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

@keyframes btnRippleAnim {
    to {
        transform: translate(-50%, -50%) scale(8);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .submit-btn {
        width: 92%;
        padding: 18px 42px;
        font-size: 1.15rem;
        border-radius: 35px;
    }
}

@media (max-width: 420px) {
    .submit-btn {
        padding: 16px 32px;
        font-size: 1.05rem;
        border-radius: 30px;
        letter-spacing: 0.3px;
    }
}

/* ========== BACKGROUND EFFECTS ========== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    top: -250px;
    left: -250px;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
    top: 50%;
    right: -200px;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    bottom: -300px;
    left: 30%;
    animation: floatOrb3 30s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
    top: 20%;
    right: 20%;
    animation: floatOrb4 22s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.2);
    }

    66% {
        transform: translate(-80px, 100px) scale(0.9);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, -100px) scale(1.1);
    }

    66% {
        transform: translate(80px, 120px) scale(0.95);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, -80px) scale(1.15);
    }

    66% {
        transform: translate(100px, -120px) scale(0.9);
    }
}

@keyframes floatOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(90px, 110px) scale(1.25);
    }

    66% {
        transform: translate(-100px, -90px) scale(0.85);
    }
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Floating Dots */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(3px);
    transition: opacity 0.6s ease-out,
        transform 0.6s ease-out,
        filter 0.6s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(5px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.3, 0.64, 1),
        transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1),
        filter 0.6s ease-out;
}

.scroll-scale.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.scroll-fade {
    opacity: 0;
    filter: blur(3px) brightness(0.7);
    transition: opacity 0.6s ease-out,
        filter 0.6s ease-out;
}

.scroll-fade.active {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.scroll-scale.active,
.scroll-animate.active {
    animation: smoothGlow 0.8s ease-out;
}

@keyframes smoothGlow {
    0% {
        box-shadow: 0 0 0 rgba(139, 92, 246, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    100% {
        box-shadow: 0 0 0 rgba(139, 92, 246, 0);
    }
}

@media (max-width: 968px) {
    body {
        padding-top: 0;
    }

    * {
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
    }

    .glass-navbar {
        top: max(10px, env(safe-area-inset-top));
        width: 95%;
        padding: 12px max(20px, env(safe-area-inset-right)) 12px max(20px, env(safe-area-inset-left));
        border-radius: 18px;
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        min-width: 44px;
        min-height: 44px;
        /* Touch-friendly size */
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px) scale(0.8);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 21, 53, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 18px;
        padding: 20px;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    }

    .navbar-menu.active {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-menu li {
        opacity: 0;
        transform: translateX(-20px);
        animation: none;
    }

    .navbar-menu.active li {
        animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar-menu.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar-menu.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar-menu.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navbar-menu.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navbar-menu.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navbar-menu.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-menu a {
        padding: 16px 18px;
        text-align: left;
        font-size: 1rem;
        border-radius: 12px;
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
        min-height: 48px;
        /* Touch-friendly */
        display: flex;
        align-items: center;
    }

    .navbar-cta {
        flex-direction: column;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        gap: 10px;
        opacity: 1;
        animation: none;
    }

    .join-hero {
        padding: 120px max(20px, env(safe-area-inset-right)) 80px max(20px, env(safe-area-inset-left));
    }

    .join-hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }

    .join-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .join-hero-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        padding: 16px 35px;
        font-size: 1rem;
        min-height: 54px;
        /* Touch-friendly button */
    }

    .roles-section,
    .benefits-section,
    .application-section {
        padding: 80px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-label {
        font-size: 0.8rem;
        padding: 8px 18px;
        display: inline-block;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        padding: 0 10px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .role-card {
        padding: 35px 25px;
        text-align: center;
        border-radius: 20px;
    }

    .role-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

    .role-icon img {
        width: 90px;
        height: 90px;
    }

    .role-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .role-card p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 25px;
    }

    .role-requirements {
        text-align: left;
        max-width: 100%;
    }

    .role-requirements li {
        font-size: 0.95rem;
        padding: 10px 0 10px 35px;
        line-height: 1.6;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 30px;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .application-form {
        padding: 40px 25px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 18px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .submit-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-height: 54px;
        /* Touch-friendly button */
    }

    .bg-orb {
        opacity: 0.3 !important;
        filter: blur(80px) !important;
        animation-duration: 30s !important;
        display: block !important;
    }
    
    .grid-lines {
        opacity: 0.8 !important;
        background-size: 40px 40px !important;
        animation-duration: 30s !important;
        background-image:
            linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px) !important;
        display: block !important;
    }
    
    .floating-dots {
        opacity: 0.6 !important;
        display: block !important;
    }

    .footer {
        padding: 60px 25px 30px !important;
        background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
    }

    .footer-container {
        padding: 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        margin-bottom: 40px !important;
        padding-bottom: 40px !important;
        border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    }

    .footer-brand {
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 10px;
    }

    .footer-logo {
        font-size: 2.5rem !important;
        text-align: center !important;
        display: block !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, #a78bfa, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }

    .footer-brand p {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.8 !important;
        color: rgba(255, 255, 255, 0.75) !important;
        max-width: 500px;
        margin: 0 auto 25px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap;
    }

    .social-link {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
    }

    .footer-column {
        text-align: center !important;
        padding: 20px 15px;
        background: rgba(139, 92, 246, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-column h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.5px;
    }

    .footer-column h3::after {
        left: 50% !important;
        transform: translateX(-50%);
        width: 50px !important;
        height: 3px !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-links li {
        margin-bottom: 12px !important;
    }

    .footer-links a {
        font-size: 1rem !important;
        padding: 10px 0 !important;
        display: inline-block !important;
        color: rgba(255, 255, 255, 0.75) !important;
        position: relative;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #8B5CF6, #3B82F6);
        transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
        width: 80%;
    }

    .footer-newsletter {
        max-width: 100% !important;
        margin-top: 0 !important;
    }

    .newsletter-input {
        padding: 16px 20px !important;
        font-size: 1rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        margin-bottom: 12px !important;
    }

    .newsletter-input:focus {
        background: rgba(139, 92, 246, 0.12) !important;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    }

    .newsletter-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    }

    .newsletter-btn:hover {
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 18px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-copyright {
        font-size: 0.95rem !important;
        order: 2 !important;
        color: rgba(255, 255, 255, 0.65) !important;
        letter-spacing: 0.3px;
    }

    .footer-links-bottom {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        order: 1 !important;
        flex-direction: row !important;
    }

    .footer-links-bottom a {
        font-size: 0.95rem !important;
        padding: 8px 12px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-radius: 8px;
        transition: all 0.3s ease !important;
    }

    .footer-links-bottom a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: #a78bfa !important;
    }
}

@media (max-width: 480px) {
    .join-hero {
        padding: 100px 15px 60px;
    }

    .join-hero-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
        letter-spacing: 2px;
    }

    .join-hero h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .join-hero-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
        min-height: 52px;
        /* Touch-friendly */
    }

    .roles-section,
    .benefits-section,
    .application-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 7px 16px;
        letter-spacing: 1.5px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 5px;
    }

    .roles-grid {
        gap: 25px;
    }

    .role-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .role-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 18px;
    }

    .role-icon img {
        width: 80px;
        height: 80px;
    }

    .role-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .role-card p {
        font-size: 0.95rem;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .role-requirements li {
        font-size: 0.9rem;
        padding: 9px 0 9px 32px;
        line-height: 1.5;
    }

    .role-requirements li::before {
        font-size: 1.1rem;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card {
        padding: 25px;
        border-radius: 18px;
    }

    .benefit-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    .application-form {
        padding: 30px 20px;
        border-radius: 25px;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 13px 16px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    .submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 52px;
        /* Touch-friendly */
    }

    .footer {
        padding: 50px 15px 25px !important;
    }

    .footer-top {
        gap: 35px !important;
    }

    .footer-logo {
        font-size: 2.2rem !important;
    }

    .footer-brand p {
        font-size: 0.95rem !important;
    }

    .social-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }

    .footer-column {
        padding: 15px 10px !important;
    }

    .footer-column h3 {
        font-size: 1.1rem !important;
    }

    .footer-links a {
        font-size: 0.95rem !important;
    }

    .newsletter-input,
    .newsletter-btn {
        padding: 14px 18px !important;
        font-size: 16px !important;
        /* Prevents zoom on iOS */
    }

    .footer-copyright,
    .footer-links-bottom a {
        font-size: 0.9rem !important;
    }
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #8B5CF6;
}