/* Fonts */
:root {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Bisky Kleurenpalet */
    --bisky-bg: #0B0F19;
    --bisky-card: #151b2b;
    --bisky-primary: #4F46E5;
    --bisky-secondary: #ec4899;
    --bisky-accent: #06b6d4;
    --bisky-surface: rgba(30, 41, 59, 0.7);
}

/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: #0B0F19;
    color: #ffffff;
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Utility Classes voor kleuren */
.bg-bisky-bg {
    background-color: var(--bisky-bg);
}

.bg-bisky-card {
    background-color: var(--bisky-card);
}

.bg-bisky-surface {
    background-color: var(--bisky-surface);
}

.text-bisky-primary {
    color: var(--bisky-primary);
}

.text-bisky-secondary {
    color: var(--bisky-secondary);
}

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

.border-bisky-primary {
    border-color: var(--bisky-primary);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.flex-col {
    flex-direction: column;
}

.gap-3 {
    gap: 0.75rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.font-bold {
    font-weight: 700;
}

.bg-bisky-bg\/80 {
    background-color: rgba(11, 15, 25, 0.8) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0F19;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gridFlow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

@keyframes soft-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animation Utilities */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

.animate-grid-flow {
    animation: gridFlow 20s linear infinite;
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-\[bounce_5s_infinite\] {
    animation: soft-bounce 5s ease-in-out infinite;
}

.animate-\[bounce_7s_infinite\] {
    animation: soft-bounce 7s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Component Styles */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0B0F19;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

section.min-h-screen {
    background-color: #0B0F19;
    position: relative;
    overflow: hidden;
}

.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}

/* Glow Effects */
.glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    filter: blur(100px);
    opacity: 0.7;
}

.glow.top-\[-10\%\] {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

.glow.bottom-\[-10\%\] {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    opacity: 0.7;
}

.bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, 0.2);
}

.bg-pink-500\/20 {
    background-color: rgba(236, 72, 153, 0.2);
}

/* Glass Cards */
.glass-card {
    background-color: rgba(30, 41, 59, 0.4) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Text Gradients */
.gradient-text {
    background: linear-gradient(135deg, #3b5ee3 0%, #5c4be3 50%, #803ce2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.gradient-button {
    color: #ffffff;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-button:hover {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transform: scale(1.02);
}

/* Background Grids */
.perspective-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black, transparent 50%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 3D Container */
.hero-3d-container {
    transform: perspective(1000px) rotateY(-12deg) rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    --tw-bg-opacity: 1;
    background-color: rgb(11 15 25 / var(--tw-bg-opacity, 1));
    border-color: rgb(255 255 255 / 0.1);
}

.hero-3d-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-3d-container .flex.gap-1\.5 div {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* FAQ Container - Zorg dat deze altijd zichtbaar blijft */
.faq-item {
    transition: all 0.3s ease;
    height: auto;
    /* Voorkom dat het hele item inklapt */
}

/* 2. FAQ Systeem (De Fix) */
.faq-item {
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.faq-item.is-open {
    background-color: rgba(30, 41, 59, 0.7) !important;
    border-color: rgba(79, 70, 229, 0.4);
}

.faq-item.is-open .faq-content {
    max-height: 500px;
    /* Ruim genoeg voor tekst */
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

/* 3. Reveal Animation (Conflict-vrij) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Helpers & Utility Fixes */
.relative.z-10 {
    z-index: 10 !important;
}

/* Traffic Lights */
.bg-red-500\/80 {
    background-color: rgba(239, 68, 68, 0.8);
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
}

.bg-yellow-500\/80 {
    background-color: rgba(234, 179, 8, 0.8);
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
}

.bg-green-500\/80 {
    background-color: rgba(34, 197, 94, 0.8);
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
}

/* Color Utilities with Opacity */
.bg-yellow-500\/20 {
    background-color: rgba(234, 179, 8, 0.2);
}

.text-yellow-400 {
    color: #facc15;
}

.text-yellow-500 {
    color: #eab308;
}

.bg-green-500\/20 {
    background-color: rgba(34, 197, 94, 0.2);
}

.text-green-400 {
    color: #4ade80;
}

.bg-teal-500\/20 {
    background-color: rgba(20, 184, 166, 0.2);
}

.text-teal-400 {
    color: #2dd4bf;
}

.bg-red-500\/20 {
    background-color: rgba(239, 68, 68, 0.2);
}

.text-red-400 {
    color: #f87171;
}

.bg-indigo-500\/20 {
    background-color: rgba(99, 102, 241, 0.2);
}

.text-indigo-400 {
    color: #818cf8;
}

.bg-slate-500\/20 {
    background-color: rgba(100, 116, 139, 0.2);
}

.text-slate-400 {
    color: #94a3b8;
}

.bg-purple-500\/20 {
    background-color: rgba(168, 85, 247, 0.2);
}

.text-purple-400 {
    color: #c084fc;
}

.bg-emerald-500\/20 {
    background-color: rgba(16, 185, 129, 0.2);
}

.text-emerald-400 {
    color: #34d399;
}

.text-green-500 {
    color: #22c55e;
}

.text-indigo-500 {
    color: #6366f1;
}

.text-purple-500 {
    color: #a855f7;
}

.bg-blue-600\/50 {
    background-color: rgba(37, 99, 235, 0.5);
}

.bg-blue-500 {
    background-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.bg-gray-700 {
    background-color: #374151;
}

/* Positioning Fixes */
.-left-10 {
    left: -2.5rem;
}

.-right-8 {
    right: -2rem;
}

.top-20 {
    top: 5rem;
}

.bottom-10 {
    bottom: 2.5rem;
}

.-left-6 {
    left: -1.5rem;
}

.-right-6 {
    right: -1.5rem;
}

/* Score Widget */
.score-widget {
    position: absolute;
    top: 2rem;
    right: -2rem;
    padding: 1rem;
    background-color: rgba(11, 15, 25, 0.95);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

.score-widget>div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.score-widget .relative {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-widget svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-widget .absolute {
    position: absolute;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
}

/* Specific Widgets */
.border-l-4.border-blue-500 {
    border-left: 4px solid #3b82f6 !important;
}

/* Bar Chart Widget */
.w-32.h-10 {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    width: 8rem;
    height: 2.5rem;
}

.w-1\/5 {
    width: 20%;
}

.h-\[30\%\] {
    height: 30%;
}

.h-\[40\%\] {
    height: 40%;
}

.h-\[50\%\] {
    height: 50%;
}

.h-\[70\%\] {
    height: 70%;
}

.h-\[100\%\] {
    height: 100%;
}

.rounded-sm {
    border-radius: 0.125rem;
}

/* Text Sizes */
.text10 {
    font-size: 10px;
}

/* Dimensions */
.w42 {
    width: 42%;
}

.w12 {
    width: 12.5%;
}

.min-w-180 {
    min-width: 200px;
}

/* Performance Widget */
.performance-widget {
    position: absolute;
    right: -3rem;
    padding: 1.25rem;
    background-color: rgba(11, 15, 25, 0.95);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.progress-track {
    width: 100%;
    height: 0.5rem;
    background-color: #374151;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #22c55e;
    border-radius: 9999px;
}

.pt-1 {
    padding-top: 0.25rem;
}



/* Icon Sizing Utilities */
.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

/* List Icons */
.list-icon,
.list-icon-single {
    width: 1.0rem !important;
    height: 1.0rem !important;
    min-width: 1.0rem;
    min-height: 1.0rem;
    stroke-width: 2.5px;
    display: inline-block;
    vertical-align: bottom;
}

.list-icon {
    margin-top: 6px;
}

/* 
   ------------------------
   Refactored Header Styles 
   ------------------------
*/

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.main-header.scrolled {
    /* Optional: functionality typically added via JS for scroll */
    background-color: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header-container {
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #3b82f6;
    /* blue-500 */
    text-decoration: none;
}

.header-logo .logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.header-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    display: none;
}

@media (min-width: 640px) {
    .header-logo .logo-text {
        display: block;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    /* gray-400 */
    transition: color 0.15s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #ffffff;
}

.desktop-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .desktop-cta {
        display: flex;
    }
}

.login-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.15s ease;
    text-decoration: none;
}

.login-link:hover {
    color: #60a5fa;
    /* blue-400 */
}

.cta-button {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    /* rounded-xl */
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    /* from-blue-600 to-violet-600 */
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.95);
}

.btn-shine-effect {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    filter: blur(24px);
    pointer-events: none;
}

.cta-button:hover .btn-shine-effect {
    transform: translateY(0);
}

.btn-content-wrapper {
    position: relative;
    z-index: 10;
}

.mobile-toggle {
    color: #d1d5db;
    /* gray-300 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Specifics */
/* Reuse #mobile-menu from existing style.css but add layout properties */
#mobile-menu {
    /* Transitions already in style.css */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Optional refinement */
}

@media (min-width: 768px) {
    #mobile-menu {
        display: none;
    }
}

.mobile-menu-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    display: block;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

.mobile-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-login-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.mobile-cta-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
}

html {
    scroll-behavior: smooth;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* 
   ------------------------
   Refactored Footer Styles 
   ------------------------
*/

.main-footer {
    background-color: #05080f;
    padding-top: 4rem;
    /* pt-16 */
    padding-bottom: 2rem;
    /* pb-8 */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    /* gap-12 */
    margin-bottom: 4rem;
    /* mb-16 */
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    /* blue-500 */
}

.brand-logo {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.brand-name {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    color: #ffffff;
}

.brand-description {
    color: #6b7280;
    /* gray-500 */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #6b7280;
    /* gray-500 */
    transition: color 0.15s ease;
}

.social-link:hover {
    color: #ffffff;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-nav-column {
    /* Standard column styles */
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* space-y-3 */
}

.footer-link {
    font-size: 0.875rem;
    /* text-sm */
    color: #9ca3af;
    /* gray-400 */
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #60a5fa;
    /* blue-400 */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    /* text-xs */
    color: #4b5563;
    /* gray-600 */
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* 
   ------------------------
   Refactored Homepage Styles 
   ------------------------
*/

/* 1. Hero Section */
.hero-section-refactored {
    position: relative;
    padding-top: 8rem;
    /* pt-32 */
    padding-bottom: 5rem;
    /* pb-20 */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0B0F19;
}

@media (min-width: 768px) {
    .hero-section-refactored {
        padding-top: 2rem;
        /* md:pt-48 */
        padding-bottom: 4rem;
        /* md:pb-32 */
    }
}

.hero-glow-blue {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
}

.hero-glow-purple {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
}

.hero-container {
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    /* gap-12 */
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: row;
        gap: 4rem;
        /* lg:gap-16 */
    }
}

/* Hero Text Content */
.hero-text-column {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 20;
}

@media (min-width: 1024px) {
    .hero-text-column {
        width: 50%;
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    /* blue-300 */
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #60a5fa;
    /* blue-400 */
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.hero-title {
    font-size: 3rem;
    /* text-5xl */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        /* text-7xl */
    }
}

.title-highlight {
    background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
    /* from-blue-400 via-purple-400 to-pink-400 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    /* text-lg */
    color: #d1d5db;
    /* gray-300 */
    margin-bottom: 2rem;
    max-width: 42rem;
    /* 2xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        /* text-xl */
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
    }
}

.hero-description strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.btn-primary-large {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    /* rounded-xl */
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.125rem;
    /* text-lg */
    cursor: pointer;
}

@media (min-width: 640px) {
    .btn-primary-large {
        width: auto;
    }
}

.btn-primary-large:hover {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transform: scale(1.02) translateY(-0.25rem);
}

.btn-secondary-large {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    /* rounded-xl */
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
    /* text-lg */
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 640px) {
    .btn-secondary-large {
        width: auto;
    }
}

.btn-secondary-large:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.btn-primary-large>span,
.btn-secondary-large>span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .social-proof {
        align-items: flex-start;
    }
}

.social-proof-text {
    font-size: 0.875rem;
    /* text-sm */
    color: #6b7280;
    /* gray-500 */
    font-weight: 500;
}

.social-proof-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.social-proof-icons:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    /* text-lg */
    color: #ffffff;
}

/* Hero Visuals (Right Side) */
.hero-visual-column {
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-visual-column {
        width: 50%;
    }
}

.perspective-wrapper {
    position: relative;
}

.hero-card-3d {
    background-color: #0f1623;
    border-radius: 1rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .hero-card-3d {
        transform: perspective(1000px) rotateY(-12deg) rotateX(6deg);
        box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    }

    .hero-card-3d:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
}



.browser-bar {
    height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    margin-bottom: 0.25rem;
}

.traffic-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
}

.dot-red {
    background-color: rgba(239, 68, 68, 0.8);
}

.dot-yellow {
    background-color: rgba(234, 179, 8, 0.8);
}

.dot-green {
    background-color: rgba(34, 197, 94, 0.8);
}

.browser-address {
    margin-left: 1rem;
    height: 1rem;
    width: 12rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    display: none;
}

@media (min-width: 640px) {
    .browser-address {
        display: block;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--bisky-bg);
    aspect-ratio: 16/10;
}

.hero-dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.screen-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

/* Hero Widgets */
.floating-widget-left {
    position: absolute;
    left: -2.5rem;
    /* -left-10 */
    top: 5rem;
    /* top-20 */
    padding: 1rem;
    border-radius: 0.75rem;
    display: none;
    align-items: center;
    gap: 0.75rem; 
    z-index: 20;
     background-color: rgba(11, 15, 25, 0.95);
    max-width: 200px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left-width: 4px;
}

@media (min-width: 768px) {
    .floating-widget-left {
        display: flex;
    }
}

.widget-icon-wrapper {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-ping {
    position: absolute;
    inset: 0;
    background-color: #3b82f6;
    border-radius: 9999px;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.2;
}

.widget-icon-circle {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, #3b82f6, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.floating-widget-right {
    position: absolute;
    right: -2rem;
    /* -right-8 */
    bottom: 2.5rem;
    /* bottom-10 */
    padding: 1rem;
    border-radius: 0.75rem;
    display: none;
    z-index: 20;
    background-color: rgba(11, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .floating-widget-right {
        display: block;
    }
}

.ai-speak {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.roi-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.roi-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.roi-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
}

.roi-chart {
    width: 8rem;
    /* w-32 */
    height: 2.5rem;
    /* h-10 */
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}

.chart-bar {
    width: 20%;
    border-radius: 0.125rem;
}

.bar-1 {
    height: 30%;
    background-color: #374151;
}

.bar-2 {
    height: 50%;
    background-color: #374151;
}

.bar-3 {
    height: 40%;
    background-color: #374151;
}

.bar-4 {
    height: 70%;
    background-color: rgba(37, 99, 235, 0.5);
}

.bar-5 {
    height: 100%;
    background-color: #3b82f6;
}

.hero-glow-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2563eb, #9333ea);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -10;
    border-radius: 9999px;
    transform: rotate(12deg) scale(0.9);
}

/* 2. Specialists/Agents Section */
.agents-section {
    position: relative;
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    overflow: hidden;
    background-color: #0B0F19;
    /* bisky-bg */
}

.agents-bg-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.1), rgba(88, 28, 135, 0.1));
    z-index: 0;
    pointer-events: none;
}

.section-container {
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.section-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* gap-16 */
    align-items: center;
}

@media (min-width: 1024px) {
    .section-grid {
        flex-direction: row;
    }
}

.text-column {
    width: 100%;
}

@media (min-width: 1024px) {
    .text-column {
        width: 50%;
    }
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-indigo {
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
    /* indigo-400 */
}

.badge-green {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    /* green-400 */
}

.badge-yellow {
    background-color: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    color: #facc15;
    /* yellow-400 */
}

.badge-purple {
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
    /* purple-400 */
}

.section-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        /* text-5xl */
    }
}

.section-description {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* gray-400 */
    margin-bottom: 2rem;
    line-height: 1.625;
}

.agents-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1.5rem;
    row-gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.agent-card-title {
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.agent-desc {
    font-size: 0.875rem;
    /* text-sm */
    color: #9ca3af;
    /* gray-400 */
    line-height: 1.625;
}

.link-button {
    font-weight: 600;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

a {text-decoration:none !important;}

.link-green {
    color: #4ade80;
}

.link-green:hover {
    color: #ffffff;
}

.link-indigo {
    color: #818cf8;
}

.link-indigo:hover {
    color: #ffffff;
}

.link-yellow {
    color: #facc15;
}

.link-yellow:hover {
    color: #ffffff;
}

.link-purple {
    color: #c084fc;
}

.link-purple:hover {
    color: #ffffff;
}

.link-button i {
    transition: transform 0.3s ease;
}

.link-button:hover i {
    transform: translateX(0.25rem);
}

/* Visual Column Shared */
.visual-column {
    width: 100%;
}

@media (min-width: 1024px) {
    .visual-column {
        width: 50%;
    }
}

.glass-showcase {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 1rem;
    position: relative;
    transition: border-color 0.5s ease;
}

.glass-showcase:hover {
    border-color: rgba(99, 102, 241, 0.3);
    /* indigo-500/30 */
}

.showcase-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.glass-showcase:hover .showcase-img {
    opacity: 1;
}

.overlay-tech {
    position: absolute;
    inset: 0;
    background-color: rgba(49, 46, 129, 0.1);
    /* indigo-900/10 */
    mix-blend-mode: overlay;
    border-radius: 0.75rem;
    pointer-events: none;
}

/* Floating Agent Widgets */
.agent-widget {
    position: absolute;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    display: none;
    align-items: center;
    gap: 0.75rem;
    gap: 0.75rem;
    background-color: rgba(11, 15, 25, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .agent-widget {
        display: flex;
    }
}

.agent-widget-left {
    left: -1.5rem;
    /* -left-6 */
    top: 2.5rem;
    /* top-10 */
    animation: soft-bounce 5s ease-in-out infinite;
}

.agent-widget-right {
    right: -1.5rem;
    /* -right-6 */
    bottom: 5rem;
    /* bottom-20 */
    animation: soft-bounce 7s ease-in-out infinite;
}

.widget-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-purple {
    background-color: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.icon-box-green {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.icon-box-yellow {
    background-color: rgba(234, 179, 8, 0.2);
    color: #facc15;
}

.icon-box-teal {
    background-color: rgba(20, 184, 166, 0.2);
    color: #2dd4bf;
}

.icon-box-red {
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.icon-box-indigo {
    background-color: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.icon-box-blue {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.icon-box-slate {
    background-color: rgba(100, 116, 139, 0.2);
    color: #94a3b8;
}

/* 3. Workflow Module */
.workflow-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background-color: #080c14;
}

.workflow-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.1), transparent);
    z-index: 0;
    pointer-events: none;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
    margin-bottom: 2.5rem;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #d1d5db;
    /* gray-300 */
}

.feature-title {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.feature-text-block strong {
    font-size: 1.125rem;
    /* text-lg for email section */
}

/* 4. Content Writer Module */
.writer-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background-color: #0B0F19;
    /* bisky-bg */
}

.writer-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #0f1623, transparent);
    z-index: 0;
    pointer-events: none;
}

.score-widget {
    position: absolute;
    right: -1.5rem;
    top: 2.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    display: none;
    animation: soft-bounce 7s ease-in-out infinite;
    background-color: rgba(11, 15, 25, 0.95);
}

@media (min-width: 768px) {
    .score-widget {
        display: block;
    }
}

/* 5. Email Campaign Module */
.email-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background-color: #0a0f18;
}

.email-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, rgba(131, 24, 67, 0.1), transparent);
    z-index: 0;
    pointer-events: none;
}

.performance-widget {
    position: absolute;
    right: -1.5rem;
    top: 2.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    display: none;
    animation: soft-bounce 5s ease-in-out infinite;
    background-color: rgba(11, 15, 25, 0.95);
}

@media (min-width: 768px) {
    .performance-widget {
        display: block;
    }
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    /* text-xs */
    margin-bottom: 0.25rem;
}

.progress-track {
    height: 0.375rem;
    width: 100%;
    background-color: #374151;
    /* gray-700 */
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: #22c55e;
    /* green-500 */
}

/* 6. Media Studio Module */
.media-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background-color: #0B0F19;
    /* bisky-bg */
}

.media-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(113, 63, 18, 0.1), transparent);
    z-index: 0;
    pointer-events: none;
}

