 /* ========== MAIN STYLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(145deg, #f0f7ff 0%, #e3f0fe 100%);
            color: #0a2540;
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 1rem;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: 100%;
            overflow-x: hidden;
        }

        /* subtle animated blue orbs */
        body::before {
            content: '';
            position: fixed;
            width: 40vmax;
            height: 40vmax;
            background: radial-gradient(circle at 40% 50%, rgba(30, 144, 255, 0.06) 0%, transparent 60%);
            top: 5%;
            left: -5%;
            border-radius: 50%;
            animation: float 28s infinite alternate ease-in-out;
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            width: 50vmin;
            height: 50vmin;
            background: radial-gradient(circle, rgba(0, 119, 255, 0.05) 0%, transparent 70%);
            bottom: 0%;
            right: 0%;
            border-radius: 50%;
            animation: float 22s infinite alternate-reverse ease-in-out;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-3%, 5%) scale(1.2); }
        }

        .landing-card {
            max-width: 1400px;
            width: 100%;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 56px;
            padding: 2.5rem 3rem;
            box-shadow: 0 30px 60px -12px rgba(0, 53, 102, 0.15), 
                        0 0 0 1px rgba(0, 110, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.2, 1);
            position: relative;
            z-index: 10;
        }

        /* header / navigation */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* site logo - transparent background */
        .site-logo {
            height: 48px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.25s ease, filter 0.3s;
            filter: drop-shadow(0 4px 8px rgba(2, 82, 142, 0.15));
        }

        .site-logo:hover {
            transform: scale(0.98);
            filter: drop-shadow(0 8px 12px rgba(0, 100, 200, 0.2));
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(150deg, #0f2b4b, #0c4e7a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .sign-in {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1e5f8e;
            background: rgba(0, 110, 230, 0.08);
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            border: 1px solid rgba(0, 102, 204, 0.25);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
            white-space: nowrap;
        }

        .sign-in i {
            font-size: 0.9rem;
            color: #006bb3;
        }

        .sign-in:hover {
            background: rgba(0, 119, 255, 0.12);
            border-color: #0080ff;
            box-shadow: 0 4px 10px rgba(0,80,130,0.1);
        }

        .sign-in:active {
            transform: scale(0.98);
        }

        /* ---------- CENTERED HERO SECTION ---------- */
        .hero-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 1.5rem 0 3rem;
            width: 100%;
        }

        /* toggle buttons - brand/creator */
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 60px;
            padding: 0.5rem;
            border: 1px solid rgba(0, 110, 230, 0.15);
            box-shadow: 0 5px 15px rgba(0,50,90,0.05);
            width: fit-content;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .toggle-btn {
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            background: transparent;
            color: #1e5f8e;
            transition: all 0.25s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            white-space: nowrap;
        }

        .toggle-btn i {
            font-size: 1.1rem;
        }

        .toggle-btn.active {
            background: linear-gradient(145deg, #0a66c2, #0055a5);
            color: white;
            box-shadow: 0 8px 16px -6px #00497a;
        }

        .toggle-btn:first-child {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .toggle-btn:last-child {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

        .toggle-btn:active {
            transform: scale(0.96);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            background: linear-gradient(160deg, #083755, #0e5882);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
            max-width: 900px;
            animation: fadeSlideUp 0.8s ease;
            width: 100%;
        }

        .highlight-blue {
            background: linear-gradient(145deg, #0077be, #004e80);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero-subheadline {
            font-size: 1.25rem;
            color: #2e5775;
            margin-bottom: 2.5rem;
            font-weight: 450;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeSlideUp 0.9s ease;
            width: 100%;
        }

        .hero-cta-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeSlideUp 1s ease;
            margin-bottom: 1rem;
            width: 100%;
        }

        .btn-primary-large {
            background: #0a66c2;
            border: none;
            border-radius: 50px;
            padding: 1.1rem 3rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 15px 25px -10px #00497a;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.3);
            cursor: pointer;
            min-height: 60px;
        }

        .btn-primary-large i {
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .btn-primary-large:hover {
            background: #005bb5;
            transform: scale(1.04) translateY(-2px);
            box-shadow: 0 22px 35px -12px #003f66;
        }

        .btn-primary-large:active {
            transform: scale(0.98) translateY(0);
        }

        .btn-primary-large:hover i {
            transform: translateX(5px);
        }

        /* ---------- VIDEO SLIDESHOW / LOOPING MP4 VIDEOS ---------- */
        .video-reel-section {
            margin: 4rem 0 3.5rem;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .reel-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1f628b;
            margin-bottom: 1.2rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .reel-title i {
            color: #0080d0;
            font-size: 1.2rem;
        }

        .video-slider {
            display: flex;
            gap: 1.2rem;
            animation: slideLoop 40s linear infinite;
            width: fit-content;
            -webkit-overflow-scrolling: touch;
        }

        .video-slider:hover {
            animation-play-state: paused;
        }

        .video-item {
            min-width: 200px;
            width: 200px;
            height: 320px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0,60,110,0.25);
            border: 1px solid rgba(255,255,255,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #0a3350;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .video-item:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 22px 40px -12px #004a7c;
            border-color: rgba(0, 160, 255, 0.5);
        }

        .video-item:active {
            transform: scale(0.98) translateY(0);
        }

        .video-content {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }

        .video-label {
            position: absolute;
            bottom: 16px;
            left: 0;
            right: 0;
            text-align: center;
            font-weight: 600;
            background: rgba(0, 20, 40, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 0.7rem;
            margin: 0 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: white;
            border: 1px solid rgba(255,255,255,0.25);
            letter-spacing: 0.02em;
            z-index: 5;
        }

        @keyframes slideLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ---------- TEXT SLIDER (TAGS) ---------- */
        .text-slider-section {
            margin: 2.5rem 0 3rem;
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
        }

        .text-slider-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1f628b;
            margin-bottom: 1.5rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .tag-slider {
            display: flex;
            gap: 1rem;
            animation: slideLoop 30s linear infinite;
            width: fit-content;
        }

        .tag-item {
            padding: 0.8rem 1.8rem;
            background: rgba(0, 110, 230, 0.06);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 60px;
            font-weight: 600;
            color: #11547c;
            border: 1px solid rgba(0, 119, 255, 0.2);
            box-shadow: 0 4px 12px rgba(0,50,80,0.02);
            font-size: 1rem;
            white-space: nowrap;
            transition: all 0.2s;
        }

        .tag-item:hover {
            background: rgba(0, 140, 255, 0.12);
            border-color: #3399ff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px #004c99;
        }

        .tag-item:active {
            transform: scale(0.96);
        }

        .tag-item i {
            margin-right: 0.5rem;
            color: #0077be;
        }

        /* ---------- WHY JOIN GAZELLO SECTION ---------- */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin: 4rem 0 1.5rem;
            background: linear-gradient(160deg, #083755, #0e5882);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            width: 100%;
        }

        .perks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2.5rem 0 3.5rem;
        }

        .perk-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 2rem 1.8rem;
            border: 1px solid rgba(0, 110, 230, 0.12);
            box-shadow: 0 15px 30px -10px rgba(0,60,110,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .perk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0a66c2, #40a0ff);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .perk-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -14px #004a7c;
            border-color: rgba(0, 140, 255, 0.3);
        }

        .perk-card:active {
            transform: scale(0.98) translateY(0);
        }

        .perk-card:hover::before {
            opacity: 1;
        }

        .perk-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(145deg, #e6f0ff, #d4e8ff);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .perk-icon i {
            font-size: 2rem;
            color: #0a66c2;
        }

        .perk-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0a4b70;
        }

        .perk-description {
            font-size: 1rem;
            color: #2e5775;
            line-height: 1.6;
        }

        /* stats counter */
        .stats-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 2.5rem 2rem;
            margin: 3rem 0 4rem;
            border: 1px solid rgba(0, 110, 230, 0.15);
            box-shadow: 0 20px 40px -12px rgba(0,60,110,0.1);
            width: 100%;
        }

        .stat-item {
            text-align: center;
            position: relative;
            flex: 1;
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(145deg, #095e8f, #003f66);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e5e83;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .stat-detail {
            font-size: 0.9rem;
            color: #3a7a9c;
            margin-top: 0.3rem;
        }

        /* ---------- WHAT'S MORE IN GAZELLO SECTION ---------- */
        .whats-more-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 2rem 0 3rem;
            align-items: center;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .feature-item {
            position: relative;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 1rem 1.2rem;
            border: 1px solid rgba(0, 110, 230, 0.1);
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: default;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .feature-item i {
            font-size: 1.3rem;
            color: #0a66c2;
            min-width: 24px;
        }

        .feature-text {
            font-weight: 600;
            color: #11547c;
            font-size: 1rem;
        }

        .feature-item:hover {
            background: white;
            border-color: #3399ff;
            transform: translateX(5px);
            box-shadow: 0 8px 20px -8px #004c99;
        }

        .feature-item:active {
            transform: scale(0.98);
        }

        /* Hover modal tooltip */
        .feature-tooltip {
            position: absolute;
            bottom: 110%;
            left: 0;
            background: linear-gradient(145deg, #0a4b7a, #003f66);
            color: white;
            padding: 1rem 1.2rem;
            border-radius: 18px;
            font-size: 0.9rem;
            font-weight: 500;
            min-width: 220px;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.25);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 100;
            pointer-events: none;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            line-height: 1.5;
            letter-spacing: 0.01em;
        }

        .feature-item:hover .feature-tooltip {
            opacity: 1;
            transform: translateY(0);
        }

        /* tooltip arrow */
        .feature-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 20px;
            border-width: 8px;
            border-style: solid;
            border-color: #003f66 transparent transparent transparent;
        }

        .right-image-container {
            background: linear-gradient(145deg, #e6f0ff, #d1e5ff);
            border-radius: 32px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 380px;
            border: 1px solid rgba(0, 110, 230, 0.2);
            box-shadow: 0 20px 40px -12px rgba(0,60,110,0.12);
            position: relative;
            overflow: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .right-image-container i {
            font-size: 8rem;
            color: #0a66c2;
            opacity: 0.8;
            filter: drop-shadow(0 10px 15px rgba(0,80,150,0.15));
        }

        .right-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
        }

        .image-placeholder-text {
            font-size: 1.2rem;
            color: #1e5e83;
            font-weight: 500;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }

        .section-description {
            font-size: 1.2rem;
            color: #2e5775;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 450;
            width: 100%;
        }

        /* animation keyframes */
        @keyframes fadeSlideUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes countUp {
            from { opacity: 0.7; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .attribution-note {
            font-size: 0.75rem;
            color: #3a6e8c;
            margin-top: 4rem;
            text-align: center;
            opacity: 0.7;
            border-top: 1px dashed rgba(0,110,210,0.15);
            padding-top: 1.8rem;
        }

        .glass-icon {
            color: #0a68b4;
        }

        /* ========== PERK SLIDER STYLES ========== */
        /* Hover effects for perk cards */
        [style*="min-width: 320px"]:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 40px -14px #004a7c !important;
            border-color: rgba(0, 140, 255, 0.4) !important;
            background: rgba(255, 255, 255, 0.85) !important;
            transition: all 0.3s ease;
        }
        
        [style*="min-width: 320px"]:hover div[style*="height: 4px"] {
            opacity: 1 !important;
        }
        
        /* Button hover effects */
        #prevPerkBtn:hover, #nextPerkBtn:hover {
            background: #0a66c2 !important;
            color: white !important;
            border-color: #0a66c2 !important;
            transform: scale(1.05);
        }
        
        #prevPerkBtn:active, #nextPerkBtn:active {
            transform: scale(0.92);
        }
        
        /* Dot hover and active states */
        .perk-dot:hover {
            background: #40a0ff !important;
            transform: scale(1.2);
        }
        
        .perk-dot:active {
            transform: scale(0.9);
        }
        
        .active-dot {
            width: 32px !important;
            background: #0a66c2 !important;
            border-radius: 20px !important;
        }

        /* ========== APPLY SECTION STYLES ========== */
        .apply-section {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .apply-container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 110, 230, 0.15);
            box-shadow: 0 20px 40px -12px rgba(0,60,110,0.12);
            position: relative;
            min-height: 500px;
        }
        
        .apply-toggle-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 60px;
            padding: 0.5rem;
            border: 1px solid rgba(0, 110, 230, 0.15);
            box-shadow: 0 5px 15px rgba(0,50,90,0.05);
            width: fit-content;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .apply-toggle-btn {
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            background: transparent;
            color: #1e5f8e;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        
        .apply-toggle-btn i {
            font-size: 1.1rem;
        }
        
        .apply-toggle-active {
            background: linear-gradient(145deg, #0a66c2, #0055a5);
            color: white !important;
            box-shadow: 0 8px 16px -6px #00497a;
        }
        
        .apply-toggle-btn:not(.apply-toggle-active):hover {
            background: rgba(0, 110, 230, 0.08);
            color: #0a66c2;
        }
        
        .apply-toggle-btn:active {
            transform: scale(0.96);
        }
        
        .apply-form {
            transition: all 0.3s ease;
        }
        
        .brand-form {
            display: block;
        }
        
        .creator-form {
            display: none;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-field {
            display: flex;
            flex-direction: column;
        }
        
        .span-2 {
            grid-column: span 2;
        }
        
        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1e5e83;
            margin-bottom: 0.5rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        
        .form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 30px;
            border: 1px solid rgba(0,110,230,0.2);
            background: white;
            font-size: 1rem;
            color: #0a2540;
            transition: all 0.2s;
            outline: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            -webkit-appearance: none;
            appearance: none;
        }
        
        .form-input:focus {
            border-color: #0a66c2;
            box-shadow: 0 0 0 3px rgba(10,102,194,0.1);
        }
        
        .form-select {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 30px;
            border: 1px solid rgba(0,110,230,0.2);
            background: white;
            font-size: 1rem;
            color: #0a2540;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%230a66c2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
            background-repeat: no-repeat;
            background-position: right 1.2rem center;
            background-size: 16px;
        }
        
        .form-select:focus {
            border-color: #0a66c2;
            box-shadow: 0 0 0 3px rgba(10,102,194,0.1);
        }
        
        .form-submit-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        .btn-submit {
            background: linear-gradient(145deg, #0a66c2, #0055a5);
            border: none;
            border-radius: 50px;
            padding: 1.1rem 3.5rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 15px 25px -10px #00497a;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.3);
            cursor: pointer;
            min-height: 60px;
        }
        
        .btn-submit i {
            font-size: 1.1rem;
            transition: transform 0.2s;
        }
        
        .btn-submit:hover {
            background: linear-gradient(145deg, #005bb5, #004080);
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 20px 30px -10px #003f66;
        }
        
        .btn-submit:active {
            transform: scale(0.98) translateY(0);
        }
        
        .btn-submit:hover i {
            transform: translateX(5px);
        }
        
        .modal {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 37, 64, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            border-radius: 48px;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            max-width: 500px;
            width: 90%;
            background: white;
            border-radius: 48px;
            padding: 2.5rem;
            box-shadow: 0 30px 60px -15px rgba(0,40,80,0.3);
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            animation: slideUp 0.4s ease;
            margin: 0 auto;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(0,110,230,0.08);
            color: #0a66c2;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .modal-close-btn:hover {
            background: rgba(0,110,230,0.15);
            transform: rotate(90deg);
        }
        
        .modal-close-btn:active {
            transform: rotate(90deg) scale(0.9);
        }
        
        .modal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #e1f5e8, #c8efe0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .modal-icon i {
            font-size: 3rem;
            color: #0a66c2;
        }
        
        .modal-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(145deg, #0a66c2, #00497a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        
        .modal-message {
            font-size: 1.1rem;
            color: #2e5775;
            text-align: center;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .modal-footer {
            font-size: 0.9rem;
            color: #3a7a9c;
            text-align: center;
        }
        
        .discord-section {
            background: linear-gradient(145deg, #f0f7ff, #e3f0fe);
            border-radius: 24px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0,110,230,0.15);
        }
        
        .discord-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .discord-header i {
            font-size: 2rem;
            color: #5865F2;
        }
        
        .discord-header span {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0a4b70;
        }
        
        .discord-text {
            font-size: 1rem;
            color: #1e5e83;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }
        
        .discord-button {
            display: inline-block;
            background: #5865F2;
            color: white;
            font-weight: 600;
            padding: 0.9rem 2rem;
            border-radius: 40px;
            text-decoration: none;
            margin-bottom: 1rem;
            transition: all 0.2s;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 16px -6px #404EED;
            width: 100%;
            text-align: center;
            -webkit-touch-callout: none;
        }
        
        .discord-button:hover {
            background: #404EED;
            transform: scale(1.02);
            box-shadow: 0 12px 20px -8px #404EED;
        }
        
        .discord-button:active {
            transform: scale(0.98);
        }
        
        .discord-button i {
            margin-right: 0.5rem;
        }
        
        .discord-note {
            font-size: 0.85rem;
            color: #3a7a9c;
            margin-top: 0.5rem;
        }
        
        .discord-note i {
            margin-right: 0.3rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 1000px) {
            .hero-title { font-size: 3.2rem; }
            .landing-card { padding: 2rem; }
            .video-item { min-width: 170px; width: 170px; height: 280px; }
            .perks-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-container { flex-direction: column; gap: 2rem; }
            .whats-more-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 2.2rem; }
        }

        @media (max-width: 768px) {
            body { padding: 0.75rem; }
            
            [style*="min-width: 320px"] {
                min-width: 280px !important;
                width: 280px !important;
                padding: 1.5rem 1.2rem !important;
            }
            
            .apply-section {
                padding: 1rem;
            }
            
            .apply-container {
                padding: 1.8rem;
                min-height: 400px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .span-2 {
                grid-column: span 1;
            }
            
            .apply-toggle-btn {
                padding: 0.7rem 1.5rem;
                font-size: 1rem;
            }
            
            .btn-submit {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .modal-content {
                padding: 1.8rem;
                width: 95%;
            }
            
            .modal-title {
                font-size: 1.6rem;
            }
            
            .modal-icon {
                width: 60px;
                height: 60px;
            }
            
            .modal-icon i {
                font-size: 2.2rem;
            }
            
            .stats-container {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .features-list {
                gap: 0.8rem;
            }
            
            .feature-item {
                padding: 0.8rem 1rem;
            }
            
            .feature-tooltip {
                display: none;
            }
            
            .feature-item:hover .feature-tooltip {
                display: none;
            }
            
            .right-image-container {
                min-height: 250px;
            }
            
            .right-image-container i {
                font-size: 5rem;
            }
        }

        @media (max-width: 700px) {
            .hero-title { 
                font-size: 2.5rem; 
                br { display: none; }
            }
            .toggle-btn { 
                padding: 0.6rem 1.2rem; 
                font-size: 0.95rem;
            }
            .brand-name { font-size: 1.3rem; }
            .landing-card { 
                padding: 1.5rem; 
                border-radius: 40px; 
            }
            .video-item { 
                min-width: 140px; 
                width: 140px; 
                height: 220px; 
            }
            .video-label { 
                font-size: 0.7rem; 
                padding: 0.4rem;
                bottom: 10px;
            }
            .perks-grid { grid-template-columns: 1fr; }
            .features-list { grid-template-columns: 1fr; }
            .section-title { 
                font-size: 1.8rem; 
                margin: 2.5rem 0 1rem;
            }
            .stat-number { font-size: 2.2rem; }
            .stat-label { font-size: 0.9rem; }
            .stat-detail { font-size: 0.8rem; }
            .section-description { font-size: 1rem; }
            .hero-subheadline { font-size: 1.1rem; }
            .navbar { gap: 0.75rem; }
            .site-logo { height: 40px; }
            .sign-in { 
                padding: 0.5rem 1.2rem; 
                font-size: 0.95rem;
            }
        }

        @media (max-width: 500px) {
            body { padding: 0.5rem; }
            
            .landing-card { padding: 1.2rem; }
            
            .toggle-container { 
                width: 100%; 
                padding: 0.4rem;
            }
            
            .toggle-btn { 
                padding: 0.5rem 1rem; 
                font-size: 0.9rem;
                gap: 0.3rem;
                flex: 1;
                justify-content: center;
            }
            
            .toggle-btn i { font-size: 0.9rem; }
            
            .btn-primary-large { 
                padding: 0.8rem 1.5rem; 
                font-size: 1rem;
                width: 100%;
                min-height: 50px;
            }
            
            .hero-cta-center { 
                gap: 0.8rem; 
                flex-direction: column;
            }
            
            .video-item { 
                min-width: 120px; 
                width: 120px; 
                height: 200px; 
            }
            
            .reel-title { 
                font-size: 0.9rem; 
                gap: 0.3rem;
            }
            
            .text-slider-title { 
                font-size: 0.85rem; 
                gap: 0.3rem;
            }
            
            .tag-item { 
                padding: 0.6rem 1.2rem; 
                font-size: 0.85rem;
            }
            
            .section-title { font-size: 1.5rem; }
            
            .apply-toggle-btn { 
                padding: 0.5rem 1rem; 
                font-size: 0.9rem;
                gap: 0.3rem;
            }
            
            .apply-toggle-btn i { font-size: 0.9rem; }
            
            .form-input, .form-select { 
                padding: 0.8rem 1rem; 
                font-size: 0.95rem;
            }
            
            .form-label { font-size: 0.8rem; }
            
            .modal-content { padding: 1.5rem; }
            .modal-title { font-size: 1.4rem; }
            .modal-message { font-size: 1rem; }
            .discord-header span { font-size: 1.1rem; }
            .discord-text { font-size: 0.9rem; }
            .discord-button { padding: 0.8rem 1.5rem; }
        }

        @media (max-width: 480px) {
            [style*="min-width: 320px"] {
                min-width: 240px !important;
                width: 240px !important;
                padding: 1.2rem 1rem !important;
            }
            
            #prevPerkBtn, #nextPerkBtn {
                width: 36px !important;
                height: 36px !important;
                min-width: 36px !important;
            }
            
            [style*="display: flex; gap: 0.6rem;"] {
                gap: 0.3rem !important;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* iOS specific fixes */
        @supports (-webkit-touch-callout: none) {
            .landing-card,
            .apply-container,
            .modal-content,
            .feature-item,
            .perk-card,
            .stats-container,
            .right-image-container,
            .video-item {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
            
            .form-input, .form-select {
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            .btn-primary-large, .btn-submit, .sign-in {
                -webkit-touch-callout: none;
            }
            
            body {
                -webkit-overflow-scrolling: touch;
            }
            
            .tag-slider, .video-slider {
                -webkit-overflow-scrolling: auto;
            }
        }

        /* Fix for notch on newer iPhones */
        @supports (padding: max(0px)) {
            body {
                padding-left: max(1rem, env(safe-area-inset-left));
                padding-right: max(1rem, env(safe-area-inset-right));
                padding-top: max(1rem, env(safe-area-inset-top));
                padding-bottom: max(1rem, env(safe-area-inset-bottom));
            }
        }