/* Navigation styles moved to hero-banner.css */
/* Hero CTA Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Stats Professional Style */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 0.25rem;
}

.stat-number::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    margin-top: 4px;
    border-radius: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Image Professional */
/* Hero Section */
.hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(270deg, rgba(59, 130, 246, 0.1), transparent);
    z-index: 1;
}

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

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

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

 */

/* Removed decorative bubbles/particles */
.students-illustration { display: none; }

.student-group { display: none; }

.student { display: none; }

.student-1 { top: 20%; left: 20%; animation-delay: 0s; }
.student-2 { top: 30%; right: 25%; animation-delay: 0.5s; }
.student-3 { top: 60%; left: 15%; animation-delay: 1s; }
.student-4 { top: 70%; right: 20%; animation-delay: 1.5s; }
.student-5 { top: 40%; left: 50%; animation-delay: 2s; }
.student-6 { top: 80%; right: 50%; animation-delay: 2.5s; }

.ai-graphics { display: none; }

.ai-circle { display: none; }

.ai-line { display: none; }

.ai-dots { display: none; }

@keyframes extend {
    0%, 100% { width: 20px; }
    50% { width: 40px; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Floating Elements */
.floating-elements { display: none; }

.floating-icon { display: none; }

.floating-robot { display: none; }

.floating-shield { display: none; }

.floating-apps { display: none; }

.app-icons { display: none; }

.app-icon { display: none; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Advanced Portals Section */
.portals-section--advanced {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: grid;
    grid-template-areas: 
        "header"
        "tabs"
        "content"
        "dots";
    grid-template-rows: auto auto 1fr auto;
    align-items: center;
}

.portals-section--advanced .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-areas: 
        "header"
        "tabs"
        "content"
        "dots";
    grid-template-rows: auto auto 1fr auto;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.section-header {
    grid-area: header;
    text-align: center;
    margin-bottom: 2rem;
}

.portals-tabs {
    grid-area: tabs;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.portals-slider-container {
    grid-area: content;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portals-dots {
    grid-area: dots;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.portals-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.portals-bg__image {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.0);
    transition: opacity 600ms ease, transform 800ms ease;
    opacity: 0.8;
}

/* Smart background positioning for different screen ratios */
@media (aspect-ratio: 16/9) {
    .portals-bg__image {
        background-position: center 30%;
    }
}

@media (aspect-ratio: 4/3) {
    .portals-bg__image {
        background-position: center 25%;
    }
}

@media (aspect-ratio: 3/4) {
    .portals-bg__image {
        background-position: center 20%;
    }
}

@media (max-height: 600px) {
    .portals-bg__image {
        background-size: cover;
        background-position: center 40%;
    }
}

.portals-bg__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 10%, rgba(0,0,0,0.12), transparent 40%),
                radial-gradient(ellipse at 80% 0%, rgba(0,0,0,0.10), transparent 35%),
                linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
    mix-blend-mode: multiply;
}

.portals-section--advanced .section-header .section-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.portals-section--advanced .section-header .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 3rem;
}

/* Role Selector Tabs - Already defined above */

.portals-tabs .nav-pills {
    display: flex;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.portals-tabs .nav-pills .nav-link {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.portals-tabs .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 300ms ease;
    border-radius: 25px;
}

.portals-tabs .nav-pills .nav-link span {
    position: relative;
    z-index: 1;
}

.portals-tabs .nav-pills .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.portals-tabs .nav-pills .nav-link.active {
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.portals-tabs .nav-pills .nav-link.active::before {
    opacity: 1;
}

/* Sliding Container - Already defined above */

.portals-slider-track {
    display: flex;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.portals-slide {
    min-width: 100%;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.portals-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-areas: 
        "features"
        "testimonial";
    gap: 2rem;
    align-items: start;
}

.slide-features {
    grid-area: features;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 300ms ease;
}

.feature-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.feature-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.slide-testimonial {
    grid-area: testimonial;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

.slide-testimonial blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Navigation Dots - Already defined above */

.portals-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
}

.portals-dots .dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.portals-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Advanced Responsive Design with Smart Positioning */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .portals-section--advanced .container {
        padding: 3rem 2rem;
    }
    
    .slide-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .portals-section--advanced {
        min-height: 80vh;
    }
    
    .slide-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .portals-section--advanced {
        min-height: 75vh;
    }
    
    .slide-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .portals-section--advanced {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .portals-section--advanced .container {
        padding: 1.5rem 1rem;
    }
    
    .slide-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .slide-testimonial {
        padding: 1.5rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .portals-section--advanced {
        min-height: 65vh;
        padding: 1rem 0;
    }
    
    .portals-section--advanced .container {
        padding: 1rem 0.75rem;
    }
    
    .portals-tabs .nav-pills {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.25rem;
        justify-content: center;
    }
    
    .portals-tabs .nav-pills .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 80px;
    }
    
    .portals-slide {
        padding: 1rem 0.5rem;
    }
    
    .slide-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .slide-testimonial {
        padding: 1rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .portals-section--advanced {
        min-height: 60vh;
        padding: 0.5rem 0;
    }
    
    .portals-section--advanced .container {
        padding: 0.5rem 0.5rem;
    }
    
    .portals-tabs .nav-pills {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.125rem;
    }
    
    .portals-tabs .nav-pills .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .portals-slide {
        padding: 0.75rem 0.25rem;
    }
    
    .slide-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .slide-testimonial {
        padding: 0.75rem;
    }
    
    .portals-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .portals-section--advanced .container {
        padding: 0.25rem 0.25rem;
    }
    
    .portals-slide {
        padding: 0.5rem 0.125rem;
    }
    
    .feature-item {
        padding: 0.375rem;
    }
    
    .slide-testimonial {
        padding: 0.5rem;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .portals-bg__image,
    .portals-slider-track,
    .portals-slide,
    .feature-item {
        transition: none !important;
        transform: none !important;
    }
    
    .portals-slide {
        opacity: 1;
        transform: none;
    }
}

/* Enterprise Hero Section */
.hero-enterprise {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(51, 65, 85, 0.85) 100%);
}

.hero-content-enterprise {
    position: relative;
    z-index: 2;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-enterprise {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
}

.title-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-enterprise {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-cta-enterprise {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-enterprise {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-enterprise {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-enterprise:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.25rem;
}

.hero-visual-enterprise {
    position: relative;
    z-index: 2;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Enterprise Solutions Section */
.enterprise-solutions {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-title-enterprise {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1e293b;
}

.section-subtitle-enterprise {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.enterprise-features {
    margin-top: 4rem;
}

.feature-card-enterprise {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-enterprise:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card-enterprise h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card-enterprise p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Contact Enterprise Section */
.contact-enterprise {
    padding: 6rem 0;
    background: #1e293b;
    color: white;
}

.contact-content-enterprise {
    margin-top: 4rem;
}

.contact-form-enterprise {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-header-enterprise {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header-enterprise h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header-enterprise p {
    color: #94a3b8;
    margin: 0;
}

.enterprise-form {
    margin-top: 2rem;
}

.form-group-enterprise {
    margin-bottom: 1.5rem;
}

.form-label-enterprise {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control-enterprise {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.form-control-enterprise:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control-enterprise::placeholder {
    color: #94a3b8;
}

.form-actions-enterprise {
    text-align: center;
    margin-top: 2rem;
}

.contact-info-enterprise {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.info-list-enterprise {
    list-style: none;
    padding: 0;
}

.info-list-enterprise li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-list-enterprise strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.info-list-enterprise p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

.contact-methods {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-methods h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-enterprise {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-cta-enterprise {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-enterprise,
    .btn-outline-enterprise {
        width: 100%;
        max-width: 280px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .section-title-enterprise {
        font-size: 2rem;
    }
    
    .feature-card-enterprise {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-enterprise {
        font-size: 2rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.1);
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.banner-icon {
    font-size: 1rem;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-part {
    display: inline-block;
    margin-right: 0.5rem;
}

.title-black {
    color: #1f2937;
}

.title-purple {
    color: #7c3aed;
}

.title-blue {
    color: #2563eb;
}

.title-pink {
    color: #ec4899;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-start-trial {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: none;
    min-width: 180px;
    justify-content: center;
}

.btn-start-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none;
}

.btn-schedule-demo {
    background: white;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
    min-width: 180px;
    justify-content: center;
}

.btn-schedule-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #374151;
    text-decoration: none;
    border-color: #9ca3af;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-start-trial:hover .btn-icon {
    transform: translateX(3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.feature-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-purple {
    background-color: #7c3aed;
}

.feature-blue {
    background-color: #2563eb;
}

.feature-pink {
    background-color: #ec4899;
}

.feature-text {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-start-trial,
    .btn-schedule-demo {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .title-part {
        display: block;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
}

/* Modern Custom & Contact Sections */
.custom-section-modern,
.contact-section-modern {
    padding: 6rem 0;
    background: linear-gradient(90deg, 
        #f8f4ff 0%, 
        #e8f2ff 25%, 
        #e0f2fe 50%, 
        #fce7f3 75%, 
        #fefefe 100%);
    position: relative;
}

.contact-section-modern {
    background: linear-gradient(90deg, 
        #fefefe 0%, 
        #fce7f3 25%, 
        #e0f2fe 50%, 
        #e8f2ff 75%, 
        #f8f4ff 100%);
}

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

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-main-modern {
    color: #1f2937;
}

.title-highlight-modern {
    color: #7c3aed;
}

.section-subtitle-modern {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Custom Form Styles */
.custom-form-container-modern {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.custom-form-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.custom-form-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.form-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header-modern h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header-modern p {
    color: #6b7280;
    margin: 0;
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-modern:focus {
    outline: none;
    border-color: #7c3aed;
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-actions-modern {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none;
}

.custom-note-modern {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 1rem;
}

.note-icon {
    font-size: 1.25rem;
}

/* Contact Form Styles */
.contact-content-modern {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    height: 100%;
}

.contact-info-card-modern {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-header h6 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.info-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.info-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-purple {
    background-color: #a855f7;
}

.info-blue {
    background-color: #3b82f6;
}

.info-pink {
    background-color: #ec4899;
}

.info-green {
    background-color: #10b981;
}

.contact-cta-modern {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contact-cta-modern h6 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-cta-modern p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-schedule-demo-modern {
    background: white;
    color: #7c3aed;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-schedule-demo-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #7c3aed;
    text-decoration: none;
}

.form-note-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-section-modern,
    .contact-section-modern {
        padding: 4rem 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .custom-form-card-modern,
    .contact-form-card-modern,
    .contact-info-card-modern {
        padding: 2rem;
    }
    
    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-start-trial,
    .btn-schedule-demo {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .custom-form-card-modern,
    .contact-form-card-modern,
    .contact-info-card-modern {
        padding: 1.5rem;
    }
    
    .form-control-modern {
        padding: 0.75rem;
    }
}

/* CTA Section - Professional & Modern Design */
.cta-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.10) 0%, transparent 70%),
        radial-gradient(circle at 60% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        linear-gradient(120deg,
            #0b1220 0%,
            #0a1424 25%,
            #0a1629 50%,
            #0a1a2f 75%,
            #0a1d34 100%);
    color: white;
    padding: 3rem 0;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

/* CTA Background Grid Pattern */
.cta-background::after {
    content: '';
    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: 60px 60px;
    opacity: 0.25;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.20) 35%,
        rgba(0, 0, 0, 0.18) 60%,
        rgba(0, 0, 0, 0.28) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}


.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleSlideIn 1s ease-out;
    color: var(--hero-text-dark);
}

@keyframes titleSlideIn {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.title-part {
    display: inline-block;
    margin-right: 0.5rem;
    animation: titlePartFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.title-part:nth-child(1) { animation-delay: 0.2s; }
.title-part:nth-child(2) { animation-delay: 0.4s; }
.title-part:nth-child(3) { animation-delay: 0.6s; }
.title-part:nth-child(4) { animation-delay: 0.8s; }

@keyframes titlePartFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.title-black {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-purple {
    color: #e0e7ff;
    text-shadow: 0 2px 10px rgba(224, 231, 255, 0.5);
}

.title-blue {
    color: #dbeafe;
    text-shadow: 0 2px 10px rgba(219, 234, 254, 0.5);
}

.title-pink {
    color: #fce7f3;
    text-shadow: 0 2px 10px rgba(252, 231, 243, 0.5);
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    animation: descriptionFadeIn 1s ease-out 0.5s both;
}

@keyframes descriptionFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Enhanced Form Styling */
.cta-actions {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: formSlideIn 1s ease-out 0.8s both;
}

@keyframes formSlideIn {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.form-label {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-select option {
    background: #4c51bf;
    color: white;
    padding: 0.5rem;
}

.btn-start-trial {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4c51bf;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.btn-start-trial:hover::before {
    left: 100%;
}

.btn-start-trial:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #4c51bf;
    text-decoration: none;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: featuresFadeIn 1s ease-out 1.2s both;
}

@keyframes featuresFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: featureItemFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 1s; }

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

.feature-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: circlePulse 2s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.feature-purple {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.feature-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.feature-pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Large Screen Scaling for CTA - Prevent excessive padding on very large screens */
@media (min-width: 1400px) {
    .cta-section .container {
        max-width: 95% !important;
        width: 95%;
        padding: 0 3rem;
    }
    
    .cta-content {
        max-width: 95%;
    }
    
    .cta-title {
        font-size: clamp(3rem, 5.5vw, 4.25rem);
    }
    
    .cta-description {
        font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    }
    
    .pricing-cards {
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1600px) {
    .cta-section .container {
        max-width: 96% !important;
        width: 96%;
        padding: 0 4rem;
    }
    
    .cta-content {
        max-width: 96%;
    }
    
    .cta-title {
        font-size: clamp(3.25rem, 6vw, 4.75rem);
    }
    
    .cta-description {
        font-size: clamp(1.35rem, 2.4vw, 1.65rem);
    }
    
    .pricing-cards {
        gap: 2.75rem;
    }
    
    .pricing-card {
        padding: 2.75rem;
    }
}

@media (min-width: 1920px) {
    .cta-section .container {
        max-width: 97% !important;
        width: 97%;
        padding: 0 5rem;
    }
    
    .cta-content {
        max-width: 97%;
    }
    
    .cta-title {
        font-size: clamp(3.75rem, 6.5vw, 5.5rem);
    }
    
    .cta-description {
        font-size: clamp(1.5rem, 2.6vw, 1.85rem);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-cards {
        gap: 3rem;
    }
    
    .pricing-card {
        padding: 3rem;
    }
    
    .plan-name {
        font-size: 1.75rem;
    }
    
    .feature-list li {
        font-size: 1.125rem;
        padding: 0.75rem 0;
    }
    
    .btn-schedule-demo-cta {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 2560px) {
    .cta-section .container {
        max-width: 98% !important;
        width: 98%;
        padding: 0 6rem;
    }
    
    .cta-content {
        max-width: 98%;
    }
    
    .cta-title {
        font-size: clamp(4.5rem, 7.5vw, 7rem);
    }
    
    .cta-description {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        gap: 4rem;
    }
    
    .pricing-card {
        padding: 4rem;
    }
    
    .plan-name {
        font-size: 2rem;
    }
    
    .feature-list li {
        font-size: 1.25rem;
        padding: 0.875rem 0;
    }
    
    .btn-schedule-demo-cta {
        padding: 1.5rem 4rem;
        font-size: 1.375rem;
    }
    
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .cta-content {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .cta-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-start-trial {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
        line-height: 1.2;
    }
    
    .title-part {
        display: block;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .cta-actions {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .form-control,
    .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-start-trial {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* CTA Section Specific Styles */
.pricing-plans-section {
    margin: 2rem 0 1.5rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    position: relative;
    overflow: hidden;
}

/* glossy highlight */
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.plan-header {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-primary-dark));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-badge.advanced {
    background: linear-gradient(135deg, var(--hero-accent), #7c3aed);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.feature-list li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.btn-plan-select {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-primary-dark));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-plan-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-actions {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-label {
    color: var(--hero-text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--hero-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.btn-start-trial {
    background: linear-gradient(135deg, var(--hero-primary), var(--hero-primary-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-start-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-note {
    color: var(--hero-text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-subtitle {
    margin-bottom: 1rem;
}

.highlight-text {
    display: inline-block;
}

/* CTA Glowing Gradient Shapes */
.cta-gradient-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.25), rgba(139, 92, 246, 0.2));
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
}

.cta-gradient-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(6, 182, 212, 0.3));
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
}

.cta-gradient-shape-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 5%;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(16, 185, 129, 0.25));
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.3);
}

.cta-gradient-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 50%;
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(59, 130, 246, 0.25));
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.cta-gradient-shape-4 {
    width: 180px;
    height: 180px;
    top: 80%;
    right: 25%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(16, 185, 129, 0.2));
    animation: float 10s ease-in-out infinite;
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.25);
}

.cta-gradient-shape-5 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 25%;
    animation-delay: 4.5s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
    animation: float 7s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Additional Professional Enhancements */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateX(20px) translateY(-10px) scale(1.05); 
        opacity: 1;
    }
}

/* Float animation for gradient shapes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(0.5deg);
    }
}

/* Form Validation States */
.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading State for Button */
.btn-start-trial.loading {
    position: relative;
    color: transparent;
}

.btn-start-trial.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #4c51bf;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success State */
.cta-actions.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.cta-actions.success .form-control,
.cta-actions.success .form-select {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .cta-section *,
    .cta-section *::before,
    .cta-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .cta-section {
        background: #000000;
        color: #ffffff;
    }
    
    .cta-actions {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid #ffffff;
    }
    
    .form-control,
    .form-select {
        border: 2px solid #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .btn-start-trial {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
}

/* Footer */
.footer {
    /* Primary color theme with gradient */
    background: linear-gradient(180deg,
        #001550 100%);
    color: white;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 20%,
        transparent 60%,
        rgba(255, 255, 255, 0.04) 85%,
        rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #4ecdc4;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Features section moved to separate features.css file */
/* Login modal styles moved to login-modal.css */

/* Organization Enrollment Section */
.organization-enrollment {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.enrollment-title {
    color: #1e40af;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.enrollment-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enrollment-form-group {
    margin-bottom: 0;
}

.enrollment-form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.enrollment-form-control {
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.enrollment-form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
    outline: none;
}

.enrollment-form-control::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
}

.enrollment-demo-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.enrollment-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.enrollment-demo-btn:active {
    transform: translateY(0);
}

.enrollment-demo-btn.loading .btn-text {
    display: none;
}

.enrollment-demo-btn.loading .btn-loading {
    display: inline-block;
}

/* Enrollment Success Message */
.enrollment-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
}

.success-content i {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-content h6 {
    color: #065f46;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: #047857;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Schedule Demo Section */
.schedule-demo-section {
    margin-top: 3rem;
}

.demo-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.demo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.demo-divider span {
    background: var(--hero-text-dark);
    padding: 0 1.5rem;
    color: var(--hero-text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.organization-enrollment-cta {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enrollment-title-cta {
    color: var(--hero-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enrollment-subtitle-cta {
    color: var(--hero-text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.enrollment-form-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enrollment-form-group-cta {
    margin-bottom: 0;
}

.enrollment-form-label-cta {
    font-weight: 600;
    color: var(--hero-text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.input-wrapper-cta {
    position: relative;
}

.enrollment-form-control-cta {
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 0.875rem 1rem 0.875rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    color: var(--hero-text-dark);
}

.enrollment-form-control-cta:focus {
    border-color: var(--hero-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
    outline: none;
}

.enrollment-form-control-cta::placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
}

.input-icon-cta {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hero-primary);
    z-index: 2;
    font-size: 1rem;
}

.enrollment-demo-btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.enrollment-demo-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.enrollment-demo-btn-cta:active {
    transform: translateY(0);
}

.enrollment-demo-btn-cta.loading .btn-text {
    display: none;
}

.enrollment-demo-btn-cta.loading .btn-loading {
    display: inline-block;
}

/* CTA Demo Success Message */
.cta-demo-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
}

.cta-demo-success i {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-demo-success h6 {
    color: #065f46;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.cta-demo-success p {
    color: #047857;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for CTA Demo Section */
@media (max-width: 768px) {
    .organization-enrollment-cta {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .enrollment-title-cta {
        font-size: 1.1rem;
    }
    
    .enrollment-subtitle-cta {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .enrollment-form-control-cta {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .enrollment-demo-btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .demo-divider {
        margin: 1.5rem 0;
    }
}

/* CTA Section Action Button */
.btn-schedule-demo-cta {
    background: transparent;
    border: 2px solid var(--hero-primary);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--hero-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 250px;
}

.btn-schedule-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: var(--hero-primary);
    color: white;
}

.btn-schedule-demo-cta:active {
    transform: translateY(0);
}

/* Responsive Design for CTA Button */
@media (max-width: 768px) {
    .btn-schedule-demo-cta {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
