body { background-color: #f8fafc; }
*{word-break: auto-phrase;}
.otgs-development-site-front-end{display: none;}
/* Background Effects */
.elegant-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    opacity: 0.6; pointer-events: none; z-index: -1;
}
.ambient-blobs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -10; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: blob 15s infinite alternate; }

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #ffe4e6; animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: #e0f2fe; animation-delay: 2s; }
.blob-3 { top: 40%; left: 40%; width: 30vw; height: 30vw; background: #f3e8ff; animation-delay: 4s; }

/* Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Opaque Menu Panel */
.glass-panel-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

/* Navigation */
.floating-nav-container {
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5); width: fit-content; min-width: 320px;
}

/* Mega Menu Animation */
.submenu-animate {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(12px) translateX(-50%);
    opacity: 0; visibility: hidden; left: 50%;
}
.group:hover .submenu-animate {
    transform: translateY(0) translateX(-50%);
    opacity: 1; visibility: visible;
}

/* Mobile Menu */
#mobile-menu { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; }
#mobile-menu.open { max-height: 400px; opacity: 1; margin-top: 1rem; overflow-y: auto; }
#mobile-menu a.mobile-link svg{width: 100%; height: 100%;}
.mobile-link-sub{ max-height: 0; opacity: 0; }
.mobile-link-sub.active{ max-height: max-content; opacity: 1; }

/* Component Styles */
.price-card { transition: all 0.3s ease; }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.highlight-card { border: 2px solid #B30000; background: rgba(255, 255, 255, 0.9); z-index: 10; transform: scale(1.02); }

/** Pricing Table CSS **/
.price-card { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.pack-input {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(15, 23, 42, 0.05);
    border-radius: 1rem;
    transition: all 0.3s;
}
.pack-input:focus { outline: none; border-color: #B30000; background: white; }

.feature-table th, .feature-table td { padding: 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); vertical-align: middle; }
.feature-table tr:last-child td { border: none; }

/* Accordion Style */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.check-list li { display: flex; align-items: start; margin-bottom: 0.75rem; font-size: 0.95rem; color: #4b5563; }
.check-list li svg { flex-shrink: 0; margin-right: 0.75rem; color: #B30000; margin-top: 0.25rem; }

.bg-grid-pattern {
    background-image: linear-gradient(to right, #e2e8f0 1px, transparent 1px), linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
}

.tech-grid {
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 40%, black 70%, transparent 95%);
    opacity: 0.4;
}

/* Form Focus Animations */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #B30000;
    box-shadow: 0 0 0 4px rgba(179, 0, 0, 0.1);
}
