/* IT PRO card styles */
.section-itpro .itpro-card {
    background: rgba(28, 28, 38, 0.98);
    border: 1.5px solid #23234A;
    box-shadow: 0 0 24px #23234A20;
    border-radius: .75rem;
    padding: 1.25rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: transform .18s ease, box-shadow .18s ease;
}

.section-itpro .itpro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(107, 78, 255, 0.06), 0 0 60px rgba(107, 78, 255, 0.2);
}

.section-itpro .itpro-card-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: .5rem;
}

.section-itpro .itpro-card-description {
    color: #DADADA;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.section-itpro .itpro-card-read-more {
    color: #00F0FF;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.75rem;
    display: block;
}

.section-itpro .itpro-card-read-more:hover {
    color: #6B4EFF;
    text-decoration: underline;
}

.section-itpro .itpro-card-date {
    color: #DADADA;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: .5rem;
}

.section-itpro .itpro-card-price {
    color: #fff;
    font-size: 1.12rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: .7rem;
}

.section-itpro .itpro-card-discount {
    color: #DADADA;
    font-size: 1rem;
    font-weight: 600;
}

.section-itpro .itpro-card-btn {
    background: #23234A;
    color: #fff;
    box-shadow: 0 2px 8px #23234A40;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: .5rem 0;
    margin-top: 0.5rem;
    border: none;
    transition: box-shadow .2s, background .2s, transform .2s;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.25rem;
}

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

.section-itpro .itpro-card-btn:hover::before {
    left: 100%;
}

