/* =============================================
   Home Page Styles
   InternFolio - GrowthSchool Inspired
   ============================================= */

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding: var(--space-12) 0 var(--space-16);
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-12);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Grid pattern overlay */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 26, 26, 0.15);
    color: var(--red-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.hero-badge i {
    font-size: 10px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    font-family: var(--font-heading);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero-tags {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tag i {
    color: var(--red-light);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-1);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Social Proof Strip */
.social-proof {
    margin-top: var(--space-8);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.learner-strip {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.learner-strip-count {
    flex-shrink: 0;
}

.learner-strip-count .count {
    font-size: var(--text-3xl);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1;
}

.learner-strip-count .label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-top: 2px;
}

.learner-avatars {
    display: flex;
    align-items: center;
}

.learner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
    color: white;
}

.learner-avatar:first-child {
    margin-left: 0;
}

.review-strip {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.review-strip .stars {
    color: #FBBF24;
    font-size: var(--text-lg);
}

.review-strip .rating {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--dark);
}

.review-strip .review-count {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* =============================================
   Popular Courses Section
   ============================================= */
.courses-section {
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.course-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.course-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.course-card:hover .course-card-image img {
    transform: scale(1.05);
}

.course-card-image .course-category-tag {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.course-card-image .course-card-price {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-3);
    background: white;
    padding: 4px 12px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--red);
    box-shadow: var(--shadow-md);
}

.course-card-body {
    padding: var(--space-5);
}

.course-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-100);
    font-size: var(--text-xs);
    color: var(--gray-500);
}

.course-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.course-card-meta i {
    color: var(--purple);
}

.course-card-footer {
    padding: 0 var(--space-5) var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card-footer .price-group {
    display: flex;
    flex-direction: column;
}

.course-card-footer .price-from {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

.course-card-footer .price-value {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--red);
}

/* =============================================
   Why InternFolio Section
   ============================================= */
.why-section {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.why-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin: 0 auto var(--space-5);
    background: var(--purple-pale);
    color: var(--purple);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--dark);
}

.why-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   Certificates Section
   ============================================= */
.certificates-section {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(106,13,173,0.2), transparent);
    pointer-events: none;
}

.certificates-section .section-header h2 {
    color: white;
}

.certificates-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.certificate-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin: 0 auto var(--space-5);
    background: var(--gradient-primary);
    color: white;
    animation: float 4s ease-in-out infinite;
}

.certificate-card:nth-child(2) .certificate-icon {
    animation-delay: -1.5s;
}

.certificate-card:nth-child(3) .certificate-icon {
    animation-delay: -3s;
}

.certificate-card h4 {
    color: white;
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.certificate-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials-section {
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.testimonial-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
}

.testimonial-info h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
    background: var(--gradient-primary);
    padding: var(--space-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-banner h2 {
    color: white;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   Responsive Adjustments
   ============================================= */
@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
        padding: var(--space-10) var(--space-8);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-visual {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-card {
        padding: var(--space-8) var(--space-6);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-tags {
        gap: var(--space-2);
    }
    
    .hero-tag {
        font-size: var(--text-xs);
        padding: 6px 12px;
    }
    
    .courses-grid,
    .why-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: var(--text-2xl);
    }
}

/* =============================================
   NEW REDESIGNED SECTIONS (v2)
   ============================================= */

/* Section Labels */
.home-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

/* ---- Hero V2 ---- */
.hero-v2 {
    background: #fff;
    padding: 80px 0 0;
    overflow: hidden;
}

.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-v2-badge {
    display: inline-block;
    background: rgba(255,26,26,0.08);
    border: 1px solid rgba(255,26,26,0.2);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-v2-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-v2-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-v2-tag {
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.hero-v2-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF1A1A, #CC0000);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,26,26,0.3);
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,26,26,0.4);
    color: #fff;
}

.hero-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1.5px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(106,13,173,0.04);
}

.hero-btn-outline-white {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero-v2-visual {
    position: relative;
}

.hero-v2-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-v2-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-v2-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
}

.hero-v2-float-card.top-left { top: -20px; left: -20px; }
.hero-v2-float-card.bottom-right { bottom: 20px; right: -20px; }

.float-card-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Hero Stats Strip */
.hero-stats-section {
    padding: 18px 0 0;
    background: #fff;
}

.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 24px 0;
    box-shadow: none;
    margin-bottom: 0;
}

.hss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.hss-item strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.hss-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hss-div {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ---- Why Cards V2 ---- */
.why-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card-v2 {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.why-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(106,13,173,0.1);
}

.why-card-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card-v2 h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.why-card-v2 p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

/* ---- Certificates Section ---- */
.cert-section-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-section-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cert-section-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

.cert-section-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-preview-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cert-preview-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(106,13,173,0.12);
}

.cert-preview-card.offset {
    margin-left: 30px;
}

.cert-preview-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.cert-preview-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* ---- Register CTA ---- */
.register-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple-dark) 100%);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.rcta-label {
    display: inline-block;
    background: rgba(255,26,26,0.2);
    border: 1px solid rgba(255,26,26,0.3);
    color: #FF6B6B;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.rcta-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.rcta-left h2 span {
    color: #FFB347;
}

