/* Custom Glow & Theme Colors */
:root {
    --bg-dark: #030305;
    --violet-accent: #8b5cf6;
    --indigo-accent: #6366f1;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-dark) !important;
    overflow-x: hidden;
    font-size:16px;
}

a {text-decoration:none;}

/* Remove default Bootstrap icon */
.custom-toggler {
    border: none !important;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    transition: all 0.3s ease;
}

.custom-toggler:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* --- HAMBURGER ICON BASE --- */
.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Adds a nice bounce */
}

/* --- CLOSED STATE (When it has the .collapsed class) --- */
.custom-toggler.collapsed .hamburger-icon span:nth-child(1) {
    transform: none;
}
.custom-toggler.collapsed .hamburger-icon span:nth-child(2) {
    opacity: 1;
    transform: none;
}
.custom-toggler.collapsed .hamburger-icon span:nth-child(3) {
    transform: none;
}

/* --- OPEN STATE (When .collapsed is REMOVED by Bootstrap) --- */
.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--violet-accent);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--violet-accent);
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        /* Deep obsidian background with heavy blur */
        background: rgba(10, 10, 12, 0.96); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        
        /* Spacing and shape */
        margin-top: 15px;
        padding: 25px;
        border-radius: 24px;
        
        /* Violet glow border to match your brand */
        border: 1px solid rgba(139, 92, 246, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.1);
    }

    /* Adjust nav-links for better touch targets on mobile */
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }

    /* Remove border from the last link */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Fixes the "Scroll Bottom" issue */