.section-itpro .itpro-card-btn:hover {
    background: #2D2D6B;
    box-shadow: 0 4px 16px #23234A80;
    transform: translateY(-2px);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.section-itpro .itpro-card-btn-call {
    margin-bottom: 0.25rem;
    background: #fff;
    color: #23234A;
    box-shadow: 0 2px 8px #23234A40;
    box-shadow: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: .5rem 0;
    transition: background .2s, color .2s, box-shadow .2s, transform .2s;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.25rem;
}

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

.section-itpro .itpro-card-btn-call:hover::before {
    left: 100%;
}

.section-itpro .itpro-card-btn-call:hover {
    background: #fff;
    box-shadow: 0 4px 16px #23234A80;
    transform: translateY(-2px);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

@keyframes bf-pulse {
    0% {
        text-shadow: 0 0 16px #ffffff80, 0 0 0 #ffffff;
    }

    100% {
        text-shadow: 0 0 32px #ffffffcc, 0 0 8px #ffffff;
    }
}

@keyframes bf-glowPulse {
    0% {
        box-shadow: 0 0 40px 8px #6B4EFF20 inset, 0 0 0 0 #00F0FF;
    }

    100% {
        box-shadow: 0 0 60px 12px #6B4EFF30 inset, 0 0 16px 2px #00F0FF;
    }
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(107, 78, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(107, 78, 255, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(107, 78, 255, 0.4);
    }
}

@keyframes hero-gradient {
    0% {
        background: linear-gradient(135deg, #0E0E0E 0%, #1a1a2e 25%, #16213e 50%, #0E0E0E 75%, #0f0f23 100%);
    }
    25% {
        background: linear-gradient(135deg, #0f0f23 0%, #0E0E0E 25%, #1a1a2e 50%, #16213e 75%, #0E0E0E 100%);
    }
    50% {
        background: linear-gradient(135deg, #16213e 0%, #0f0f23 25%, #0E0E0E 50%, #1a1a2e 75%, #16213e 100%);
    }
    75% {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f0f23 50%, #0E0E0E 75%, #1a1a2e 100%);
    }
    100% {
        background: linear-gradient(135deg, #0E0E0E 0%, #1a1a2e 25%, #16213e 50%, #0E0E0E 75%, #0f0f23 100%);
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) translateX(5px) rotate(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.7;
    }
}

/* Global responsive fixes */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* Container responsive fixes */
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsive fixes */
@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Countdown responsive */
    .countdown-item {
        min-width: 70px !important;
        margin: 0 2px;
    }
    
    .countdown-num {
        font-size: 2.2rem !important;
    }
    
    .countdown-label {
        font-size: 0.9rem !important;
    }
    
    /* Course cards mobile */
    .creative-card, .itpro-card {
        margin-bottom: 1rem;
        padding: 1rem !important;
    }
    
    /* Button responsive */
    .btn {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Hero section mobile */
    .bf-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .bf-hero .display-4 {
        font-size: 2.2rem;
    }
    
    /* Section titles mobile */
    h2 {
        font-size: 1.8rem !important;
    }
    
    /* Course descriptions mobile */
    .creative-card-description, .itpro-card-description {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Read more links mobile */
    .creative-card-read-more, .itpro-card-read-more {
        font-size: 0.8rem !important;
    }
}

/* Tablet responsive fixes */
@media (max-width: 768px) and (min-width: 577px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Countdown responsive */
    .countdown-item {
        min-width: 80px !important;
    }
    
    .countdown-num {
        font-size: 2.5rem !important;
    }
    
    /* Course cards tablet */
    .creative-card, .itpro-card {
        padding: 1.25rem !important;
    }
    
    /* Section titles tablet */
    h2 {
        font-size: 2rem !important;
    }
}

/* Typography - Font Hierarchy */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

h4, h5, h6 {
    font-weight: 500;
}

/* Font weight utilities */
.font-weight-light { font-weight: 300; }
.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-semibold { font-weight: 600; }
.font-weight-bold { font-weight: 700; }
.font-weight-extrabold { font-weight: 800; }
.font-weight-black { font-weight: 900; }

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.bf-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    animation: hero-gradient 20s ease-in-out infinite;
    overflow: hidden;
}

.bf-hero .container {
    position: relative;
    z-index: 2;
    animation: bf-fadeUp .7s ease both;
}

.bf-glow {
    position: absolute;
    right: -10%;
    top: -10%;
    width: 60vmin;
    height: 60vmin;
    background: radial-gradient(closest-side, rgba(107, 78, 255, 0.35), rgba(107, 78, 255, 0.12) 40%, transparent 60%);
    filter: blur(40px);
    transform: rotate(10deg);
    pointer-events: none;
    z-index: 1;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(107, 78, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    background: rgba(0, 240, 255, 0.2);
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 30%;
    animation-delay: 9s;
    background: rgba(0, 240, 255, 0.25);
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    top: 10%;
    left: 70%;
    animation-delay: 12s;
    background: rgba(107, 78, 255, 0.2);
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 15%;
    animation-delay: 15s;
}

.particle:nth-child(7) {
    width: 9px;
    height: 9px;
    top: 30%;
    left: 85%;
    animation-delay: 18s;
    background: rgba(0, 240, 255, 0.3);
}

.particle:nth-child(8) {
    width: 11px;
    height: 11px;
    top: 50%;
    left: 45%;
    animation-delay: 21s;
    background: rgba(107, 78, 255, 0.25);
}

.countdown-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(107, 78, 255, 0.18);
    color: #fff;
}

.countdown-strip small {
    color: #fff;
    font-size: .85rem;
}

/* CTA button styles */
.btn-cta-main {
    transition: box-shadow .18s ease, transform .12s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-main::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-cta-main:hover::before {
    left: 100%;
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(107, 78, 255, 0.18);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.btn-final-cta {
    background: linear-gradient(135deg, #6B4EFF 0%, #00F0FF 100%);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-final-cta:hover::before {
    left: 100%;
}

.btn-final-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(107, 78, 255, 0.3);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.btn-violet-outline {
    color: #fff;
    border: 1.5px solid rgba(107, 78, 255, 0.9);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-violet-outline:hover::before {
    left: 100%;
}

.btn-violet-outline:hover {
    background: rgba(107, 78, 255, 0.08);
    color: #fff;
    border-color: rgba(107, 78, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 78, 255, 0.2);
}

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

@keyframes bf-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bf-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade-in animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.bf-card {
    border: none;
    border-radius: .75rem;
    overflow: hidden;
}

.bf-card img {
    height: 200px;
    object-fit: cover;
}

#countdown {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

#countdown .count {
    /* background: #1a1a1a; */
    padding: 1rem;
    border-radius: .5rem;
    min-width: 88px;
    text-align: center;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

#countdown .count h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #00F0FF;
    font-weight: 700;
}

#countdown .count span {
    display: block;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
}

/* small tweaks */
.bf-hero .display-4 small {
    font-size: .45em;
    opacity: .9;
}

/* Responsiveness tweaks */
@media (max-width:576px) {
    #countdown .count {
        min-width: 64px;
        padding: .6rem;
    }

    .bf-card img {
        height: 150px;
    }

    .bf-glow {
        width: 40vmin;
        height: 40vmin;
        right: -20%;
        top: -20%;
        filter: blur(28px);
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Additional mobile fixes */
    .countdown-strip {
        max-width: 100% !important;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .d-flex.gap-3 {
        gap: 0.5rem !important;
    }
    
    .d-flex.gap-3.gap-md-4 {
        gap: 0.5rem !important;
    }
    
    .d-flex.gap-3.gap-md-5 {
        gap: 0.5rem !important;
    }
}

/* Section 2 - Creative */
.creative-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.creative-section h2 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
}

.creative-section .creative-card {
    background: rgba(245, 245, 245, 0.95);
    border: 1.5px solid rgba(107, 78, 255, 0.2);
    border-radius: .75rem;
    padding: 1.25rem;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 0 24px rgba(35, 34, 74, 0.2);
}

.creative-section .creative-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(107, 78, 255, 0.06), 0 0 60px rgba(107, 78, 255, 0.15);
}

.creative-section .creative-card-title {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    letter-spacing: -1px;
    margin-bottom: .5rem;
    font-weight: 700;
}

.creative-section .creative-card-description {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.creative-section .creative-card-read-more {
    color: #6B4EFF;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.75rem;
    display: block;
}

.creative-section .creative-card-read-more:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.creative-section .creative-card-date {
    color: #666;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: .5rem;
}

.creative-section .creative-card-price {
    color: #000;
    font-size: 1.12rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: .3rem;
}

.creative-section .creative-card-discount {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

.creative-section .creative-card-btn {
    background: #6B4EFF;
    color: #fff;
    box-shadow: 0 2px 8px rgba(107, 78, 255, 0.4);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: .5rem 0;
    border: none;
    transition: box-shadow .2s, background .2s, transform .2s;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.25rem;
}

.creative-section .creative-card-btn::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.4s;
}

.creative-section .creative-card-btn-call::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.4s;
}

.creative-section .creative-card-btn:hover::before {
    left: 100%;
}

.creative-section .creative-card-btn-call:hover::before {
    left: 100%;
}

.creative-section .creative-card-btn:hover {
    background: #5A4AE8;
    box-shadow: 0 4px 16px rgba(107, 78, 255, 0.8);
    transform: translateY(-2px);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.creative-section .creative-card-btn-call:hover {
    box-shadow: 0 4px 16px rgba(107, 78, 255, 0.8);
    transform: translateY(-2px);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.creative-section .price {
    color: #00F0FF;
    font-weight: 700;
}

.pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 78, 255, 0.08) 0%, rgba(255, 255, 255, 0.0) 80%);
    filter: blur(32px);
    z-index: 0;
    pointer-events: none;
}

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

/* Modal small tweaks */
.modal-content.apply-modal {
    background: #0B0B0B;
    color: #fff;
    border-radius: .6rem;
}

.apply-modal .form-label {
    color: #ddd;
}

.apply-modal .form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

@media (max-width:768px) {
    .creative-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Section 3 - IT PRO */
.section-itpro {
    background: #0B0B0B;
    color: #DADADA;
}

.section-itpro .itpro-table {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.section-itpro .text-silver {
    color: #C9C9C9;
}

.bg-matte {
    background: linear-gradient(180deg, rgba(11, 11, 11, 1) 0%, rgba(18, 18, 18, 1) 100%);
}

.btn-reserve {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(107, 78, 255, 0.16);
    padding: .35rem .65rem;
    border-radius: .4rem;
}

.btn-reserve:hover {
    background: rgba(107, 78, 255, 0.06);
    box-shadow: 0 8px 24px rgba(107, 78, 255, 0.06);
}

.itpro-table .row {
    padding: .6rem 0;
}

.section-itpro h2,
.section-itpro p {
    color: #fff;
}

.section-itpro {
    font-family: 'Inter', sans-serif;
}

.text-cyan {
    color: #00F0FF;
}

/* Section 4 - Value Strip */
.value-strip {
    background: #000000;
    color: #C0C0C0;
    padding: 4rem 0;
}

.value-text {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.highlight {
    animation: value-glow 4s ease-in-out infinite alternate;
}

@keyframes value-glow {
    0% {
        text-shadow: 0 0 5px rgba(107, 78, 255, 0.5), 0 0 10px rgba(107, 78, 255, 0.3), 0 0 15px rgba(107, 78, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.4);
    }
}

@media (max-width: 768px) {
    .value-text {
        font-size: 1.8rem;
    }
}

/* Section 5 - FAQ */
.faq-section {
    background: #ffffff;
    color: #333;
}

.faq-section h2 {
    color: #0E0E0E;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
}

.faq-section .accordion {
    --bs-accordion-bg: #ffffff;
    --bs-accordion-border-color: #e9ecef;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.5rem;
}

.faq-section .accordion-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem !important;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: #6B4EFF;
    box-shadow: 0 4px 16px rgba(107, 78, 255, 0.15);
    transform: translateY(-2px);
}

.faq-section .accordion-button {
    background: #ffffff;
    color: #0E0E0E;
    border: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-section .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 78, 255, 0.05), transparent);
    transition: left 0.5s;
}

.faq-section .accordion-button:hover::before {
    left: 100%;
}

.faq-section .accordion-button:hover {
    background: rgba(107, 78, 255, 0.02);
    color: #0E0E0E;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(107, 78, 255, 0.05);
    color: #0E0E0E;
    box-shadow: 0 0 10px rgba(107, 78, 255, 0.1);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(107, 78, 255, 0.25);
    border-color: #6B4EFF;
}

.faq-section .accordion-body {
    background: #ffffff;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    border-top: none;
}

.faq-section .accordion-body a {
    color: #6B4EFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-section .accordion-body a:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.faq-icon {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

.btn-faq {
    background: linear-gradient(135deg, #6B4EFF 0%, #00F0FF 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(107, 78, 255, 0.3) !important;
}

.btn-faq::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-faq:hover::before {
    left: 100%;
}

.btn-faq:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(107, 78, 255, 0.4) !important;
    background: linear-gradient(135deg, #5A4AE8 0%, #00D4E8 100%) !important;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .faq-section .accordion-body {
        padding: 0.375rem 1rem 0.875rem 1rem;
    }
}

/* Section 6 - Newsletter */
.newsletter-section {
    background: #0E0E0E;
    color: #fff;
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #fff;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
    color: #ccc;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #6B4EFF;
    box-shadow: 0 0 0 0.2rem rgba(107, 78, 255, 0.25);
    color: #fff;
}

.newsletter-label {
    color: #DADADA;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-btn {
    background: #6B4EFF;
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::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;
}

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

.newsletter-btn:hover {
    background: #5A4AE8;
    box-shadow: 0 4px 16px rgba(107, 78, 255, 0.4);
    transform: translateY(-3px);
}

.newsletter-section .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.newsletter-section .form-check-input {
    margin-right: 0.5rem;
    margin-top: 0;
}

/* Section 7 - Footer */
.footer-section {
    background: #0B0B0B;
    color: #DADADA;
    font-family: 'Inter', sans-serif;
}

.footer-contact, .footer-social {
    font-size: 0.9rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
    font-size: 1.2rem;
}

.footer-link:hover {
    color: #6B4EFF;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #C0C0C0;
}

.footer-contact a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #6B4EFF;
}

/* AI Floating Elements */
.ai-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-element {
    position: absolute;
    font-size: 2.5rem;
    animation: ai-float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.ai-element:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.6));
}

/* Specific AI element styles */
.ai-brain {
    color: #00F0FF;
    animation: ai-float 10s ease-in-out infinite;
}

.ai-electric {
    color: #FFD700;
    animation: ai-float 9s ease-in-out infinite reverse;
}

.ai-robot {
    color: #6B4EFF;
    animation: ai-float 11s ease-in-out infinite;
}

.ai-gear {
    color: #C0C0C0;
    animation: ai-spin-float 12s ease-in-out infinite;
}

.ai-spark {
    color: #FF6B6B;
    animation: ai-float 8.5s ease-in-out infinite reverse;
}

.ai-link {
    color: #00F0FF;
    animation: ai-float 10.5s ease-in-out infinite;
}

/* AI Title Glow Effect */
.ai-title {
    color: #fff;
    animation: ai-title-glow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Semos Education Glow Effect */
.semos-glow {
    animation: semos-glow 4s ease-in-out infinite alternate;
}

/* AI Card Pulse Effect */
.section-itpro .itpro-card:hover {
    animation: ai-card-pulse 1.5s ease-in-out infinite;
}

/* AI Animations */
@keyframes ai-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) rotate(-5deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(3deg);
        opacity: 0.8;
    }
}

@keyframes ai-spin-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50px) translateX(-10px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes ai-title-glow {
    0% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 30px rgba(0, 240, 255, 0.8), 0 0 60px rgba(0, 240, 255, 0.6), 0 0 90px rgba(0, 240, 255, 0.4);
    }
}

@keyframes semos-glow {
    0% {
        text-shadow: 0 0 8px rgba(107, 78, 255, 0.4), 0 0 16px rgba(107, 78, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 12px rgba(107, 78, 255, 0.6), 0 0 24px rgba(107, 78, 255, 0.3);
    }
}

@keyframes ai-card-pulse {
    0% {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(107, 78, 255, 0.06), 0 0 60px rgba(107, 78, 255, 0.2);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 18px 50px rgba(0, 240, 255, 0.15), 0 0 80px rgba(0, 240, 255, 0.3);
    }
    100% {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(107, 78, 255, 0.06), 0 0 60px rgba(107, 78, 255, 0.2);
    }
}

.pulse-bg-final {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 78, 255, 0.12) 0%, rgba(0, 240, 255, 0.08) 40%, transparent 80%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: final-bg-pulse 6s ease-in-out infinite alternate;
}

@keyframes final-bg-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

.final-cta-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-align: center;
    animation: bf-fadeUp 1s ease both;
    font-weight: 900;
}

.final-countdown {
    animation: bf-fadeUp 1.2s .2s ease both;
    position: relative;
}

.btn-final-cta {
    animation: bf-fadeUp 1.4s .4s ease both;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2.5rem;
    }

    .final-cta-section {
        padding: 4rem 0;
    }

    .pulse-bg-final {
        width: 600px;
        height: 300px;
    }
    
    /* Additional mobile fixes for final CTA */
    .final-countdown {
        max-width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .btn-final-cta {
        font-size: 1rem !important;
        padding: 0.7rem 2rem !important;
    }
}

.creative-section .creative-card-btn-call {
    background: #fff;
    color: #6B4EFF;
    border: 2px solid #6B4EFF;
    box-shadow: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: .5rem 0;
    transition: background .2s, color .2s, box-shadow .2s, transform .2s;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.25rem;
}

/* Floating Semos Logo */
.semos-floating-logo {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
    animation: semos-logo-float-space 60s linear infinite;
}

.semos-logo-float {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(107, 78, 255, 0.4));
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.semos-logo-float:hover {
    filter: drop-shadow(0 0 30px rgba(107, 78, 255, 0.6));
    opacity: 1;
}

@keyframes semos-logo-float-space {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    6.67% {
        transform: translateY(-8px) translateX(-12px) rotate(0.3deg) scale(1.01);
        opacity: 0.75;
    }
    13.33% {
        transform: translateY(-4px) translateX(-28px) rotate(0.1deg) scale(0.99);
        opacity: 0.72;
    }
    20% {
        transform: translateY(6px) translateX(-22px) rotate(-0.2deg) scale(1.02);
        opacity: 0.78;
    }
    26.67% {
        transform: translateY(14px) translateX(-6px) rotate(-0.1deg) scale(0.98);
        opacity: 0.74;
    }
    33.33% {
        transform: translateY(4px) translateX(8px) rotate(0.2deg) scale(1.005);
        opacity: 0.76;
    }
    40% {
        transform: translateY(-10px) translateX(18px) rotate(-0.3deg) scale(1.03);
        opacity: 0.8;
    }
    46.67% {
        transform: translateY(-2px) translateX(32px) rotate(0.4deg) scale(0.97);
        opacity: 0.73;
    }
    53.33% {
        transform: translateY(12px) translateX(24px) rotate(-0.2deg) scale(1.01);
        opacity: 0.77;
    }
    60% {
        transform: translateY(2px) translateX(6px) rotate(0.1deg) scale(0.995);
        opacity: 0.75;
    }
    66.67% {
        transform: translateY(-6px) translateX(-16px) rotate(-0.4deg) scale(1.02);
        opacity: 0.79;
    }
    73.33% {
        transform: translateY(8px) translateX(-32px) rotate(0.2deg) scale(0.98);
        opacity: 0.71;
    }
    80% {
        transform: translateY(-4px) translateX(-18px) rotate(-0.1deg) scale(1.005);
        opacity: 0.76;
    }
    86.67% {
        transform: translateY(10px) translateX(-8px) rotate(0.3deg) scale(1.01);
        opacity: 0.78;
    }
    93.33% {
        transform: translateY(0px) translateX(12px) rotate(-0.2deg) scale(0.99);
        opacity: 0.74;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
}

/* Laptop screen adjustments (14-16 inch screens) */
@media (min-width: 1366px) and (max-width: 1920px) {
    .semos-floating-logo {
        top: 15%;
        right: 8%;
        z-index: 4;
    }
    
    .semos-logo-float {
        width: 140px;
    }
}

/* Mobile adjustments for floating logo */
@media (max-width: 768px) {
    .semos-floating-logo {
        top: 5%;
        right: 5%;
        z-index: 5;
    }
    
    .semos-logo-float {
        width: 80px;
    }
}