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

body {
    font-family: 'Orbitron', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* Canvas Background */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(30, 30, 30, 0.7);
    border-bottom: 1px solid rgba(0, 246, 255, 0.3);
    padding: 8px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
}

.logo-text {
    text-align: left;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-shadow: none;
    animation: none;
    will-change: auto;
}

.demo-badge {
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none;
    animation: none;
    will-change: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #00F6FF;
    border-color: rgba(0, 246, 255, 0.3);
    background: rgba(0, 246, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.3);
}

/* Main Content */
.main-content {
    padding-top: 70px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #B400FF, #00F6FF, #B400FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
    animation: none;
    will-change: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a1a1aa;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba\(180, 0, 255, 0.4\);
}

.cta-button.secondary {
    background: transparent;
    color: #00F6FF;
    border: 2px solid #00F6FF;
}

.cta-button.secondary:hover {
    background: #00F6FF;
    color: #000000;
    box-shadow: 0 5px 20px rgba(0, 246, 255, 0.2);
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #B400FF, #00F6FF, #B400FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: none;
    will-change: auto;
}

.services-section, .features-section, .pricing-section, .contact-section {
    padding: 80px 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 8px rgba(0, 246, 255, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B400FF, #00F6FF);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 246, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 246, 255, 0.1),
        inset 0 0 10px rgba(0, 246, 255, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, rgba(180, 0, 255, 0.2), rgba(0, 246, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00F6FF;
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(0, 246, 255, 0.25);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 8px rgba(0, 246, 255, 0.02);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #B400FF, #00F6FF);
    opacity: 0.7;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 246, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 246, 255, 0.1),
        inset 0 0 10px rgba(0, 246, 255, 0.05);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Panel Content */
.panel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 246, 255, 0.1),
        inset 0 0 15px rgba(0, 246, 255, 0.05);
}

.panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B400FF, #00F6FF);
    opacity: 0.8;
}

.panel-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 246, 255, 0.2), 0 0 15px rgba(180, 0, 255, 0.1);
    transition: all 0.5s ease;
}

.panel-image:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(0, 246, 255, 0.3), 0 0 20px rgba(180, 0, 255, 0.2);
}

.panel-description {
    font-size: 1.1rem;
    color: #e4e4e7;
    text-align: center;
    max-width: 700px;
    line-height: 1.7;
}

/* Contact Section */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-intro p {
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Calendly Widget Styles */
.calendly-container {
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 15px;
    position: relative;
}

.calendly-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00F6FF, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.calendly-wrapper {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%),
        radial-gradient(circle at top left, rgba(180, 0, 255, 0.03), transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 246, 255, 0.03), transparent 50%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 246, 255, 0.08),
        inset 0 0 10px rgba(0, 246, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.calendly-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #B400FF, #00F6FF);
    opacity: 0.8;
}

.calendly-wrapper:hover {
    border-color: rgba(0, 246, 255, 0.4);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 10, 10, 0.88) 100%),
        radial-gradient(circle at top left, rgba(180, 0, 255, 0.05), transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 246, 255, 0.05), transparent 50%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 246, 255, 0.1),
        inset 0 0 15px rgba(0, 246, 255, 0.05);
}

.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.calendly-inline-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 64, 0.05) 0%, 
        transparent 25%, 
        rgba(0, 168, 255, 0.03) 50%, 
        transparent 75%, 
        rgba(0, 255, 255, 0.05) 100%);
    pointer-events: none;
    border-radius: 12px;
}

/* Calendly Dark Theme Override */
.calendly-inline-widget .calendly-container {
    background: rgba(0, 0, 0, 0.9) !important;
}

.calendly-inline-widget .calendly-widget {
    background: rgba(0, 0, 0, 0.9) !important;
}

/* Apply dark theme to Calendly iframe */
.calendly-inline-widget iframe {
    background: rgba(0, 0, 0, 0.9) !important;
    border: none !important;
    border-radius: 15px !important;
}

/* Additional Calendly styling */
.calendly-inline-widget .calendly-badge-widget,
.calendly-inline-widget .calendly-popup-widget {
    background: rgba(0, 0, 0, 0.9) !important;
}

/* Ensure Calendly widget fits container */
.calendly-inline-widget > div {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* Enhanced Calendly styling */
.calendly-inline-widget .calendly-container {
    border-radius: 12px !important;
    box-shadow: none !important;
}

.calendly-inline-widget iframe {
    border-radius: 12px !important;
}

/* Loading animation for Calendly */
.calendly-inline-widget {
    position: relative;
}

.calendly-inline-widget::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid rgba(0, 246, 255, 0.3);
    border-top: 2px solid #00F6FF;
    border-radius: 50%;
    animation: calendly-spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendly-inline-widget:not(.loaded)::after {
    opacity: 1;
}

@keyframes calendly-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar styling for Calendly iframe */
.calendly-inline-widget iframe::-webkit-scrollbar {
    width: 6px;
}

.calendly-inline-widget iframe::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.calendly-inline-widget iframe::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    border-radius: 3px;
}

