/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    background-color: #034E8A;
    /* Brand Blue Fallback */
    transition: background-image 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.hidden {
    display: none !important;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fw-800 {
    font-weight: 800;
}

/* LOADING OVERLAY */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 78, 138, 0.95);
    /* Brand Blue Transparent */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.glass-loader {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #6366F1;
    border-right-color: #A855F7;
    animation: spin 1s linear infinite;
}

.loader-icon {
    font-size: 24px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* PROFILE PAGE */
#app-container {
    min-height: 100vh;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-panel {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#profile-header {
    text-align: center;
    margin-bottom: 28px;
}

.avatar-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #6366F1, #A855F7);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
}

#avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

#profile-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary, white);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#profile-username {
    font-size: 1rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.8));
    margin-bottom: 12px;
    font-weight: 600;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#profile-bio {
    font-size: 0.95rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.9));
    line-height: 1.6;
    white-space: pre-wrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Links */
#links-container,
#hidden-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.link-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.9));
    color: var(--card-text, #1F2937);
    padding: 16px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.link-card:active {
    transform: scale(0.97);
}

@media (hover: hover) {
    .link-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
    }
}

.link-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.link-icon {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

.link-title {
    font-size: 0.95rem;
}

.show-more-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary, white);
    border-radius: 20px;
    padding: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.show-more-btn:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.2);
}

.link-icon-container,
.link-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-right: 12px;
    flex-shrink: 0;
}

.link-icon-container img,
.link-icon-wrapper img {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: contain;
}

/* Footer Badge */
#footer {
    margin-top: 32px;
    text-align: center;
}

.irange-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ERROR UI */
#error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #0F172A;
    background-image: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.15), transparent 40%);
}

.error-glass-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.error-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: #94A3B8;
}