.rcta-left p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.rcta-price-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 220px;
    text-align: center;
}

.rcta-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.rcta-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.rcta-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    line-height: 1.5;
}

.rcta-benefits {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rcta-benefits li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}

/* ---- Testimonials V2 ---- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card-v2 {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(106,13,173,0.1);
}

.tcard-stars {
    font-size: 1.1rem;
    color: #F59E0B;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card-v2 .testimonial-text {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--red));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.9rem;
    margin: 0 0 2px;
}

.testimonial-info p {
    color: var(--gray-400);
    font-size: 0.75rem;
    margin: 0;
}

/* ---- Image CTA Section ---- */
.img-cta-section { padding-bottom: 80px; }

.img-cta-box {
    background: linear-gradient(135deg, #1A1A2E 0%, #4A0080 100%);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 360px;
}

.img-cta-visual {
    overflow: hidden;
}

.img-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s;
}

.img-cta-box:hover .img-cta-visual img {
    transform: scale(1.04);
}

.img-cta-content {
    padding: 52px 52px 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.img-cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.img-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---- Responsive additions ---- */
@media (max-width: 1024px) {
    .hero-v2-inner { grid-template-columns: 1fr; }
    .hero-v2-visual { display: none; }
    .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .cert-section-layout { grid-template-columns: 1fr; }
    .register-cta-box { grid-template-columns: 1fr; }
    .img-cta-box { grid-template-columns: 1fr; }
    .img-cta-visual { height: 250px; }
    .hss-item { padding: 0 20px; }
}

@media (max-width: 768px) {
    .hero-stats-strip { flex-direction: column; gap: 12px; }
    .hss-div { width: 40px; height: 1px; }
    .hss-item { padding: 0; }
    .why-grid-v2 { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .register-cta-box { padding: 32px 24px; }
    .img-cta-content { padding: 32px 24px; }
    .cert-preview-card.offset { margin-left: 0; }
}

/* =============================================
   HERO V2 — FULL SCREEN IMAGE + DARK OVERLAY
   ============================================= */

.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image layer */
.hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-v2-bgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    animation: heroKenBurns 16s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    0%   { transform: scale(1.04) translate(0, 0); }
    100% { transform: scale(1.10) translate(-1%, -1%); }
}

/* Dark overlay — dark at bottom-left where text is, transparent toward right */
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(10, 4, 22, 0.88) 0%,
            rgba(30, 8, 60, 0.80) 38%,
            rgba(10, 4, 22, 0.60) 65%,
            rgba(5, 2, 10, 0.50) 100%
        );
}

/* Decorative glowing orbs */
.hero-v2-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-v2-orb1 {
    width: 500px;
    height: 500px;
    background: rgba(106, 13, 173, 0.30);
    top: -100px;
    left: -100px;
    animation: orbPulse 8s ease-in-out infinite;
}

.hero-v2-orb2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 26, 26, 0.22);
    bottom: 60px;
    right: 20%;
    animation: orbPulse 10s ease-in-out infinite reverse;
}

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

/* Container */
.hero-v2-container {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 780px;
}

/* Badge */
.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 9px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    text-transform: uppercase;
    animation: fadeSlideUp 0.7s ease both;
}

.hv2-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
    position: relative;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Main title */
.hero-v2-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hv2-gradient-text {
    background: linear-gradient(90deg, #FF1A1A 0%, #c026d3 45%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sub */
.hero-v2-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeSlideUp 0.8s 0.2s ease both;
}

/* CTAs */
.hero-v2-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hv2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF1A1A 0%, #cc0000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.45);
}

.hv2-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(255, 26, 26, 0.55);
    color: #fff;
}

.hv2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.hv2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: #fff;
}

/* Trust row */
.hero-v2-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 64px;
    animation: fadeSlideUp 0.8s 0.4s ease both;
}

.hv2-avatars {
    display: flex;
}

.hv2-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid rgba(255,255,255,0.5);
    margin-left: -10px;
    letter-spacing: 0;
}