.simple-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d1d5db;
}

/* 7. Summary / Toolbox Section */
.toolbox-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #0B0F19;
    /* bisky-bg */
    position: relative;
}

.toolbox-glow {
    position: absolute;
    z-index: -10;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(147, 51, 234, 0.2);
    /* purple-600/20 */
    border-radius: 50%;
    filter: blur(80px);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-card {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* border-white/5 */
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.15s ease;
    cursor: default;
}

.module-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.module-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

/* 8. Pricing Section */
.pricing-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background-color: #080c14;
}

.pricing-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 56rem;
    /* 4xl */
    background-color: rgba(30, 58, 138, 0.1);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
}

.pricing-header {
    max-width: 48rem;
    /* 3xl */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    /* mb-16 */
    text-align: center;
}

.pricing-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-0.25rem);
}

.pricing-card-highlight {
    border-color: rgba(59, 130, 246, 0.3);
    padding: 0.25rem;
}

.wallet-card-inner {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    height: 100%;
    width: 100%;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-text {
    color: #9ca3af;
    /* gray-400 */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.pricing-check {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    /* text-sm */
    color: #d1d5db;
    /* gray-300 */
}

.pricing-cta-container {
    margin-top: 4rem;
    /* mt-16 */
    text-align: center;
}

.cta-button-pricing {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
    /* text-lg */
    cursor: pointer;
}

.cta-button-pricing:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, #3b82f6, #803ce2);
}

/* Animations */
.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 
   ------------------------
   Refactored About Us Styles 
   ------------------------
*/

/* About Hero */
.about-hero-section {
    position: relative;
    padding-top: 8rem;
    /* pt-32 */
    padding-bottom: 5rem;
    /* pb-20 */
    overflow: hidden;
    background-color: #0B0F19;
    /* bisky-bg */
}

@media (min-width: 768px) {
    .about-hero-section {
        padding-top: 12rem;
        /* md:pt-48 */
        padding-bottom: 6rem;
        /* md:pb-24 */
    }
}

.about-hero-container {
    max-width: 56rem;
    /* 4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(34, 197, 94, 0.1);
    /* green-500/10 */
    border: 1px solid rgba(34, 197, 94, 0.2);
    /* green-500/20 */
    color: #4ade80;
    /* green-400 */
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3rem;
    /* text-5xl */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 4.5rem;
        /* text-7xl */
    }
}

