/* Modern, Stunning Landing Page Design */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F8F5FF 0%, #FFF5FA 50%, #F0FFFE 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fix highlight visibility on mobile */
@media (max-width: 768px) {
    .hero-title .highlight,
    .gradient-text,
    [style*="-webkit-text-fill-color: transparent"] {
        -webkit-text-fill-color: var(--primary) !important;
        color: var(--primary) !important;
        background: none !important;
    }
}

/* Dark theme mobile text visibility */
@media (prefers-color-scheme: dark) {
    .hero-title .highlight,
    .gradient-text {
        -webkit-text-fill-color: var(--primary) !important;
        color: var(--primary) !important;
        background: none !important;
        filter: brightness(1.3);
    }
    
    .hero-title,
    .hero-subtitle {
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        opacity: 0.9;
    }
    
    /* Hero visual cards dark theme */
    .hero-center {
        background-color: #2d2d2d !important;
        border-color: rgba(20, 184, 166, 0.5) !important;
    }
    
    .hero-center h3 {
        -webkit-text-fill-color: var(--primary) !important;
        color: var(--primary) !important;
        filter: brightness(1.3);
    }
    
    .floating-card {
        background-color: #2d2d2d !important;
        border-color: rgba(20, 184, 166, 0.3) !important;
        color: #ffffff !important;
    }
    
    .floating-card p {
        color: #e5e5e5 !important;
    }
    
    /* Topics section dark theme */
    .topics-section {
        background: #1a1a1a !important;
    }
    
    .section-header h2 {
        color: #ffffff !important;
    }
    
    .section-header p {
        color: #d1d1d1 !important;
    }
    
    /* What we deliver dark theme */
    .what-we-deliver {
        background: #1a1a1a !important;
    }
    
    .deliver-card {
        background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%) !important;
        border-color: rgba(20, 184, 166, 0.3) !important;
    }
    
    .deliver-card h3 {
        color: #ffffff !important;
    }
    
    .deliver-card p {
        color: #d1d1d1 !important;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Central Circle Background */
.hero-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.circle-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
    animation: pulse-circle 4s ease-in-out infinite;
}

.center-icon {
    font-size: 6rem;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(20, 184, 166, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    background: white;
    padding: var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--rounded-xl);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.25);
    border: 3px solid var(--primary);
    max-width: 220px;
}

.hero-center .center-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.hero-center h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative Rings */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.15;
    animation: rotate-ring 20s linear infinite;
}

.ring-1 {
    width: 500px;
    height: 500px;
    border-color: var(--primary);
}

.ring-2 {
    width: 600px;
    height: 600px;
    border-color: var(--secondary);
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 25s;
}

.ring-3 {
    width: 450px;
    height: 450px;
    border-color: var(--accent);
    border-style: dotted;
    animation-duration: 30s;
}

.hero-shape {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 50px rgba(99, 102, 241, 0.25));
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--rounded-2xl);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    animation: float-card 4s ease-in-out infinite;
    max-width: 140px;
    z-index: 3;
    border: 2px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 70px rgba(20, 184, 166, 0.25);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 4px 10px rgba(20, 184, 166, 0.2));
}

.card-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 8%;
    right: 5%;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.6s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-3 {
    animation-name: float-card-centered;
}

@keyframes float-card-centered {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-4xl);
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.stat-item p {
    font-size: var(--text-lg);
    opacity: 0.95;
}

/* ===== WHAT WE DELIVER SECTION ===== */
.what-we-deliver {
    padding: var(--spacing-4xl) 0;
    background: white;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-4xl);
}

.deliver-card {
    padding: var(--spacing-2xl) var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    border-radius: var(--rounded-2xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.deliver-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.deliver-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-md);
    display: block;
}

.deliver-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.deliver-card p {
    color: var(--text-light);
    font-size: var(--text-base);
    line-height: 1.6;
    margin: 0;
}

/* ===== TOPICS SECTION ===== */
.topics-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-lg);
}

/* Hide topic cards 4, 5, and 6 only on index page */
#topics .topics-grid .topic-card:nth-child(n+4) {
    display: none;
}

/* Topics footer button container */
.topics-footer {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-3xl);
}

.topics-grid::-webkit-scrollbar {
    height: 8px;
}

.topics-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--rounded-full);
}

.topics-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--rounded-full);
}

.topics-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.topic-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--rounded-2xl);
    border: 1px solid rgba(20, 184, 166, 0.15);
    transition: none; /* Disable transitions to prevent flickering */
    position: relative;
    overflow: hidden;
    /* Ensure no animations */
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.topic-card:hover {
    /* Remove transform animation */
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.topic-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    opacity: 0.6;
}

.topic-card h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.topic-card p {
    color: var(--text-light);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.topic-list li {
    color: var(--text-light);
    font-size: var(--text-sm);
    padding-left: var(--spacing-lg);
    position: relative;
}

.topic-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.7;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-4xl) + var(--spacing-2xl));
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.feature-row-right {
    grid-template-columns: 1fr 1fr;
}

.feature-row-right .feature-image {
    order: -1;
}