.hv2-av:first-child { margin-left: 0; }

.hv2-trust-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.80);
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.hv2-trust-text strong {
    color: #fff;
}

.hv2-stars {
    color: #FBBF24;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Stats bar */
.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 20px 32px;
    animation: fadeSlideUp 0.8s 0.5s ease both;
    flex-wrap: wrap;
    row-gap: 16px;
}

.hv2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    text-align: center;
}

.hv2-stat:first-child { padding-left: 0; }
.hv2-stat:last-child { padding-right: 0; }

.hv2-stat strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hv2-stat span {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
    white-space: nowrap;
    font-weight: 500;
}

.hv2-stat-div {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-v2-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.50);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeSlideUp 1s 0.8s ease both;
}

.hv2-scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(6px); opacity: 1; }
}

/* Entrance animation */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-v2-container { max-width: 100%; padding-top: 110px; }
    .hero-v2-title { font-size: clamp(2.2rem, 7vw, 3.2rem); }
    .hero-v2-stats { padding: 16px 20px; }
    .hv2-stat { padding: 0 16px; }
    .hv2-stat strong { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .hero-v2-container {
        padding-top: 90px;
        padding-bottom: 80px;
        align-items: center;
        text-align: center;
    }
    .hero-v2-title { font-size: 2rem; }
    .hero-v2-sub { margin-left: auto; margin-right: auto; font-size: 0.97rem; }
    .hero-v2-badge { margin-left: auto; margin-right: auto; font-size: 0.72rem; }
    .hero-v2-ctas { justify-content: center; }
    .hero-v2-trust { justify-content: center; }
    .hero-v2-stats {
        justify-content: center;
        padding: 14px 16px;
        gap: 0;
    }
    .hv2-stat { padding: 0 12px; }
    .hv2-stat-div { height: 32px; }
    .hv2-btn-primary, .hv2-btn-ghost { width: 100%; justify-content: center; }
    .hero-v2-ctas { flex-direction: column; }
}



.hero-acepro {
    background: #F8F9FC;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(106,13,173,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106,13,173,0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

/* --- 2-column split grid --- */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    min-height: 86vh;
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

/* --- LEFT: text column --- */
.hero-split-text {
    display: flex;
    flex-direction: column;
}

/* Badge */
.hero-acepro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(106,13,173,0.15);
    color: #6A0DAD;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    width: fit-content;
    box-shadow: 0 2px 12px rgba(106,13,173,0.08);
}

.hab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    flex-shrink: 0;
}

/* Headline */
.hero-acepro-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.12;
    margin-bottom: 18px;
}

/* Sub */
.hero-acepro-sub {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 500px;
}

/* Check list */
.hero-acepro-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-acepro-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hl-check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #6A0DAD, #FF1A1A);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* CTA buttons */
.hero-acepro-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Trust row */
.hero-acepro-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
}

.trust-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A0DAD, #FF1A1A);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -9px;
}
.trust-av:first-child { margin-left: 0; }

.trust-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* --- RIGHT: image column --- */
.hero-split-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    display: block;
    box-shadow: 0 30px 70px rgba(106,13,173,0.15);
}

/* Floating info cards */
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    white-space: nowrap;
    z-index: 3;
    animation: heroFloat 3s ease-in-out infinite;
}

.hfc-top {
    top: 32px;
    left: -24px;
    animation-delay: 0s;
}

.hfc-bottom {
    bottom: 40px;
    right: -20px;
    animation-delay: -1.5s;
}

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

.hfc-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.hfc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hfc-info strong {
    font-size: 0.83rem;
    font-weight: 700;
    color: #111827;
    display: block;
}

.hfc-info span {
    font-size: 0.7rem;
    color: #6B7280;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-split {
        gap: 36px;
        padding-top: 60px;
    }
    .hero-main-img { height: 420px; }
    .hfc-top { left: -8px; }
    .hfc-bottom { right: -8px; }
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 48px 0 24px;
        gap: 32px;
    }
    .hero-split-img { order: -1; }
    .hero-main-img { height: 260px; object-position: center top; }
    .hero-acepro-badge { margin-left: auto; margin-right: auto; }
    .hero-acepro-sub { margin-left: auto; margin-right: auto; }
    .hero-acepro-highlights { align-items: center; }
    .hero-acepro-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-acepro-ctas a { text-align: center; }
    .hero-acepro-trust { justify-content: center; }
    .hfc-top { top: 10px; left: 10px; }
    .hfc-bottom { bottom: 10px; right: 10px; }
    .hero-float-card { padding: 9px 13px; }
    .hfc-info strong { font-size: 0.75rem; }
}