.about-description {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* gray-400 */
    max-width: 42rem;
    /* 2xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 1.25rem;
        /* text-xl */
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    /* mt-16 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item-value {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-item-label {
    font-size: 0.875rem;
    /* text-sm */
    color: #6b7280;
    /* gray-500 */
}

/* Story Section */
.story-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    background-color: #080c14;
    position: relative;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* gap-16 */
    align-items: center;
}

@media (min-width: 1024px) {
    .story-content {
        flex-direction: row;
    }
}

.story-text-column {
    width: 100%;
}

@media (min-width: 1024px) {
    .story-text-column {
        width: 50%;
    }
}

.story-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .story-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.story-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
    color: #9ca3af;
    /* gray-400 */
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.625;
}

.story-image-column {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .story-image-column {
        width: 50%;
    }
}

.story-img-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-img-col-offset {
    margin-top: 2rem;
}

.story-img {
    border-radius: 1rem;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.story-img:hover {
    opacity: 1;
}

.story-img-tall {
    height: 16rem;
    /* h-64 */
}

.story-img-short {
    height: 12rem;
    /* h-48 */
}

/* Values Section */
.values-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    /* mb-16 */
}

.values-description {
    max-width: 56rem;
    /* 4xl */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.5rem);
}

.value-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.value-text {
    color: #9ca3af;
    /* gray-400 */
    line-height: 1.625;
}

