/* NeuroServ Design System */
:root {
    /* Base Colors */
    --background: 210 40% 98%;
    --foreground: 222 84% 4.9%;
    
    /* NeuroServ Brand Colors */
    --neuro-dark: 210 40% 98%;       /* #F8FAFC - Light background */
    --neuro-blue: 213 27% 84%;       /* #CBD5E1 - Light blue */
    --neuro-light: 217 32% 17.5%;    /* #1E293B - Dark blue for text */
    --neuro-accent: 217 91% 55%;     /* #2563EB - More vibrant blue accent */
    --neuro-accent-hover: 217 91% 45%; /* #1D4ED8 - Darker blue for hover */
    --neuro-text: 222 84% 4.9%;      /* #0F172A - Dark text */
    --neuro-muted: 215 20% 45%;      /* #475569 - Muted dark gray */
    
    --radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: hsl(var(--neuro-dark));
    color: hsl(var(--neuro-text));
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 25% 25%, hsl(var(--neuro-accent) / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, hsl(var(--neuro-blue) / 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Typography */
.font-neuro-display {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* Layout Components */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .content-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-container {
        padding: 0 2rem;
    }
}

/* Section Spacing */
.section-spacing {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 4rem 0;
    }
}

/* Additional utility classes */
.min-h-screen {
    min-height: 100vh;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, hsl(var(--neuro-dark)) 0%, hsl(var(--neuro-blue)) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, hsl(var(--neuro-accent) / 0.1) 0%, transparent 50%), 
                      radial-gradient(circle at 75% 75%, hsl(var(--neuro-accent) / 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Logo Styles */
.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 400px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-image {
        max-width: 300px;
        max-height: 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--neuro-accent) / 0.1);
    border: 1px solid hsl(var(--neuro-accent) / 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--neuro-accent));
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--neuro-accent));
}

.hero-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-secondary {
    color: hsl(var(--neuro-text));
}

.hero-title-tertiary {
    color: hsl(var(--neuro-light));
}

.gradient-text {
    background: linear-gradient(to right, hsl(var(--neuro-text)), hsl(var(--neuro-accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--neuro-muted));
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

/* Button Styles */
.btn-hero {
    display: inline-flex;
    align-items: center;
    background-color: hsl(var(--neuro-accent));
    color: hsl(var(--neuro-dark));
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px hsl(var(--neuro-accent) / 0.25);
    text-decoration: none;
}

.btn-hero:hover {
    background-color: hsl(var(--neuro-accent-hover));
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px hsl(var(--neuro-accent) / 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: hsl(var(--neuro-accent));
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid hsl(var(--neuro-accent));
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background-color: hsl(var(--neuro-accent));
    color: hsl(var(--neuro-dark));
    transform: scale(1.05);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-hero:hover .button-icon {
    transform: translateX(0.25rem);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: float 3s ease-in-out infinite;
}

.floating-element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background-color: hsl(var(--neuro-accent) / 0.1);
}

.floating-element-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(var(--neuro-accent) / 0.05);
    animation-delay: 1s;
}

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

/* Features Section */
.features-section {
    background-color: hsl(var(--neuro-dark));
}

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

.section-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--neuro-muted));
    max-width: 48rem;
    margin: 0 auto;
}

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

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

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

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background-color: hsl(var(--neuro-blue) / 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--neuro-light) / 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background-color: hsl(var(--neuro-blue) / 1);
    border-color: hsl(var(--neuro-accent) / 0.5);
    box-shadow: 0 4px 6px -1px hsl(var(--neuro-accent) / 0.2);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--neuro-accent) / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--neuro-accent));
}

.feature-card:hover .feature-icon {
    background-color: hsl(var(--neuro-accent) / 0.3);
    transform: scale(1.15);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--neuro-text));
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: hsl(var(--neuro-accent-hover));
}

.feature-description {
    color: hsl(var(--neuro-muted));
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    background-color: hsl(var(--neuro-dark));
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    background-color: hsl(var(--neuro-blue) / 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--neuro-light) / 0.3);
    border-radius: 0.75rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    border-color: hsl(var(--neuro-accent) / 0.5);
    box-shadow: 0 4px 6px -1px hsl(var(--neuro-blue) / 0.2);
}

.pricing-card-popular {
    border-color: hsl(var(--neuro-accent));
    box-shadow: 0 10px 25px -5px hsl(var(--neuro-accent) / 0.2);
    ring: 2px solid hsl(var(--neuro-accent) / 0.2);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--neuro-accent));
    color: hsl(var(--neuro-dark));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-icon {
    width: 1rem;
    height: 1rem;
}