.pulse-animation {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

#error-message {
    color: white;
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.error-subtext {
    color: #94A3B8;
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-cta {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-cta p {
    color: #CBD5E1;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366F1, #C084FC);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 16px;
    width: 100%;
    transition: 0.3s;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.premium-btn.white-btn {
    background: white;
    color: #0F172A;
}

/* THEMES - ALL APP THEMES (Colors only, backgrounds applied via JS) */
.theme-default {
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #1F2937;
}

.theme-free_biz_blue {
    --text-primary: #1A237E;
    --text-secondary: #303F9F;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #1A237E;
}

.theme-free_cr_spark {
    --text-primary: #880E4F;
    --text-secondary: #C2185B;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #880E4F;
}

.theme-free_fest_joy {
    --text-primary: #E65100;
    --text-secondary: #EF6C00;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #E65100;
}

.theme-free_shop_fresh {
    --text-primary: #004D40;
    --text-secondary: #00695C;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #004D40;
}

.theme-free_grad_sunset {
    --text-primary: #4527A0;
    --text-secondary: #5E35B1;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #4527A0;
}

.theme-free_min_slate {
    --text-primary: #37474F;
    --text-secondary: #455A64;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-text: #37474F;
}

.theme-pro_biz_office,
.theme-pro_biz_desk,
.theme-pro_biz_city,
.theme-pro_biz_minimal,
.theme-pro_biz_conf,
.theme-pro_cr_studio,
.theme-pro_cr_lens,
.theme-pro_cr_art,
.theme-pro_cr_game,
.theme-pro_cr_travel,
.theme-pro_fest_diwali,
.theme-pro_fest_holi,
.theme-pro_fest_xmas,
.theme-pro_fest_halloween,
.theme-pro_fest_eid,
.theme-pro_shop_fashion,
.theme-pro_shop_coffee,
.theme-pro_shop_tech,
.theme-pro_shop_bakery,
.theme-pro_shop_handmade,
.theme-pro_grad_fluid,
.theme-pro_grad_smoke,
.theme-pro_grad_geo,
.theme-pro_grad_aurora,
.theme-pro_grad_galaxy,
.theme-pro_min_marble,
.theme-pro_min_concrete,
.theme-pro_min_shadow,
.theme-pro_min_paper {
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-text: #111827;
}

/* MOBILE APP WRAPPER constraint */
#mobile-app-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: transparent;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* LANDING PAGE - MOBILE ONLY REDESIGN */
#landing-page.active {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: #020617;
    background-image:
        radial-gradient(at 0% 0%, rgba(3, 78, 138, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(123, 62, 231, 0.3) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(2, 6, 23, 1) 0px, transparent 100%);
}

.mobile-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(3, 78, 138, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
}

.nav-btn-small {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-main-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: 60px;
    /* Account for header */
}

/* Mobile Sections */
.m-section {
    padding: 50px 20px;
    position: relative;
}

.hero-section {
    text-align: center;
    padding-top: 60px;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    top: 10%;
    left: 0%;
    width: 200px;
    height: 200px;
    background: #6366F1;
}

.glow-2 {
    bottom: 20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: #C084FC;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge {
    background: rgba(255, 153, 51, 0.15);
    /* Saffron Accent */
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 10px;
}

.mockup-container {
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.app-mockup,
.app-mockup-alt {
    width: 240px;
    max-width: 48%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #0F172A;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-mockup {
    transform: rotate(-8deg) translateX(15px);
    z-index: 2;
}

.app-mockup-alt {
    transform: rotate(8deg) translateX(-15px);
    z-index: 1;
    filter: brightness(0.7);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim-delay {
    animation: float 6s ease-in-out 3s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg) translateX(15px);
    }

    50% {
        transform: translateY(-20px) rotate(-8deg) translateX(15px);
    }
}

.app-mockup-alt.float-anim-delay {
    animation: floatAlt 6s ease-in-out 3s infinite;
}

@keyframes floatAlt {

    0%,
    100% {
        transform: translateY(0) rotate(8deg) translateX(-15px);
    }

    50% {
        transform: translateY(-20px) rotate(8deg) translateX(-15px);
    }
}

.hero-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

.hero-btn i {
    font-size: 1.2rem;
}

.hero-microcopy {
    font-size: 0.8rem;
    color: #64748B;
}

/* Features Grid */
.features-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-badge {
    color: #FFFFFF;
    /* Saffron Accent */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.badge-center {
    text-align: center;
    display: block;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.text-center {
    text-align: center;
}

.m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.m-card {
    background: rgba(255, 255, 255, 0.05);
    /* Lighter on blue */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: white;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #6366F1, #818CF8);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.m-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.m-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Use Case Chips */
.usecase-scroll-x {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.usecase-scroll-x::-webkit-scrollbar {
    display: none;
}

.usecase-chip {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    scroll-snap-align: start;
}

.usecase-chip i {
    color: #A855F7;
}

/* Real Template Gallery */
.template-gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 20px 30px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.template-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.template-card {
    flex: 0 0 160px;
    height: 280px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.template-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.template-name-badge {
    position: absolute;
    bottom: 15px;
    left: 10px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

/* Pricing Carousel */
.pricing-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
    padding: 10px 20px 30px;
    -webkit-overflow-scrolling: touch;
}

.pricing-carousel::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    flex: 0 0 75%;
    max-width: 320px;
    scroll-snap-align: center;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlighted {
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), rgba(30, 41, 59, 0.8));
    border-color: rgba(99, 102, 241, 0.4);
    position: relative;
    /* Removed overflow: hidden to allow popularity tag to show */
}

.popular-tag,
.trial-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popular-tag {
    background: linear-gradient(135deg, #6366F1, #C084FC);
    color: white;
}

.trial-tag {
    background: #10B981;
    color: white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.price span {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.pricing-features i {
    color: #10B981;
    font-size: 0.9rem;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-btn:active {
    transform: scale(0.97);
}

.plan-btn.outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-btn.solid {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

/* Bottom CTA */
.cta-glass-panel {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
}

.cta-glass-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-glass-panel p {
    color: #CBD5E1;
    margin-bottom: 24px;
    font-size: 1rem;
}

.btn-lg {
    padding: 18px 24px;
    font-size: 1.1rem;
}

.footer-links-m {
    margin-top: 30px;
    text-align: center;
    color: #64748B;
    font-size: 0.85rem;
}

.footer-links-m a {
    color: #94A3B8;
    text-decoration: none;
}

/* Fixed Bottom Tab Bar */
.bottom-tab-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    height: 70px;
    display: none;
    justify-content: space-around;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 25%;
    gap: 4px;
}

.tab-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.tab-item.active {
    color: #A855F7;
}

.highlight-tab {
    color: #6366F1;
    font-weight: 700;
}

.highlight-tab i {
    background: linear-gradient(135deg, #6366F1, #C084FC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utils */
.fade-in-up {
    animation: fadeInUp 0.8s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Footer */
.company-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    gap: 15px;
}

.footer-content p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Landing Page Layout Fixes */
#landing-page {
    padding-bottom: 80px !important;
}

.mobile-main-scroll {
    padding-bottom: 80px;
}

/* Link Card Entry Animations */
.link-card {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpLink 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpLink {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card:nth-child(1) {
    animation-delay: 0.1s;
}

.link-card:nth-child(2) {
    animation-delay: 0.15s;
}

.link-card:nth-child(3) {
    animation-delay: 0.2s;
}

.link-card:nth-child(4) {
    animation-delay: 0.25s;
}

.link-card:nth-child(5) {
    animation-delay: 0.3s;
}

.link-card:nth-child(6) {
    animation-delay: 0.35s;
}

.link-card:nth-child(7) {
    animation-delay: 0.4s;
}

.link-card:nth-child(8) {
    animation-delay: 0.45s;
}