/* CTA Section (About) */
.about-cta-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.cta-glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 56rem;
    /* 4xl */
    background-color: rgba(30, 58, 138, 0.1);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
}

.about-cta-container {
    max-width: 56rem;
    /* 4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-cta-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-cta-title {
        font-size: 3rem;
        /* text-5xl */
    }
}

/* 
   ------------------------
   Refactored FAQ Styles 
   ------------------------
*/

/* FAQ Hero */
.faq-hero-section {
    position: relative;
    padding-top: 8rem;
    /* pt-32 */
    padding-bottom: 3rem;
    /* pb-12 */
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .faq-hero-section {
        padding-top: 12rem;
        /* md:pt-48 */
        padding-bottom: 5rem;
        /* md:pb-20 */
    }
}

.faq-hero-container {
    max-width: 56rem;
    /* 4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    /* blue-500/10 */
    border: 1px solid rgba(59, 130, 246, 0.2);
    /* blue-500/20 */
    color: #60a5fa;
    /* blue-400 */
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

.faq-description {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* gray-400 */
    max-width: 42rem;
    /* 2xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;    
} 

@media (min-width: 768px) {
    .faq-description {
        font-size: 1.25rem;
        /* text-xl */
    }
}

/* FAQ List Section */
.faq-list-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 8rem;
    /* pb-32 */
    position: relative;
}