.top-glow {
    position: absolute;
    top: 0; left: 0; right: 0; height: 100vh;
    background:  radial-gradient(
        circle at 50% -20%, 
        rgba(139, 92, 246, 0.40) 0%, 
        rgba(99, 102, 241, 0.20) 30%, 
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Transparent Navbar */
.glass-nav {
    height: 80px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white !important;
}
.logo span { color: var(--violet-accent); }

.logo img {vertical-align:middle; max-height:58px; margin-right:5px;}


.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-link:hover { color: white !important; }

.btn-login {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

/* Gradient Button */
.btn-cta {
    background: linear-gradient(135deg, var(--indigo-accent), var(--violet-accent));
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    opacity: 0.95;
}

/* Hero Content */
.hero-section {
    padding-top: 160px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
    background: url(images/landing-bg.png) no-repeat center -100px;
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 60%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-info-box {
    padding: 30px;
    border-radius: 25px;
    display: inline-block;
}

.text-violet { color: var(--violet-accent); }

.footnote {
    margin-top: 0px;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Migration Banner */

.migration-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}


.migration-banner {
   background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.fw-900 { font-weight: 900; }

.fw-800 { font-weight: 800; }

.migration-input {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    padding: 12px 20px;
    border-radius: 12px;
}
.migration-input::placeholder { color: rgba(255,255,255,0.7); }



.btn-white {
background: white !important;
    color: var(--indigo-accent) !important;
    font-weight: 800 !important;
    padding: 12px 30px !important;
    border-radius: 12px !important;
    white-space: nowrap; /* Prevents text from wrapping to a second line */
    transition: transform 0.2s ease;
    border: none !important;
}

.btn-white:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Mission & Features Styling */
.mission-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.btn-outline-violet {
    color: var(--violet-accent);
    border: 1px solid var(--violet-accent);
    padding: 10px 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-outline-violet:hover {
    background: var(--violet-accent);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.highlight-pane {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    color: white;
    font-size: 1.2rem;
}

/* Scaled Down Vivid Icon Orbs (64px) */
.icon-orb-sm {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px; /* Slightly more squircle for a modern feel */
    font-size: 1.8rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 5px; /* Aligns better with the first line of text */
}

.orb-cpu {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
}

.orb-heart {
    background: linear-gradient(135deg, #ff0080 0%, #7928ca 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
}

/* Background Glow for Orbs */
.orb-blur {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    background: inherit;
}

/* Typography & Layout Refinement */
.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.benefit-text p {
    line-height: 1.6;
    color: #cbd5e1; /* Slightly brighter than before for better readability */
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column !important;
    }
    .icon-orb-sm {
        margin-bottom: 20px;
    }
}

/* Price & Status Callouts */
.price-callout-v2 {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
}

.status-pill {
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    font-size: 0.9rem;
}

.status-pill .dot {
    height: 8px;
    width: 8px;
    background-color: #ff0080;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #ff0080;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.opacity-90 { opacity: 0.9; }
.opacity-75 { opacity: 0.75; }

/* Animation for Collapse */
.collapse {
    transition: all 0.5s ease;
}

/* Gradient Border Mission Box */
.mission-box-wrapper {
    position: relative;
    padding: 2px; /* This defines the border thickness */
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.5));
    border-radius: 40px;
}

.mission-box {
    background: #0a0a0c; /* Solid dark color to cover the wrapper's background */
    border-radius: 38px; /* Slightly smaller than wrapper to fit inside */
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Background Decoration inside the box */

.box-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 110%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Badge Styling */
.bg-violet-gradient {
    background: linear-gradient(135deg, var(--indigo-accent), var(--violet-accent));
    padding: 8px 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Abstract Graphic on Right */
.mission-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abstract-graphic {
    position: relative;
    width: 250px;
    height: 250px;
}

.circle-one {
    position: absolute;
    width: 200px; height: 200px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.circle-two {
    position: absolute;
    top: 25px; left: 25px;
    width: 150px; height: 150px;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.floating-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bg-violet { background-color: var(--violet-accent) !important; }

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Features V2.0 Upgrade (Scalability Focus) --- */

/* Stronger Box and Glow */
.mission-box-wrapper.v2-upgrade {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(99, 102, 241, 0.05) 50%, rgba(139, 92, 246, 0.7));
}

.text-secondary {
	    color: rgb(129 112 197) !important;
}

.text-red {
    color: #fa6262 !important;
}

/* Icon Boxes Styling */
.icon-box-problem, .icon-box-solution {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Problem Icon: Warning Red/Orange */
.icon-box-problem {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Solution Icon: Success Violet/Blue Glow */
.icon-box-solution {
    background: rgba(139, 92, 246, 0.1);
    color: var(--violet-accent);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Small nudge to the icons for perfect centering */
.bi {
    line-height: 1;
}

.mission-box h2 {
    font-size: 3rem;
    font-weight: 700;
}


.mission-box  h3 {
	    color: #9069e9;
    font-size: 1.6rem;
    margin-bottom:15px;
}

.box-glow-v2 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.03) 40%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* Base style for p-xl-6 (New Bootstrap 5 utility) */
@media (min-width: 1200px) {
    .p-xl-6 { padding: 4rem !important; }
}

/* V2 Scalability Visual */
.scalability-visual-v2 {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Background Grid */
.scalability-grid {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    opacity: 0.15;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: rgba(139, 92, 246, 0.4);
}

.grid-line.horizontal {
    width: 100%; height: 1px;
}

.grid-line.vertical {
    height: 100%; width: 1px;
}

/* Positioning lines to form the grid matrix */
.grid-line.horizontal:nth-child(1) { top: 15%; }
.grid-line.horizontal:nth-child(2) { top: 32.5%; }
.grid-line.horizontal:nth-child(3) { top: 50%; }
.grid-line.horizontal:nth-child(4) { top: 67.5%; }
.grid-line.horizontal:nth-child(5) { top: 85%; }

.grid-line.vertical:nth-child(6) { left: 15%; }
.grid-line.vertical:nth-child(7) { left: 32.5%; }
.grid-line.vertical:nth-child(8) { left: 50%; }
.grid-line.vertical:nth-child(9) { left: 67.5%; }
.grid-line.vertical:nth-child(10) { left: 85%; }

/* The Active & Expanding Nodes */
.scaling-node {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.scaling-node.active {
    background: var(--violet-accent);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.4);
}

.scaling-node.expanding {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.5);
    animation: nodeExpanding 3s infinite ease-out;
}

/* Positioning nodes on grid intersections */
.node-1 { top: 32.5%; left: 15%; }
.node-2 { top: 50%; left: 32.5%; }
.node-3 { top: 67.5%; left: 15%; }
.node-4 { top: 15%; left: 50%; animation-delay: 0.5s !important; }
.node-5 { top: 85%; left: 67.5%; animation-delay: 1.2s !important; }

/* The New Floating Card V2 */
.floating-growth-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-30%, -60%);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 20px;
    width: 250px;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Decorative background glow for card */
.floating-growth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px 10px rgba(139, 92, 246, 0.1);
    z-index: -1;
}

.growth-line {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: 3;
    pointer-events: none;
}

/* Animation for expanding nodes */
@keyframes nodeExpanding {
    0% { transform: translate(-50%, -50%) scale(1); background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 0 0 rgba(139, 92, 246, 0); }
    50% { background: rgba(139, 92, 246, 0.3); border-color: rgba(139, 92, 246, 0.8); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    100% { transform: translate(-50%, -50%) scale(1.5); background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.1); box-shadow: 0 0 10px rgba(139, 92, 246, 0); opacity: 0; }
}


/* Featured Migration Box */
.migration-feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.migration-visual-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.migration-progress-pill {
    background: rgba(139, 92, 246, 0.1);
    color: var(--violet-accent);
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Value Cards V3 */
.feature-card-v3 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 3rem; /* Increased padding for wider cards */
    transition: all 0.3s ease;
}

.feature-card-v3 p {
    font-size: 1.05rem; /* Slightly larger text for the 2-column read */
    line-height: 1.7;
    margin-bottom: 0;
}

#features-v3 h3 {
	line-height: 2.2rem;
}

/* Ensure icons remain consistent */
.feature-icon-v3 {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-accent);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.bg-violet {
    background-color: var(--violet-accent) !important;
}

/* Helper for max-width on headers */
.max-w-700 { max-width: 700px; }


/* CTA Section Wrap */
.cta-wrap {
    background-color: #030305;
}

.cta-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 40px 100px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Moving Decorative Shapes */
.cta-bg-shapes div {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.shape-1 {
    width: 300px; height: 300px;
    background: #4f46e5;
    top: -100px; left: -50px;
    animation: drift 15s infinite alternate ease-in-out;
}

.shape-2 {
    width: 250px; height: 250px;
    background: #ec4899;
    bottom: -80px; right: -20px;
    animation: drift 12s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 30px); }
}

.cta-bg-shapes .top-glow {
    position: absolute;
    top: -150px; /* Смещаем вверх, чтобы центр свечения был над картой */
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    /* Радиальный градиент: в центре белое свечение, к краям прозрачно */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.4) 40%, transparent 100%);
    filter: blur(50px); /* Сильное размытие для мягкого перехода */
    pointer-events: none;
    z-index: 1;
}

/* Фикс для логотипа, чтобы он был поверх свечения и выглядел четко */
.call-logo {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); /* Дополнительное свечение самому лого */
}

/* Premium Glass Modal */
.premium-glass-modal {
    background: rgba(15, 15, 20, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.2);
}

/* Floating Icon Animation */
.success-icon-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Glow Button */
.btn-violet-glow {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.btn-violet-glow:hover {
    background: #7c3aed;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(211 145 255 / 15%);
}

/* Fancy Validation Styles */
.error-text {
    color: #ffc4c4;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    position: absolute;
    font-weight: 500;
}

.error-text.show-error {
    opacity: 1;
    transform: translateY(0);
}

.is-invalid-fancy {
    border-color: #fd9090 !important;
    box-shadow: 0 0 15px rgb(255 77 77 / 34%) !important;
}

/* Shake Animation */
.shake-anim {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* CTA Form Styling */
.cta-form-container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-input {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 12px !important;
    font-weight: 600;
    color: #1e1b4b !important;
}

.btn-white-lg {
    background: #ffffff;
    color: #6366f1 !important;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white-lg:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8fafc;
}
.orb-mission {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px; font-size: 1.8rem;
    backdrop-filter: blur(5px);
}

.call-logo {
    max-width: 100px;
    height: auto;
    margin: 0px auto;
}

/* Ensure error text aligns with the input start */
.cta-form-container .error-text {
    left: 0;
    bottom: -35px; /* Positioned slightly below the taller button */
}

/* Add some bottom margin to the form container to prevent error overlap */
.cta-form-container {
    margin-bottom: 3rem !important; 
}

/* Deep Black Professional Modal */
.login-modal-content {
    background-color: #000000 !important; /* Pure black background */
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent); /* Subtle violet tint */
    border: 1px solid rgba(139, 92, 246, 0.3) !important; /* Violet border to make it pop */
    border-radius: 28px !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 50px rgba(139, 92, 246, 0.1);
}

/* Modal Backdrop Blur */
.modal-backdrop.show {
    backdrop-filter: blur(12px); /* Heavier blur for a more premium focus */
    background-color: rgba(0, 0, 0, 0.85);
}

/* Dark Mode Input Fields */
.login-input {
    background: rgba(255, 255, 255, 0.03) !important; /* Very subtle transparency */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.login-input:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--violet-accent) !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2) !important;
    color: #fff !important;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Customizing Checkbox for Black background */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--violet-accent);
    border-color: var(--violet-accent);
}

/* Social/Secondary Text Color */
.text-secondary-dark {
    color: #94a3b8;
}

/* Smooth Transition */
.modal.fade .modal-dialog {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

footer {
    background-color: #000000;
}

footer p {
    letter-spacing: 0.5px;
    opacity: 0.6;
}

footer .text-white {
    opacity: 1;
}

/* Pricing Cards */
.pricing-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--violet-accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.1);
}

.featured-plan {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(180deg, #0a0a0c 0%, #000000 100%);
    position: relative;
    z-index: 10;
}

.plan-features li {
    padding: 8px 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* UNIT Explainer Box */
.unit-explainer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.badge-unit {
    background: rgba(139, 92, 246, 0.1);
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.x-small { font-size: 0.75rem; letter-spacing: 1px; }
.uppercase { text-transform: uppercase; }

/* Why UNIT Styling */
.unit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.bg-obsidian-glow {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent);
    border-color: rgba(139, 92, 246, 0.2);
}

.icon-orb-xs {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    color: var(--violet-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-white-5 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.vision-quote {
    max-width: 900px;
    border-left: 4px solid var(--violet-accent);
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.italic { font-style: italic; }

/* Small text adjustment for the footer of cards */
.scaling-preview .text-violet {
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

/* Best For Tags */
.best-for-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Subtle glow for the featured plan tags */
.tag-violet {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.pricing-card:hover .best-for-tag {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Custom FAQ Accordion */
.custom-faq .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-faq .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    padding: 1.5rem 0;
    box-shadow: none;
    transition: color 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: var(--violet-accent);
    background-color: transparent;
}

.custom-faq .accordion-button::after {
    filter: invert(1); /* Makes the arrow white */
}

.custom-faq .accordion-body {
    color: #94a3b8;
    padding: 0 0 1.5rem 0;
    line-height: 1.7;
}

.custom-faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
