/* =============================================
   HERO SECTION
   ============================================= */

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

@keyframes pulse-ring {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(210, 133, 1, 0.5); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 12px rgba(210, 133, 1, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(210, 133, 1, 0); }
}

.hero-section {
    position: relative;
    padding: 60px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

/* Background decorative elements */
.hero-bg-accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(43, 10, 125, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
}

/* Content layout */
.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Text side */
.hero-content {
    padding-right: 20px;
    max-width: 640px;
}

.top-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(43, 10, 125, 0.05);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 3px solid var(--primary);
}

.headline {
    font-weight: 800;
    line-height: 1.3;
    font-size: clamp(1.2rem, 2.8vw, 1.75rem);
    margin-bottom: 24px;
    color: var(--primary);
    max-width: 32ch;
}

.headline b {
    color: var(--accent);
    font-weight: 900;
}

.subheadline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-certified-wrap {
    display: flex;
    align-items: center;
    gap: 12px 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-certified-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    flex-shrink: 0;
}

.hero-certified-strip {
    border: 1px dashed rgba(43, 10, 125, 0.35);
    border-radius: 8px;
}

.hero-certified-strip img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.hero-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #2e2e2e;
    font-weight: 500;
}

.hero-feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* CTA block */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-cta-btn {
    background: #d68d05;
    border: 1px solid #ad7000;
    box-shadow: 0 4px 0 #7d5000;
}

.hero-cta-btn:hover {
    background: #bd7b04;
    box-shadow: 0 4px 0 #6a4300;
    transform: translateY(-1px);
}

.cta-subtext {
    font-size: 0.8rem;
    color: #5b5b5b;
}

/* Social proof numbers */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.proof-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
}

.proof-divider {
    width: 1px;
    height: 35px;
    background: #eee;
}

/* Laptop/video side */
.floating-laptop {
    animation: float 4s ease-in-out infinite;
}

.laptop-frame {
    position: relative;
    max-width: 100%;
    padding: 14px;
    background: #333;
    border-radius: 18px 18px 5px 5px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid #444;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 12px;
    background: linear-gradient(to bottom, #222, #111);
    border-radius: 0 0 10px 10px;
}

.video-thumbnail-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #222;
    background: #000;
    transition: transform 0.4s ease;
}

.video-thumbnail-container:hover { transform: scale(1.01); }

.video-thumbnail-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 10, 125, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail-container:hover .play-overlay {
    background: rgba(43, 10, 125, 0.35);
}

.play-button-ui {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s;
    animation: pulse-ring 2s infinite;
}

.video-thumbnail-container:hover .play-button-ui {
    transform: scale(1.12);
    color: var(--primary);
}

/* Sticky mobile CTA */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.sticky-cta-mobile.show {
    transform: translateY(0);
}

.sticky-cta-mobile .cta-stack {
    display: flex;
    width: 100%;
}

.sticky-cta-mobile .cta-single {
    width: 100%;
    justify-content: center;
}

.sticky-cta-mobile .cta-dual {
    display: none;
    gap: 8px;
}

.sticky-cta-mobile .cta-dual .cta-chip {
    flex: 1;
    border-radius: 6px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
}

.sticky-cta-mobile .cta-dual .cta-chip.enroll {
    background: #17a931;
}

.sticky-cta-mobile .cta-dual .cta-chip.callback {
    background: #ef1f25;
}

.sticky-cta-mobile.state-dual .cta-single {
    display: none;
}

.sticky-cta-mobile.state-dual .cta-dual {
    display: flex;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section { padding: 40px 0 100px; min-height: auto; }
    .hero-row { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { padding-right: 0; order: 1; }
    .hero-visual  { order: 2; }
    .sticky-cta-mobile { display: block; }
}

@media (max-width: 576px) {
    .social-proof { gap: 14px; }
    .video-thumbnail-container img { height: 200px; }
    .hero-certified-strip img { height: 20px; }
    .sticky-cta-mobile {
        padding: 8px 10px;
    }
}

.quick-contact-strip {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2b0a7d 0%, #34108f 100%);
    color: #fff;
}

.quick-contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.quick-call-btn,
.quick-whatsapp-btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-call-btn {
    border: 2px solid #fff;
    color: #fff;
}

.quick-whatsapp-btn {
    border: 2px solid #25D366;
    color: #25D366;
}

.quick-contact-note {
    font-size: 14px;
}
