:root {
    /* Monochrome Base */
    --mono-0: #000000;
    --mono-1: #0A0A0C;
    --mono-2: #141518;
    --mono-3: #1E2026;
    --mono-4: #2C2F36;
    --mono-5: #5B5F6B;
    --mono-6: #9A9FB0;
    --mono-7: #D2D6E0;
    --mono-8: #F0F2F5;
    --mono-9: #FFFFFF;
    
    /* Accent Colors */
    --deep-stripe: #635BFF;
    --deep-stripe-dark: #4f48e0;
    --deep-stripe-light: #8B84FF;
    --vibrant-cyan: #00E5E5;
    --vibrant-cyan-dark: #00B8B8;
    --vibrant-cyan-light: #4DFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-stripe) 0%, var(--vibrant-cyan) 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(99, 91, 255, 0.15) 0%, transparent 70%);
    --gradient-dark: linear-gradient(180deg, var(--mono-2) 0%, var(--mono-1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 60px rgba(99, 91, 255, 0.2), 0 0 20px rgba(0, 229, 229, 0.15);
    --shadow-cyan: 0 0 40px rgba(0, 229, 229, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--mono-1);
    color: var(--mono-8);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.display-font, .navbar-brand, .btn, .nav-link {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* Animated Background */
.bg-gradient-animate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--vibrant-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(99, 91, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.3s;
    mix-blend-mode: difference;
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-follower { display: none; }
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 91, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.brand-dev {
    color: var(--mono-9);
    transition: var(--transition-base);
}

.brand-slash {
    color: var(--vibrant-cyan);
    margin: 0 2px;
}

.brand-forge {
    color: var(--deep-stripe);
    transition: var(--transition-base);
}

.brand-badge {
    font-size: 1rem;
    margin-left: 6px;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--mono-7) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--mono-9) !important;
    background: rgba(99, 91, 255, 0.1);
}

.nav-link.active {
    color: var(--vibrant-cyan) !important;
    background: rgba(0, 229, 229, 0.1);
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Fixed Nav Actions - Theme Toggle properly aligned */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle - Fixed positioning */
.theme-toggle {
    background: var(--mono-3);
    border: 1px solid var(--mono-4);
    color: var(--mono-7);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    cursor: pointer;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--deep-stripe);
    color: var(--vibrant-cyan);
    transform: rotate(15deg);
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .nav-actions {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .navbar-collapse {
        padding: 1rem 0;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline-cyan {
    border: 2px solid var(--vibrant-cyan);
    color: var(--vibrant-cyan);
    background: transparent;
}

.btn-outline-cyan:hover {
    background: var(--vibrant-cyan);
    color: var(--mono-0);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

/* Bento Cards */
.bento-card {
    background: rgba(30, 32, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mono-4);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.bento-card:hover {
    border-color: var(--deep-stripe);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.bento-card:hover::before {
    opacity: 0.05;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 229, 229, 0.1);
    border: 1px solid rgba(0, 229, 229, 0.2);
    border-radius: var(--radius-full);
    color: var(--vibrant-cyan);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mono-9);
    font-family: "Space Grotesk", sans-serif;
}

.stat-label {
    color: var(--mono-6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Fixed Scroll Indicator - Positioned at bottom */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-indicator span {
    color: var(--mono-6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--vibrant-cyan) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vibrant-cyan);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Page Sections */
.page-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(99, 91, 255, 0.1);
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--deep-stripe-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--vibrant-cyan);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(0, 229, 229, 0.2);
    z-index: -1;
}

/* Pricing Toggle */
.pricing-toggle {
    background: var(--mono-3);
    border-radius: var(--radius-full);
    padding: 4px;
    border: 1px solid var(--mono-4);
    display: inline-flex;
}

.toggle-option {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--mono-6);
}

.toggle-option.active {
    background: var(--deep-stripe);
    color: white;
    box-shadow: 0 2px 10px rgba(99, 91, 255, 0.3);
}

/* Project Cards */
.project-card {
    background: var(--mono-2);
    border: 1px solid var(--mono-4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.project-thumbnail {
    height: 240px;
    background: linear-gradient(135deg, var(--mono-3) 0%, var(--mono-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-thumbnail i {
    font-size: 4rem;
    color: var(--vibrant-cyan);
    opacity: 0.8;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 12, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--deep-stripe);
}

/* Testimonial Slider */
.testimonial-slider {
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--mono-2);
    border: 1px solid var(--mono-4);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 1rem;
}

.tns-nav {
    text-align: center;
    margin-top: 2rem;
}

.tns-nav button {
    background: var(--mono-5);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin: 0 6px;
    transition: var(--transition-base);
}

.tns-nav button.tns-nav-active {
    background: var(--vibrant-cyan);
    width: 30px;
}

/* Footer */
.footer-section {
    background: var(--mono-2);
    border-top: 1px solid var(--mono-4);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-desc {
    color: var(--mono-6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--mono-3);
    border: 1px solid var(--mono-4);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mono-7);
    transition: var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: var(--deep-stripe);
    border-color: var(--deep-stripe);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--mono-9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: var(--mono-6);
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--vibrant-cyan);
    transform: translateX(5px);
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background: var(--mono-3);
    border: 1px solid var(--mono-4);
    color: var(--mono-9);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--mono-6);
    font-size: 0.85rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--mono-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--mono-6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright-icon {
    font-size: 1.1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-legal {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-legal a {
    color: var(--mono-6);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--vibrant-cyan);
}

.separator {
    color: var(--mono-5);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mono-6);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 91, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 229, 229, 0.4); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.glow-animation {
    animation: glow 3s ease-in-out infinite;
}

/* Light Mode Styles */
body.light-mode {
    --mono-0: #FFFFFF;
    --mono-1: #F8F9FA;
    --mono-2: #FFFFFF;
    --mono-3: #F1F3F5;
    --mono-4: #DEE2E6;
    --mono-5: #ADB5BD;
    --mono-6: #6C757D;
    --mono-7: #495057;
    --mono-8: #212529;
    --mono-9: #000000;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(99, 91, 255, 0.2);
}

body.light-mode .bento-card {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .page-section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Navbar Toggler Icon Fix */
.navbar-toggler {
    border: 1px solid var(--mono-4);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(210, 214, 224, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Glass Input Styles */
.glass-input {
    width: 100%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mono-4);
    color: var(--mono-9);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.glass-input:focus {
    border-color: var(--deep-stripe);
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
    outline: none;
    background: rgba(20, 21, 24, 0.8);
}

.glass-input::placeholder {
    color: var(--mono-5);
}

/* global Form Select */
.form-select {
    width: 100%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mono-4);
    color: var(--mono-9);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.form-select option {
    background: var(--mono-2);
    color: var(--mono-9);
}

.form-select:focus {
    border-color: var(--deep-stripe);
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
    outline: none;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: var(--mono-6);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Help Text */
.help-text {
    color: var(--mono-6);
    font-size: 0.9rem;
}

/* Section Description */
.section-description {
    color: var(--mono-6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================ */
/* SERVICES PAGE COMPLETE STYLES                */
/* ============================================ */

/* Glass Input Styles */
.glass-input {
    width: 100%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mono-4);
    color: var(--mono-9);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.glass-input:focus {
    border-color: var(--deep-stripe);
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
    outline: none;
    background: rgba(20, 21, 24, 0.8);
}

.glass-input::placeholder {
    color: var(--mono-5);
}

/* Form Select */
.form-select {
    width: 100%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mono-4);
    color: var(--mono-9);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.form-select option {
    background: var(--mono-2);
    color: var(--mono-9);
}

.form-select:focus {
    border-color: var(--deep-stripe);
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
    outline: none;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: var(--mono-6);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Help Text */
.help-text {
    color: var(--mono-6);
    font-size: 0.9rem;
}

/* Section Description */
.section-description {
    color: var(--mono-6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 229, 229, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 229, 229, 0.1);
}

.bento-card:hover .service-icon-wrapper {
    background: rgba(0, 229, 229, 0.15);
    border-color: var(--vibrant-cyan);
    transform: scale(1.05);
}

/* Price Display */
.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vibrant-cyan);
    font-family: "Space Grotesk", sans-serif;
}

.price-period {
    color: var(--mono-6);
    font-size: 0.9rem;
    margin-left: 4px;
}

/* Feature List Items */
.bento-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.bento-card ul li {
    margin-bottom: 0.75rem;
    color: var(--mono-7);
    display: flex;
    align-items: flex-start;
}

.bento-card ul li i {
    color: var(--vibrant-cyan);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.bento-card ul li strong {
    color: var(--mono-9);
    font-weight: 600;
}

/* Additional Services Section */
.bento-grid .bento-card {
    padding: 2rem;
}

.bento-grid .bento-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bento-grid .bento-card h4 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    color: var(--mono-9);
}

.bento-grid .bento-card p {
    color: var(--mono-6);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.bento-grid .bento-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-grid .bento-card ul li {
    margin-bottom: 0.5rem;
    color: var(--mono-7);
    font-size: 0.9rem;
}

.bento-grid .bento-card ul li i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    color: var(--vibrant-cyan);
}

/* Process Section */
.process-step {
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 229, 229, 0.2);
    transition: var(--transition-base);
}

.bento-card:hover .process-number {
    background: var(--deep-stripe);
    border-color: var(--deep-stripe);
    transform: scale(1.1);
}

.process-number span {
    font-size: 24px;
    font-weight: 700;
    color: var(--vibrant-cyan);
}

.bento-card:hover .process-number span {
    color: white;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--deep-stripe);
    color: white;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mono-9);
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.card-badge {
    background: rgba(0, 229, 229, 0.1);
    color: var(--vibrant-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(0, 229, 229, 0.2);
    white-space: nowrap;
}

.card-description {
    color: var(--mono-6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: var(--mono-3);
    color: var(--mono-7);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--mono-4);
}

.card-actions-bottom {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-sm {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.btn-outline-sm {
    background: transparent;
    color: var(--mono-7);
    border: 1px solid var(--mono-4);
}

.btn-outline-sm:hover {
    background: var(--mono-3);
    border-color: var(--vibrant-cyan);
    color: var(--vibrant-cyan);
}

/* Auto Margin Utility */
.mt-auto {
    margin-top: auto;
}

/* Width Utility */
.w-100 {
    width: 100%;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mono-4), transparent);
    margin: 2rem 0;
}

/* Consultation Card */
.consultation-card {
    background: var(--mono-2);
    border: 1px solid var(--deep-stripe);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-glow);
}

/* Rating Stars */
.rating-stars {
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: #FFB800;
    font-size: 1rem;
    margin-right: 2px;
}

/* Testimonial Avatar */
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-avatar.primary {
    background: var(--gradient-primary);
    color: white;
}

.testimonial-avatar.cyan {
    background: var(--vibrant-cyan);
    color: var(--mono-0);
}

.testimonial-avatar.stripe {
    background: var(--deep-stripe);
    color: white;
}

/* Badge Styles */
.badge-cyan {
    background: rgba(0, 229, 229, 0.1);
    color: var(--vibrant-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 229, 229, 0.2);
}

.badge-stripe {
    background: rgba(99, 91, 255, 0.1);
    color: var(--deep-stripe-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(99, 91, 255, 0.2);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Glow Effect */
.hover-glow {
    transition: var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--deep-stripe);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .bento-card h3 {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .popular-badge {
        top: 15px;
        right: -40px;
        font-size: 9px;
        padding: 3px 35px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
    }
    
    .process-number span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .bento-card {
        padding: 1.5rem;
    }
    
    .bento-grid .bento-card {
        padding: 1.5rem;
    }
}