:root {
    /* Deep Navy Cyber Theme */
    --bg-dark: #020617;
    /* Slate 950 - Deep Navy Black */
    --primary: #3b82f6;
    /* Blue 500 */
    --secondary: #6366f1;
    /* Indigo 500 */
    --accent: #06b6d4;
    /* Cyan 500 */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.4);
    /* Slate 800 with opacity */
    --card-border: rgba(148, 163, 184, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(99, 102, 241, 0.08), transparent 25%);
}

/* Background Effects */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.gradient-orb {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -2;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, #1d4ed8, transparent 70%);
}

.orb-2 {
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, #4338ca, transparent 70%);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navigation Logo */
.nav-logo-img {
    height: 60px;
    /* Adjust size as needed */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    /* Blue glow */
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-main);
}

/* Button Animations */
@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.nav-btn {
    background: white;
    color: black;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Distinct style for the second nav button (Kup Teraz) if needed, 
   or keep them consistent. Let's make the second one (last-child) stand out more. */
.nav-links .nav-btn:last-child {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-links .nav-btn:last-child:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Hero Section V2 */
.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    perspective: 1000px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content.centered {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.badge-glow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text-main {
    background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.centered-actions {
    justify-content: center;
    gap: 20px;
    display: flex;
}

/* Base CTA Button - Pill Shape (Smaller) */
.cta-btn {
    padding: 14px 32px;
    /* Slight reduction */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    /* Slight reduction */
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

/* Primary Button: White Pill (Like "Zaloguj się") */
.cta-btn.primary-glow {
    background: #ffffff;
    color: #020617;
    /* Deep Navy Text */
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-btn.primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
}

/* Video Button: Glass/Outline Pill */
.cta-btn.video-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn.video-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #020617;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Instruction Button */
.cta-btn.instruction-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn.instruction-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(99, 102, 241, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Modals Enhanced */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 40px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: translateY(40px);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-backdrop.active .modal-card {
    transform: translateY(0);
}

.instruction-card {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--d-blue) transparent;
}

.instruction-card::-webkit-scrollbar {
    width: 6px;
}

.instruction-card::-webkit-scrollbar-thumb {
    background: var(--d-blue);
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 100;
    transition: 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.instruction-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.inst-panel {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 24px;
}

.inst-panel.android {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.1);
}

.panel-header {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inst-panel ol {
    padding-left: 20px;
    color: var(--text-muted);
}

.inst-panel li {
    margin-bottom: 8px;
}

.inst-footer {
    text-align: center;
    font-weight: 600;
    color: #4ade80;
    padding: 10px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 12px;
}

/* Diamond V2 Browser Modal */
.diamond-reminder-card {
    background: #0f172a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    padding: 50px 40px;
}

.diamond-reminder-card .modal-glow-top {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.reminder-header .modal-title {
    color: #fff;
    background: none;
    -webkit-text-fill-color: initial;
}

.reminder-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #ef4444;
}

.reminder-instruction {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.warning-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.w-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.w-icon {
    font-size: 18px;
}

.reminder-danger-box {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 15px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 25px;
    border: 1px dashed rgba(239, 68, 68, 0.4);
}

.kill-text {
    text-decoration: underline;
    color: #ef4444;
}

.diamond-action-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.diamond-action-btn:not([disabled]):hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.diamond-action-btn[disabled] {
    opacity: 0.5;
    background: #1e293b;
    cursor: not-allowed;
}

/* Support Area Platinum */
.support-area {
    padding: 100px 0;
    background: #ffffff;
    color: #0f172a;
}

.support-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
}

.support-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.support-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #0f172a;
}

.support-box p {
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 40px;
}

.discord-copy-container {
    display: inline-flex;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.discord-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #0f172a;
    padding-left: 20px;
    font-size: 18px;
}

.copy-trigger {
    background: #0f172a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.copy-trigger:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* Browser Check Specifics */
.browser-card {
    max-width: 500px;
}

.browser-icon-wrapper {
    font-size: 50px;
    margin-bottom: 15px;
}

.browser-check-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.check-item.ok {
    border-left: 3px solid #4ade80;
}

.check-item.warn {
    border-left: 3px solid #facc15;
}

.browser-alert-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px dashed #ef4444;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    text-align: left;
}

.browser-alert-box .highlight {
    color: #ef4444;
    font-weight: 800;
}

.pulse-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    padding: 20px;
    border-radius: 20px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

/* Icons */
.btn-icon {
    font-size: 18px;
    line-height: 1;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.separator {
    color: #334155;
}

/* Video Modal Specifics */
.video-modal-card {
    background: #000;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
}


.cta-btn.primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: -1;
}

.cta-btn.primary-glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-3px) scale(1.02);
    border-color: #93c5fd;
}

.cta-btn.primary-glow:hover::before {
    transform: translateX(100%);
}

.cta-btn.glass-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-btn.glass-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-btn.glass-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.cta-btn.glass-btn:hover::after {
    opacity: 1;
}

.cta-btn:active {
    transform: scale(0.95) !important;
}

/* 3D Phone Visual */
.hero-3d-scene {
    width: 320px;
    height: 600px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 40px;
    border: 8px solid #1e293b;
    box-shadow:
        0 0 0 2px #334155,
        0 50px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(59, 130, 246, 0.2) inset;
    position: relative;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(10deg);
    transition: transform 0.3s;
}

.hero-3d-scene:hover .phone-mockup {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-content {
    padding: 20px;
    height: 100%;
    background: linear-gradient(180deg, #1e293b 0%, #020617 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.app-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.m-card {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    border-radius: 16px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.m-photo {
    width: 80px;
    height: 100px;
    background: #94a3b8;
    position: absolute;
    left: 20px;
    top: 30px;
    border-radius: 8px;
}

.m-lines {
    position: absolute;
    left: 110px;
    top: 40px;
}

.m-line {
    height: 8px;
    background: #cbd5e1;
    border-radius: 4px;
    margin-bottom: 10px;
}

.l1 {
    width: 100px;
}

.l2 {
    width: 60px;
}

.m-holo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(59, 130, 246, 0.4) 50%, transparent 60%);
    animation: holoSweep 3s infinite linear;
}

@keyframes holoSweep {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(150%);
    }
}

.floating-widgets {
    width: 100%;
    display: flex;
    gap: 10px;
}

.widget {
    flex: 1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Stats Ticker */
.stats-ticker {
    background: #0f172a;
    padding: 15px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    animation: scrollTicker 30s linear infinite;
    color: #64748b;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.ticker-content span {
    color: #fff;
    margin: 0 10px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bento Grid */
.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 60px;
}

.bento-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.box-large {
    grid-column: span 2;
    grid-row: span 1;
}

.box-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.box-small {
    grid-column: span 1;
    grid-row: span 1;
}

.box-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-icon {
    font-size: 40px;
    margin-bottom: auto;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.bento-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.mobile-mockup-mini {
    width: 100%;
    height: 150px;
    background: #1e293b;
    border-radius: 16px 16px 0 0;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .box-large,
    .box-wide,
    .box-tall,
    .box-small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .brand-name {
        display: none;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-brand .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-3d-scene {
        transform: scale(0.7);
        height: 500px;
        margin-top: -50px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .modal-card {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .modal-title {
        font-size: 20px;
    }

    .instruction-content {
        gap: 15px;
        margin: 20px 0;
    }

    .inst-panel {
        padding: 18px;
    }

    .panel-header {
        font-size: 16px;
    }

    .inst-panel ol {
        font-size: 13px;
    }

    .hero-3d-scene {
        transform: scale(0.6);
        height: 400px;
        margin-top: -80px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .trust-indicators .separator {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(67, 56, 202, 0.1), rgba(10, 10, 10, 0.8));
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(67, 56, 202, 0.15);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.plan-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.check-icon {
    color: var(--accent);
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.features-section {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
}

.plan-btn:hover {
    background: white;
    color: black;
}

.pricing-card.featured .plan-btn {
    background: var(--primary);
    border-color: var(--primary);
}

.pricing-card.featured .plan-btn:hover {
    background: #4f46e5;
}

/* Modal Stylings */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #0f172a;
    /* Dark Blue/Slate */
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #cbd5e1;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.modal-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 25px;
}

.info-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.info-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.badge-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

.badge-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #2dd4bf;
}

.legal-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.legal-title {
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.legal-content {
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
}

.modal-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Pricing Adjustments */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Allow badge to pop out */
}

.pricing-card.featured {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px -10px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
    /* Make it bigger by default */
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 80px -20px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

.best-choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
    animation: bounceBadge 3s infinite ease-in-out;
}

@keyframes bounceBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Existing Animations - Deprecated or Merged */
.fade-in {
    opacity: 0;
}

/* Fallback */