.faq-list-container {
    max-width: 48rem;
    /* 3xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* space-y-4 */
}

/* FAQ Item existing styles are used from lines 313-353 */
/* We need to ensure .glass-card styles are consistent if not relying on utility classes */
.faq-card {
    background-color: rgba(255, 255, 255, 0.05);
    /* glass effect base if not using .glass-card utility */
    /* Check .glass-card definition */
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question-text {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    color: #ffffff;
}

.faq-answer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    color: #9ca3af;
    /* gray-400 */
    line-height: 1.625;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* FAQ CTA */
.faq-cta-container {
    text-align: center;
    margin-top: 5rem;
    /* mt-20 */
}

.faq-cta-title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-cta-text {
    color: #9ca3af;
    /* gray-400 */
    margin-bottom: 2rem;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.faq-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 
   ------------------------
   Refactored Legal Pages
   (Privacy & Terms)
   ------------------------
*/

.legal-hero-section {
    position: relative;
    padding-top: 8rem;
    /* pt-32 */
    padding-bottom: 3rem;
    /* pb-12 */
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .legal-hero-section {
        padding-top: 12rem;
        /* md:pt-48 */
        padding-bottom: 4rem;
        /* md:pb-16 */
    }
}

.legal-hero-container {
    max-width: 56rem;
    /* 4xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.legal-title {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .legal-title {
        font-size: 3rem;
        /* text-5xl */
    }
}

.legal-date {
    font-size: 1.125rem;
    /* text-lg */
    color: #9ca3af;
    /* gray-400 */
}

.legal-content-section {
    padding-top: 6rem;
    /* py-24 */
    padding-bottom: 6rem;
    position: relative;
}

.legal-content-container {
    max-width: 48rem;
    /* 3xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.legal-card {
    background-color: rgba(255, 255, 255, 0.05);
    /* glass effect base */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .legal-card {
        padding: 3rem;
    }
}

.legal-section-spacing {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* space-y-12 */
}

.legal-heading {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.legal-text {
    color: #9ca3af;
    /* gray-400 */
    line-height: 1.625;
    margin-bottom: 1rem;
}

.legal-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af;
    /* gray-400 */
}

.legal-list li::marker {
    color: #3b82f6;
    /* blue-500 */
}

/* Contact Email Highlight */
.legal-contact-email {
    color: #ffffff;
    font-weight: 500;
}

/* 
   Mobile Layout Order Utilities 
   (Enforcing Text-First on Mobile, Alternating on Desktop)
*/

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (min-width: 1024px) {
    .lg\:order-1 {
        order: 1;
    }

    .lg\:order-2 {
        order: 2;
    }
}

/* Desktop Enhancements (Re-enable Glassmorphism) */
@media (min-width: 768px) {

    .btn-secondary-large,
    .floating-widget-left,
    .floating-widget-right,
    .glass-showcase,
    .agent-widget,
    .score-widget,
    .performance-widget,
    .module-card,
    .pricing-card {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background-color: rgba(30, 41, 59, 0.4);
        /* Revert to more transparent */
    }

    /* Specific overrides for widgets needing darker backgrounds */
    .floating-widget-left,
    .floating-widget-right,
    .agent-widget,
    .score-widget,
    .performance-widget {
        background-color: rgba(11, 15, 25, 0.8);
    }
}

/* Mobile Animation Override: Disable Scroll Reveal */
@media (max-width: 767px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}