body {
    background: linear-gradient(135deg, #0E1466 0%, #2E3192 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
 
/* Reduced Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #9A0101 0%, #2E3192 100%);
    opacity: 0.2;
    animation: float 40s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.7rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FilterG Diagram Styles */
.filterg-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: float 12s ease-in-out infinite;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2E3192, #2E3192);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,44,0.40);
    z-index: 10;
}

.filterg-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    letter-spacing: -1px;
}

.filterg-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.industry-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    transform-origin: 0 50%;
    transform: translate(0, -50%) rotate(var(--angle));
}

.industry-spoke::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #2E3192;
    border-radius: 50%;
}

.industry-spoke::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.industry-label {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(calc(-1 * var(--angle)));
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    min-width: auto;
    max-width: none;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    word-break: keep-all;
    overflow-wrap: normal;
}

.industry-spoke:hover .industry-label {
    background: #2E3192;
    color: white;
    transform: translateY(-50%) rotate(calc(-1 * var(--angle))) scale(1.05);
}

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

/* CTA Buttons */
.btn-primary-ai {
    background: linear-gradient(135deg, #2E3192, var(--secondary-red));
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.btn-primary-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.btn-outline-ai {
    border: 2px solid #2E3192;
    color: #2E3192;
    background: transparent;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2E3192, var(--secondary-red));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-ai:hover::before {
    width: 100%;
}

.btn-outline-ai:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-color: #2E3192;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2E3192, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E3192, var(--secondary-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, #2E3192 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

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

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styling */
.section-padding {
    padding: 10px 0 50px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: #000000;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding: 40px 0 30px;
    }
    
    .hero-visual {
        margin-top: 2.5rem;
        height: 380px;
    }
    
    .filterg-diagram {
        width: 340px;
        height: 340px;
    }
    
    .center-circle {
        width: 165px;
        height: 165px;
    }
    
    .filterg-title {
        font-size: 2.1rem;
    }
    
    .filterg-subtitle {
        font-size: 0.8rem;
    }
    
    .industry-spoke {
        width: 170px;
    }
    
    .industry-label {
        right: -120px;
        font-size: 0.75rem;
        min-width: auto;
        max-width: none;
        padding: 6px 10px;
        white-space: nowrap;
        word-break: keep-all;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 20px;
        min-height: auto;
    }
    
    .hero-visual {
        height: 500px;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .filterg-diagram {
        width: 280px;
        height: 280px;
    }
    
    .center-circle {
        width: 130px;
        height: 130px;
    }
    
    .filterg-title {
        font-size: 1.7rem;
    }
    
    .filterg-subtitle {
        font-size: 0.68rem;
    }
    
    .industry-spoke {
        width: 140px;
    }
    
    /* Hide connecting lines on mobile */
    .industry-spoke::after {
        display: none;
    }
    
    .industry-label {
        right: -100px;
        font-size: 0.68rem;
        min-width: auto;
        max-width: none;
        padding: 5px 8px;
        line-height: 1.25;
        white-space: nowrap;
        word-break: keep-all;
    }
    
    .section-padding {
        padding: 40px 0 40px;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .glass-card h4 {
        font-size: 1.4rem;
    }
    
    .glass-card p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .btn-primary-ai, .btn-outline-ai {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0 30px;
        margin-top: 1vh;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        height: 450px;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filterg-diagram {
        width: 240px;
        height: 240px;
    }
    
    .center-circle {
        width: 110px;
        height: 110px;
    }
    
    .filterg-title {
        font-size: 1.4rem;
    }
    
    .filterg-subtitle {
        font-size: 0.58rem;
        letter-spacing: 1.2px;
    }
    
    .industry-spoke {
        width: 120px;
    }
    
    /* Hide connecting lines on mobile */
    .industry-spoke::after {
        display: none;
    }
    
    .industry-label {
        right: -110px;
        font-size: 0.62rem;
        min-width: auto;
        max-width: none;
        padding: 4px 7px;
        line-height: 1.3;
        white-space: nowrap;
        word-break: keep-all;
    }
    
    .glass-card {
        padding: 1.5rem 1rem;
    }
    
    .glass-card h4 {
        font-size: 1.5rem !important;
    }
    
    .glass-card p {
        font-size: 1.2rem !important;
        line-height: 1.8;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 420px;
    }
    
    .filterg-diagram {
        width: 220px;
        height: 220px;
    }
    
    .center-circle {
        width: 100px;
        height: 100px;
    }
    
    .filterg-title {
        font-size: 1.3rem;
    }
    
    .filterg-subtitle {
        font-size: 0.55rem;
    }
    
    .industry-spoke {
        width: 110px;
    }
    
    /* Hide connecting lines on mobile */
    .industry-spoke::after {
        display: none;
    }
    
    .industry-label {
        right: -100px;
        font-size: 0.6rem;
        min-width: auto;
        max-width: none;
        padding: 4px 6px;
        line-height: 1.3;
        white-space: nowrap;
        word-break: keep-all;
    }
}

@media (max-width: 400px) {
    .hero-visual {
        height: 400px;
    }
    
    .filterg-diagram {
        width: 200px;
        height: 200px;
    }
    
    .center-circle {
        width: 90px;
        height: 90px;
    }
    
    .filterg-title {
        font-size: 1.2rem;
    }
    
    .filterg-subtitle {
        font-size: 0.5rem;
    }
    
    .industry-spoke {
        width: 100px;
    }
    
    /* Hide connecting lines on mobile */
    .industry-spoke::after {
        display: none;
    }
    
    .industry-label {
        right: -95px;
        font-size: 0.58rem;
        min-width: auto;
        max-width: none;
        padding: 3px 5px;
        line-height: 1.3;
        white-space: nowrap;
        word-break: keep-all;
    }
}

@media (max-width: 360px) {
    .hero-visual {
        height: 380px;
    }
    
    .filterg-diagram {
        width: 190px;
        height: 190px;
    }
    
    .center-circle {
        width: 85px;
        height: 85px;
    }
    
    .filterg-title {
        font-size: 1.1rem;
    }
    
    .filterg-subtitle {
        font-size: 0.48rem;
        letter-spacing: 1px;
    }
    
    .industry-spoke {
        width: 95px;
    }
    
    /* Hide connecting lines on mobile */
    .industry-spoke::after {
        display: none;
    }
    
    .industry-label {
        right: -90px;
        font-size: 0.56rem;
        min-width: auto;
        max-width: none;
        padding: 3px 5px;
        line-height: 1.3;
        white-space: nowrap;
        word-break: keep-all;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-brain {
    width: 60px;
    height: 60px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid #2E3192;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Departments Section */
.departments-section {
    min-height: 80vh;
    padding: 70px 0;
    position: relative;
}

.departments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(238, 90, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.departments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.departments-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.departments-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 0px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.departments-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.departments-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.departments-grid {
    display: block;
    margin-top: 40px;
}

.examples-section {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.examples-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: ##2E3192;
    margin-bottom: 20px;
}

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

.department-item {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.department-item::before {
    content: '•';
    color: ##2E3192;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.department-item strong {
    color: #fff;
    font-weight: 700;
}

/* Responsive Design for Departments */
@media (max-width: 768px) {
    .departments-section {
        padding: 50px 0;
    }
    
    .departments-container {
        padding: 0 20px;
    }

    .examples-section {
        text-align: left;
    }

    .department-item {
        font-size: 1.15rem;
        padding-left: 25px;
    }
    
    .departments-description {
        font-size: 1.3rem;
    }
    
    .examples-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .departments-section {
        padding: 40px 0;
    }
    
    .departments-title {
        font-size: 2rem !important;
    }
    
    .departments-subtitle {
        font-size: 1.3rem !important;
    }
    
    .departments-description {
        font-size: 1.4rem !important;
    }
    
    .examples-title {
        font-size: 1.5rem !important;
    }
    
    .department-item {
        font-size: 1.3rem !important;
    }
}

/* Call to Action Section */
.cta-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #0E1466 0%, #1a2078 30%, #2a3085 60%, #3d4092 100%);
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>);
    opacity: 0.3;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.cta-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.ai-invitation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInDown 1s ease-out 0.3s both;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ai-face {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.ai-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.speech-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #0E1466;
    padding: 15px 25px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.95);
}

.speech-bubble p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.get-started-btn {
    background: linear-gradient(135deg, #470000 0%, #A52A2A 100%);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    margin-bottom: 20px;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.get-started-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-header {
    background: linear-gradient(135deg, #0E1466, #1a2078);
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-body {
    padding: 30px;
}

.ai-helper {
    background: linear-gradient(135deg, #f8f9ff, #e6e9ff);
    border: 1px solid #0E1466;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ai-helper-avatar {
    font-size: 2rem;
    background: #0E1466;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-helper p {
    margin: 0;
    color: #0E1466;
    font-weight: 500;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0E1466;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: linear-gradient(45deg, #0E1466, #1a2078);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 20, 102, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }

    .ai-invitation {
        flex-direction: column;
        gap: 15px;
    }

    .speech-bubble::before {
        display: none;
    }

    .popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-body {
        padding: 20px;
    }

    .ai-helper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-description {
        font-size: 1.3rem;
    }
    
    .cta-note {
        font-size: 1rem;
    }
    
    .speech-bubble p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .cta-title {
        font-size: 2rem !important;
    }
    
    .cta-description {
        font-size: 1.4rem !important;
    }
    
    .get-started-btn {
        font-size: 1.3rem !important;
        padding: 20px 40px;
    }
    
    .cta-note {
        font-size: 1.1rem !important;
    }
    
    .speech-bubble p {
        font-size: 1.1rem !important;
    }
    
    .popup-header h3 {
        font-size: 1.6rem !important;
    }
    
    .ai-helper p {
        font-size: 1.1rem !important;
    }
    
    .form-group label {
        font-size: 1.1rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1.2rem !important;
    }
    
    .submit-btn {
        font-size: 1.3rem !important;
    }
}