/* ==========================================================================
   CSS CUSTOM VARIABLES: SYSTEM & BRAND (BuyPass Dark Luxury)
   ========================================================================== */
:root {
    /* Fondos - Dark Luxury Tech */
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    /* Acento Primario: #A855F7 (Purple) */
    --primary-50: #faf5ff;
    --primary-100: #f3e8ff;
    --primary-200: #e9d5ff;
    --primary-300: #d8b4fe;
    --primary-400: #c084fc;
    --primary-500: #a855f7;
    --primary-600: #9333ea;
    --primary-700: #7e22ce;
    --primary-800: #6b21a8;
    --primary-900: #581c87;
    /* Para uso en rgba() */
    --primary-rgb: 168, 85, 247;

    /* Textos y Acentos */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;

    /* Tipografía */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Gradientes Base */
    --gradient-hero: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-400) 100%);
    --gradient-bg: radial-gradient(circle at top, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
}

/* ==========================================================================
   RESETS & GLOBAL
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.text-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-tertiary {
    color: var(--text-tertiary);
}

.text-quaternary {
    color: var(--text-quaternary);
}

.success-text {
    color: var(--success);
}

/* Typography Hierarchy Constraints */
h1,
.hero-title {
    font-size: clamp(3rem, 5vw + 1rem, 76px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2,
.section-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 24px);
    font-weight: 600;
    line-height: 1.3;
}

/* ==========================================================================
   BG PARTICLES & GRADIENTS
   ========================================================================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--gradient-bg);
    z-index: -2;
    pointer-events: none;
}

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--primary-500);
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.1;
    }

    25% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, -200px);
        opacity: 0.3;
    }

    75% {
        transform: translate(-100px, -100px);
        opacity: 0.8;
    }
}

/* ==========================================================================
   BUTTONS & COMPONENTS
   ========================================================================== */
.btn-primary {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.5),
        0 4px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow:
        0 0 0 2px rgba(var(--primary-rgb), 0.8),
        0 8px 40px rgba(var(--primary-rgb), 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 20px;
    border-radius: 16px;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.5), 0 4px 24px rgba(var(--primary-rgb), 0.4), 0 0 60px rgba(var(--primary-rgb), 0.3);
    }

    50% {
        box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.8), 0 8px 40px rgba(var(--primary-rgb), 0.6), 0 0 80px rgba(var(--primary-rgb), 0.5);
    }
}

.pulse-btn {
    animation: pulse-glow 3s ease-in-out infinite, gradient-shift 4s ease infinite;
}

/* GLOW EFFECTS */
.glow-primary {
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.6)) drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.4));
}

.glow-text {
    color: transparent;
    background: linear-gradient(to right, var(--primary-300), var(--primary-600));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4);
}

/* Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.04) 50%, rgba(var(--primary-rgb), 0.08) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.35);
}

/* ==========================================================================
   NAVIGATION & ACTIONS
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    max-height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.lang-toggle-wrapper {
    position: relative;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    min-width: 120px;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: left;
    font-size: 14px;
    transition: 0.2s;
    cursor: pointer;
}

.lang-option:hover,
.lang-option.active {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--text-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--primary-200);
}

.hero-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    margin: 24px 0 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    opacity: 0.8;
    font-size: 14px;
}

.stat-icon {
    color: var(--success);
    margin-right: 8px;
    font-weight: bold;
}

/* Hero Animation */
.text-animation>* {
    opacity: 0;
    animation: fade-in-up 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.text-animation .hero-badge {
    animation-delay: 0.1s;
}

.text-animation .hero-title {
    animation-delay: 0.3s;
}

.text-animation .hero-subtitle {
    animation-delay: 0.5s;
}

.text-animation .hero-ctas {
    animation-delay: 0.7s;
}

.text-animation .hero-stats {
    animation-delay: 0.9s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Sphere Visual */
.3d-animation {
    opacity: 0;
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes fade-in-rotate {
    from {
        opacity: 0;
        transform: rotate(10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere {
    width: clamp(300px, 35vw, 500px);
    height: clamp(300px, 35vw, 500px);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.sphere-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: inset 0 0 60px rgba(var(--primary-rgb), 0.2), 0 0 80px rgba(var(--primary-rgb), 0.1);
}

.hero-visual {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.4));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
}

.social-text {
    font-size: 18px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 30px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 5vw, 80px);
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    filter: grayscale(100%);
    transition: 0.4s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   SERVICES (FLIP CARDS)
   ========================================================================== */
.services-section {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card-flip {
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card-flip:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.service-card-front {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s transform;
}

.service-card-flip:hover .service-image {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: left;
}

.service-title-front {
    color: white;
    margin: 0;
    font-size: 22px;
}

.service-card-back {
    background: var(--bg-tertiary);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.service-title-back {
    color: var(--primary-300);
    margin-bottom: 16px;
    font-size: 22px;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-200);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

/* ==========================================================================
   SHOWCASE SECTION
   ========================================================================== */
.showcase-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

.dashboard-mockup {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.mockup-header {
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
    transition: 0.5s;
}

.showcase-visual:hover .dashboard-img {
    filter: brightness(1.1) scale(1.02);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta {
    padding: 120px 0;
}

.cta-box {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    z-index: -1;
}

.cta-title {
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.cta-note {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading {
    margin-bottom: 24px;
    font-size: 16px;
}

.footer-link {
    display: block;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-link:hover {
    color: var(--primary-400);
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-600);
    border-color: var(--primary-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-tertiary);
    font-size: 14px;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

/* ==========================================================================
   SCROLL REVEAL & UTILS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual-wrapper {
        margin-top: 40px;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
    }

    .benefit-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions .login-link,
    .nav-actions .btn-primary {
        display: none;
    }

    .nav-actions {
        display: flex;
        gap: 16px;
        margin-right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .social-links,
    .footer-bottom {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .sphere {
        width: 250px;
        height: 250px;
    }
}

/* ==========================================================================
   VELVET ROPE MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
}

.modal-overlay.hidden {
    display: none !important;
}

.modal-content {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    width: 100%;
    max-width: 448px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #94a3b8;
    background: transparent;
    border: none;
    transition: color 0.3s;
    cursor: pointer;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #ffffff;
}

.modal-desc {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-input {
    width: 100%;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    transition: all 0.3s;
}

.modal-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 1px #6366f1;
}

.modal-btn {
    width: 100%;
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.modal-btn:hover {
    background-color: #e2e8f0;
}