.feature-content h3 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
}

.feature-points {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.feature-points li {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.feature-points li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 800;
    margin-right: var(--spacing-md);
    font-size: var(--text-xl);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    border-radius: var(--rounded-2xl);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.image-placeholder:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: var(--spacing-lg);
}

.image-placeholder p {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== WEBINARS SECTION ===== */
.webinars {
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    background: white;
}

.webinars-grid {
    display: flex;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-4xl);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: var(--spacing-lg);
    scroll-snap-type: x mandatory;
}

.webinars-grid::-webkit-scrollbar {
    height: 8px;
}

.webinars-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--rounded-full);
}

.webinars-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--rounded-full);
}

.webinars-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.webinars-footer {
    text-align: center;
    margin-top: var(--spacing-4xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.webinars-footer p {
    margin-bottom: 0;
    font-size: var(--text-lg);
    color: var(--text-light);
}

.webinar-card {
    background: white;
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(20, 184, 166, 0.1);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - var(--spacing-2xl));
    min-width: 300px;
    scroll-snap-align: start;
}

.webinar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.webinar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.webinar-content {
    padding: var(--spacing-2xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.webinar-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
}

.webinar-instructor {
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.webinar-description {
    color: var(--text-light);
    font-size: var(--text-base);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-4xl) + var(--spacing-xl));
    margin-top: var(--spacing-4xl);
}

.contact-form {
    background: white;
    padding: var(--spacing-3xl);
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

.info-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
}

.info-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
    display: block;
    transition: color var(--transition-base);
}

.info-card a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: var(--rounded-full);
    transition: all var(--transition-base);
    font-weight: bold;
    font-size: var(--text-lg);
    color: var(--primary);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ===== TRUSTED COMPANIES SECTION ===== */
.trusted-companies {
    padding: var(--spacing-4xl) 0;
    background: white;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-4xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
    margin-top: var(--spacing-4xl);
}

.company-logo {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--rounded-lg);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    transition: all var(--transition-base);
}

.company-logo:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
    overflow: hidden;
}

.testimonials .container {
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-lg);
    transition: transform 0.8s ease-in-out;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--rounded-full);
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--rounded-full);
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-3xl);
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-top: 4px solid var(--primary);
    flex: 0 0 calc(33.333% - var(--spacing-2xl));
    min-width: 300px;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.testimonial-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--success);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--rounded-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--rounded-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
}

.testimonial-info h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    border-left: 3px solid var(--secondary);
    padding-left: var(--spacing-lg);
}

.testimonial-rating {
    font-size: var(--text-lg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 800;
    color: white;
}

/* Ensure CTA heading text appears pure white, not gradient */
.cta-content .gradient-text {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.cta-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-3xl);
    opacity: 1;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
}

.cta-buttons .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

.cta-disclaimer {
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-top: var(--spacing-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-4xl) auto 0;
}

.faq-item {
    background: var(--light-gray);
    border-radius: var(--rounded-xl);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border-left: 4px solid var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-2xl) var(--spacing-xl);
    color: var(--text-light);
    font-size: var(--text-base);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2d4d 100%);
    color: white;
    padding: calc(var(--spacing-4xl) + var(--spacing-2xl)) 0 var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-4xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
}

.footer-logo h4 {
    font-size: var(--text-3xl);
    margin: 0;
    color: white;
    font-weight: 700;
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-xl);
    font-size: var(--text-2xl);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--rounded-full);
    color: white;
    transition: all var(--transition-base);
    font-size: var(--text-lg);
    font-weight: bold;
}

.social-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #1a91da 100%);
}

.social-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #006399 100%);
}

.social-facebook {
    background: linear-gradient(135deg, #3B5998 0%, #2d4373 100%);
}

.social-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
}

.social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    display: flex;
    margin-top: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-lg);
    font-size: var(--text-base);
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--rounded-lg);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-2xl);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

/* ===== MOBILE ANIMATIONS & ENHANCEMENTS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Removed scaleIn animation - no animations for domains carousel */