/* Contact Alternative */
.contact-alternative {
    text-align: center;
    margin-top: 40px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e4e4e7;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid rgba(0, 246, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow;
}

.contact-item:hover {
    border-color: rgba(0, 246, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 246, 255, 0.1);
    transform: translateY(-1px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: #00F6FF;
}

/* Legacy Contact Form (hidden but kept for reference) */
.contact-form {
    display: none;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00F6FF;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
}

.form-group input::placeholder {
    color: #71717a;
}

.submit-button {
    padding: 18px 30px;
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(180, 0, 255, 0.4);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-content svg {
    width: 60px;
    height: 60px;
    color: #00F6FF;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.success-content p {
    color: #a1a1aa;
}

/* Footer */
.footer {
    background: rgba(30, 30, 30, 0.7);
    border-top: 1px solid rgba(0, 246, 255, 0.2);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B400FF, #00F6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #a1a1aa;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00F6FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #71717a;
    font-size: 0.9rem;
}

/* Animations */
@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 50px rgba(180, 0, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 60px rgba(0, 246, 255, 0.8), 0 0 80px rgba(0, 246, 255, 0.4);
    }
}

@keyframes neon-glow-hero {
    0%, 100% {
        text-shadow: 0 0 40px rgba(180, 0, 255, 0.9), 0 0 80px rgba(0, 246, 255, 0.7), 0 0 120px rgba(0, 246, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 60px rgba(180, 0, 255, 1), 0 0 100px rgba(0, 246, 255, 0.8), 0 0 140px rgba(0, 246, 255, 0.6);
    }
}

@keyframes neon-glow-title {
    0%, 100% {
        text-shadow: 0 0 30px rgba(180, 0, 255, 0.8), 0 0 60px rgba(0, 246, 255, 0.6), 0 0 90px rgba(0, 246, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(180, 0, 255, 1), 0 0 80px rgba(0, 246, 255, 0.7), 0 0 110px rgba(0, 246, 255, 0.5);
    }
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(180, 0, 255, 0.4), 0 0 40px rgba(0, 246, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(180, 0, 255, 0.6), 0 0 60px rgba(0, 246, 255, 0.5), 0 0 80px rgba(0, 246, 255, 0.3);
    }
}

@keyframes brand-glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(180, 0, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 246, 255, 0.7), 0 0 60px rgba(0, 246, 255, 0.4);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes meeting-pulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(180, 0, 255, 0.6);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0, 246, 255, 0.8), 0 25px 70px rgba(0, 246, 255, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendly-wrapper {
        padding: 18px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide desktop nav on mobile */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }

    .header-content {
        flex-direction: row; /* Keep logo and hamburger on one line */
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        margin-bottom: 0;
    }

    .main-content {
        padding-top: 70px; /* Adjust for smaller header */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .meeting-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-content {
        padding: 30px;
        gap: 20px;
    }

    .panel-image {
        max-width: 80%;
    }

    .panel-description {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .calendly-container {
        padding: 0 10px;
        max-width: 600px;
    }
    
    .calendly-container::before {
        width: 40px;
        height: 3px;
        top: -15px;
    }
    
    .calendly-wrapper {
        padding: 15px;
    }

    /* Mobile specific glow reduction */
    .hero-title,
    .section-title,
    .brand-name {
        text-shadow: 0 0 8px rgba(180, 0, 255, 0.3), 0 0 15px rgba(0, 246, 255, 0.15);
        filter: blur(0.5px) brightness(1.05);
    }

    .demo-badge {
        box-shadow: 0 0 6px rgba(180, 0, 255, 0.2), 0 0 10px rgba(0, 246, 255, 0.1);
        filter: brightness(1.05);
    }

    .service-card,
    .feature-item,
    .panel-content,
    .calendly-wrapper,
    .contact-item {
        box-shadow: 0 0 6px rgba(0, 246, 255, 0.1);
        filter: brightness(1.02);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 15px;
    }
    
    .services-section, .features-section, .pricing-section, .contact-section {
        padding: 60px 0;
    }
    
    .service-card, .feature-item {
        padding: 25px 15px;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 450px !important;
    }
    
    .calendly-wrapper {
        padding: 12px;
        border-radius: 12px;
    }
    
    .calendly-container {
        max-width: 400px;
        padding: 0 8px;
    }
    
    .calendly-container::before {
        width: 30px;
        height: 2px;
        top: -10px;
    }
    
    .contact-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-intro p {
        font-size: 0.95rem;
    }

    .panel-content {
        padding: 20px;
        gap: 15px;
    }

    .panel-description {
        font-size: 0.9rem;
    }
}

/* Focus states for accessibility */
.cta-button:focus-visible,
.pricing-button:focus-visible,
.submit-button:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid #00ffff;
    outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff0040, #00a8ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00a8ff, #00ffff);
}