.pricing-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
}

.pricing-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(var(--neuro-text));
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: hsl(var(--neuro-muted));
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--neuro-text));
}

.price-period {
    color: hsl(var(--neuro-muted));
    margin-left: 0.5rem;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--neuro-accent));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-item span {
    color: hsl(var(--neuro-text));
}

.pricing-button {
    width: 100%;
    height: 3rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.pricing-button-primary {
    background-color: hsl(var(--neuro-accent));
    color: hsl(var(--neuro-dark));
}

.pricing-button-primary:hover {
    background-color: hsl(var(--neuro-accent-hover));
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -3px hsl(var(--neuro-accent) / 0.3);
}

.pricing-button-outline {
    background-color: transparent;
    color: hsl(var(--neuro-text));
    border: 1px solid hsl(var(--neuro-blue) / 0.3);
}

.pricing-button-outline:hover {
    border-color: hsl(var(--neuro-accent));
    background-color: hsl(var(--neuro-accent) / 0.15);
    color: hsl(var(--neuro-accent-hover));
    transform: translateY(-2px);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

.pricing-footer-text {
    color: hsl(var(--neuro-muted));
}

.pricing-footer-link {
    color: hsl(var(--neuro-accent));
    text-decoration: none;
    margin-left: 0.25rem;
}

.pricing-footer-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, hsl(var(--neuro-dark)) 0%, hsl(var(--neuro-blue)) 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, hsl(var(--neuro-accent) / 0.1) 0%, transparent 50%), 
                      radial-gradient(circle at 75% 75%, hsl(var(--neuro-accent) / 0.05) 0%, transparent 50%);
}

.contact-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--neuro-muted));
    max-width: 48rem;
    margin: 0 auto;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background-color: hsl(var(--neuro-blue) / 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--neuro-light) / 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--neuro-text));
    margin-bottom: 0.5rem;
}

.contact-card-description {
    color: hsl(var(--neuro-muted));
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-footer {
    text-align: center;
}

.contact-footer-text {
    color: hsl(var(--neuro-muted));
    font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background-color: hsl(var(--neuro-blue) / 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(var(--neuro-accent) / 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--neuro-accent));
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

.calendly-inline-widget.hidden  {
    display: none;
}
.calendly-inline-widget.visible  {
    display: block;
    z-index: 10000;
}
.calendly-overlay {
    position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.calendly-overlay.hidden {
    display: none;
}

.calendly-close-button {
    position: relative;
    padding-top: 1vh;
    padding-left:96vw;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: hsl(var(--neuro-dark));
    cursor: pointer;
}

/* Contact Sales Form Popup Styles */

/* Overlay */
.contact-sales-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-sales-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.contact-sales-overlay.hidden {
    display: none;
}

/* Modal */
.contact-sales-modal {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e40af 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    /* Hide scrollbar for WebKit browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.contact-sales-modal::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

.contact-sales-overlay:not(.hidden) .contact-sales-modal {
    transform: scale(1);
}

/* Close Button */
.contact-sales-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-sales-close-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Content */
.contact-sales-content {
    padding: 2rem;
}

/* Header */
.contact-sales-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-sales-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-sales-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

.contact-sales-subtitle {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

/* Form */
.contact-sales-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Sections */
.form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.form-label i {
    width: 1rem;
    height: 1rem;
    color: #60a5fa;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Submit Button */
.contact-sales-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.contact-sales-submit-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
}

.contact-sales-submit-btn:active {
    transform: translateY(0);
}

.contact-sales-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-sales-submit-btn .button-icon {
    transition: transform 0.3s ease;
}

.contact-sales-submit-btn:hover .button-icon {
    transform: translateX(0.25rem);
}

/* Footer */
.contact-sales-footer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
}

.contact-sales-footer-text {
    color: #bbf7d0;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.contact-sales-footer-text strong {
    color: #86efac;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-sales-modal {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .contact-sales-content {
        padding: 1.5rem;
    }
    
    .contact-sales-title {
        font-size: 1.5rem;
    }
    
    .contact-sales-subtitle {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-sales-overlay {
        padding: 0.5rem;
    }
    
    .contact-sales-content {
        padding: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.contact-sales-form {
    animation: slideInUp 0.5s ease-out;
}

/* Loading state */
.contact-sales-submit-btn.loading {
    position: relative;
    color: transparent;
}

.contact-sales-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.standard-pricing-button{
    border-color: hsl(var(--neuro-accent));
    color: hsl(var(--neuro-accent));
}

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