/* Mobile-specific animations */
@media (max-width: 768px) {
    .hero-title {
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-subtitle {
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .hero-buttons {
        animation: fadeInUp 1.2s ease-out 0.4s both;
    }
    
    .topic-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .deliver-card {
        animation: fadeInUp 0.8s ease-out both;
        animation-delay: calc(var(--deliver-index, 0) * 0.15s);
    }
    
    .deliver-card:nth-child(1) { --deliver-index: 0; }
    .deliver-card:nth-child(2) { --deliver-index: 1; }
    .deliver-card:nth-child(3) { --deliver-index: 2; }
    .deliver-card:nth-child(4) { --deliver-index: 3; }
    
    .testimonial-card {
        animation: fadeIn 0.8s ease-out both;
    }
    
    /* Add touch-friendly hover effects */
    .topic-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
    
    .deliver-card:active {
        transform: translateY(-2px);
        transition: transform 0.2s ease;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto var(--spacing-2xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .feature-row,
    .feature-row-right {
        grid-template-columns: 1fr;
    }

    .feature-row-right .feature-image {
        order: unset;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .deliver-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    /* Fix mobile scrolling */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        width: 100%;
        height: auto;
        position: relative;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: var(--spacing-3xl) 0;
        min-height: auto;
        overflow: visible;
        position: relative;
    }
    
    /* Make hero visual responsive on mobile */
    .hero-visual {
        height: 280px !important;
        min-height: 280px !important;
        transform: scale(0.65);
        margin: 0 auto;
    }
    
    /* Shrink hero center card */
    .hero-center {
        padding: var(--spacing-lg) var(--spacing-xl) !important;
        max-width: 160px !important;
    }
    
    .hero-center .center-icon {
        font-size: 2.5rem !important;
    }
    
    .hero-center h3 {
        font-size: 1.25rem !important;
    }
    
    /* Hide decorative rings on mobile */
    .deco-ring {
        display: none !important;
    }
    
    /* Make floating cards smaller */
    .floating-card {
        padding: var(--spacing-md) var(--spacing-sm) !important;
        max-width: 100px !important;
    }
    
    .floating-card .card-icon {
        font-size: 2rem !important;
        margin-bottom: var(--spacing-xs) !important;
    }
    
    .floating-card p {
        font-size: 0.75rem !important;
        line-height: 1.2;
    }
    
    /* Make hero single column on mobile */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
        color: var(--text-dark);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        margin-bottom: var(--spacing-xl);
        line-height: 1.6;
        color: var(--text-light);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-xl);
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: clamp(0.95rem, 3vw, 1.125rem);
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Domains Carousel Mobile - Clean Static Grid */
    .domains-carousel-wrapper {
        padding: var(--spacing-xl) 0;
        overflow: visible;
        width: 100%;
        position: relative;
        z-index: 10;
    }
    
    .domains-carousel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
        overflow: visible;
        /* Disable all animations and transforms */
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    .carousel-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        /* No animations on mobile */
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Hide carousel arrows on mobile */
    .carousel-arrow {
        display: none !important;
    }
    
    /* Ensure topics section is visible */
    .topics-section {
        position: relative;
        z-index: 10;
        padding: var(--spacing-2xl) 0 !important;
        overflow: visible;
    }

    /* Topic Cards Mobile - Stack Vertically with 3 cards max */
    .topics-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    /* Show only first 3 topic cards on mobile */
    #topics .topics-grid .topic-card:nth-child(n+4) {
        display: none !important;
    }
    
    .topic-card {
        padding: var(--spacing-xl);
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        flex: 0 0 auto;
        /* Disable all animations to prevent flickering */
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .topic-card img {
        height: 180px;
    }
    
    .topic-card h4 {
        font-size: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .topic-card p {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .topic-list {
        font-size: 0.9rem;
    }
    
    .topic-list li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    /* Deliver Section Mobile */
    .what-we-deliver {
        padding: var(--spacing-3xl) 0 !important;
        position: relative;
        z-index: 10;
        overflow: visible;
    }
    
    .deliver-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .deliver-card {
        padding: var(--spacing-xl);
    }
    
    .deliver-icon {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-md);
    }
    
    .deliver-card h3 {
        font-size: 1.25rem;
    }
    
    .deliver-card p {
        font-size: 0.95rem;
    }

    /* Webinars Mobile */
    .webinars {
        padding: var(--spacing-3xl) 0;
    }
    
    .webinars-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .webinar-card {
        padding: var(--spacing-lg);
    }
    
    .webinars-footer {
        padding: 0 var(--spacing-sm);
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: var(--spacing-3xl) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* CTA Section Mobile */
    .cta-content {
        padding: var(--spacing-xl);
    }
    
    .cta-trust-badges {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .trust-badge {
        font-size: 0.875rem;
        padding: var(--spacing-sm) var(--spacing-md);
        text-align: center;
    }
    
    /* Join Community Section Mobile */
    section[style*="padding: calc(var(--spacing-4xl)"] {
        padding: var(--spacing-3xl) 0 !important;
    }
    
    section[style*="padding: calc(var(--spacing-4xl)"] h2 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        line-height: 1.3 !important;
        padding: 0 var(--spacing-md);
    }
    
    section[style*="padding: calc(var(--spacing-4xl)"] p {
        font-size: clamp(0.95rem, 3vw, 1.125rem) !important;
        line-height: 1.6 !important;
        padding: 0 var(--spacing-md);
    }
    
    section[style*="padding: calc(var(--spacing-4xl)"] div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-sm);
    }
    
    section[style*="padding: calc(var(--spacing-4xl)"] div[style*="display: flex"] {
        flex-direction: column !important;
        gap: var(--spacing-md) !important;
        padding: 0 var(--spacing-sm);
    }
    
    section[style*="padding: calc(var(--spacing-4xl)"] .btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: var(--spacing-md) var(--spacing-lg) !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-logo-img {
        width: 250px !important;
    }
    
    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    /* Container Padding Mobile */
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    /* Stat Badge Mobile */
    .stat-badge {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent text selection on double tap */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .topic-card,
    .deliver-card,
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .footer-logo-img {
        width: 200px !important;
    }
}
