* {
    box-sizing: border-box;
}
/* ========================================
   GLOBAL TYPOGRAPHY
======================================== */

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
}

.hero-title {
    font-family: 'Playfair Display', serif;
}


/* ========================================
   HERO SECTION (PURE WHITE BLEND)
======================================== */

.home-hero {
    padding: 120px 20px 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Soft floating radial light (very subtle) */
.home-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(250,204,21,0.05),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   HERO SUBTLE BACKGROUND MOTION
======================================== */

.home-hero {
    background: linear-gradient(
        120deg,
        #ffffff,
        #fefefe,
        #ffffff
    );
    background-size: 200% 200%;
    animation: bgShift 18s ease infinite;
}

.home-hero {
    padding: 80px 20px 90px; /* reduced top */
    margin-top: -60px; /* closer to header */
}

.home-hero {
    overflow-x: hidden;   /* prevents horizontal scroll */
}


/* =========================
   SOFT DEPTH LIGHT
========================= */

.home-hero::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(234,179,8,0.06),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}




/* ========================================
   HERO MEDIA (NO FRAME, NO SHADOW)
======================================== */
/* =========================
   HERO MEDIA CONTROL
========================= */

/* =========================
   HERO MEDIA PREMIUM DEPTH
========================= */

.hero-media {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px; /* creates breathing space */
}

/* Soft floating container */
.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.04),
        transparent 70%
    );
    border-radius: 28px;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    border-radius: 0; /* remove visible frame */
    box-shadow: none; /* remove frame shadow */

    transform: scale(.93); /* zoomed out slightly */
    border-radius: 20px;

    transition: transform .5s ease;
    z-index: 1;
}

/* Soft hover zoom */
.hero-media:hover img,
.hero-media:hover video {
    transform: scale(.96);
}

/* Mobile */
@media(max-width:992px){
    .hero-media img,
    .hero-media video {
        height: 360px;
        transform: scale(.95);
    }
}



/* Remove fade overlay completely */
.hero-media::after {
    display: none !important;
}


/* Popular ribbon */
.hero-ribbon {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(90deg,#eab308,#facc15);
    color: #111;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .8rem;
    box-shadow: 0 10px 30px rgba(234,179,8,.4);
}


/* ========================================
   CONTENT SIDE
======================================== */

.hero-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;

    background: linear-gradient(
        90deg,
        #111827,
        #111827,
        #eab308,
        #111827
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: titleShift 6s ease infinite;
}

.hero-title {
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 580px;
}


.hero-media img,
.hero-media video {
    max-width: 520px;
    margin-left: auto;
}


@keyframes titleShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}



/* ========================================
   RESPONSIVE
======================================== */
/* Layout */
.hero-inner {
    display: grid;
    grid-template-columns: 50% 50%; /* CONTENT 60 | MEDIA 40 */
    gap: 70px;
    align-items: center;
}

/* Ensure order stays correct */
.hero-content {
    order: 1; /* LEFT */
}

.hero-media {
    order: 2; /* RIGHT */
}

.hero-inner {
    max-width: 100%;
}


.hero-inner {
    align-items: center;
}

@media (max-width: 992px) {

    .hero-inner {
        grid-template-columns: 1fr;   /* stack */
        gap: 40px;
    }

    .hero-media,
    .hero-content {
        width: 100%;
    }

}


/* =========================
   HERO SUBTITLE PREMIUM
========================= */

.hero-subtitle {
    font-family: "Mathematical Bold Italic";
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;

    max-width: 620px;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}


/* =========================
   HERO BENEFIT PILLS
========================= */

/* =========================
   HERO BUTTON-STYLE BENEFITS
========================= */

.hero-benefits {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;   /* prevent wrapping on desktop */
}

@media (max-width: 768px) {

    .hero-benefits {
        flex-direction: column;
        width: 100%;
    }

    .benefit-box {
        width: 100%;
        text-align: center;
    }

}


/* =========================
   HERO BENEFIT BOXES (Anydesk Style)
========================= */

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 35px 0 45px;
}

/* Base */
.benefit-box {
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .3s ease;
    white-space: nowrap;
}

/* Solid primary */
.benefit-box.solid {
    background: #ef4444; /* red like screenshot */
    color: #fff;
}

/* Outline version */
.benefit-box.outline {
    border: 2px solid #ef4444;
    color: #ef4444;
    background: transparent;
}

/* Dark version */
.benefit-box.dark {
    background: #000;
    color: #fff;
}

/* Hover polish */
.benefit-box:hover {
    transform: translateY(-2px);
}


@media (min-width: 992px) {
    .hero-benefits {
        flex-wrap: nowrap;
    }
}



/* =========================
   STATS + CTA ROW 
========================= */
/* STATS + CTA ROW */
.hero-bottom-row {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 40px;
    margin-top: -60px;
}

/* Keep stats horizontal */
.hero-stats {
    display: flex;
    gap: 45px;
}

/* Keep button aligned to the right */
.hero-cta-wrap {
    margin-left: auto;
}

/* Prevent stat width shift during counter animation */
.stat-item strong {
    display: inline-block;
    min-width: 90px;   /* locks number width */
    text-align: left;
}

/* Lock each stat block width */
.stat-item {
    min-width: 110px;
}

.hero-cta-wrap {
    flex-shrink: 0;   /* ðŸ”¥ prevents button shrinking */
}


/* MOBILE FIX */
@media (max-width: 992px) {

    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
    }

    .hero-cta-wrap {
        width: 100%;
    }
}



/* =========================
   Stats
========================= */
/* Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stat-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
}

.stat-item span {
    display: block;
    margin-top: 4px;
    font-size: .85rem;
    color: #6b7280;
}

/* ========================================
   BUTTON
======================================== */

.home-btn-primary {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}

.home-btn-primary {
    width: 100%;
    text-align: center;
}

.home-btn-primary:hover {
    background: #eab308;
    color: #111;
}

.home-btn-primary {
    display: inline-block;
    margin-left: auto;
}


.hero-left {
    display: flex;
    flex-direction: column;
}

.home-btn-primary {
    align-self: flex-end;   /* THIS is what you need */
}

.home-btn-primary {
    white-space: nowrap; /* prevents text wrap */
}


.hero-cta-wrap {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.home-btn-primary {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.home-btn-primary:hover {
    box-shadow: 0 25px 50px rgba(234,179,8,0.25);
}


/* =========================
CONVERSION HEAT TRACKING (Behavior Signals)
========================= */

.home-btn-primary.heat-hover {
    box-shadow: 0 0 25px rgba(234,179,8,.4);
}

.home-btn-primary.heat-scroll {
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* =========================
   PREMIUM NAVBAR
========================= */

.navbar {
    padding: 20px 0;
    transition: all .3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}



.hero-cta-wrap {
    display: flex;
    align-items: center;
    margin-top: 35px;
}


/* ========================================
   SECTIONS
======================================== */

.home-section {
    padding: 90px 20px;
}

.alt-bg {
    background: #f7f9fc;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.home-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: .3s;
}

.home-card:hover {
    transform: translateY(-6px);
}


/* Categories */
.category-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-pill {
    padding: 10px 20px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: .85rem;
}


/* Authority + Testimonials */
.authority-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


/* CTA */
.home-cta {
    padding: 100px 20px;
    background: linear-gradient(120deg,#111827,#1f2937);
    color: #fff;
    text-align: center;
}


/* ========================================
   TRUST STRIP
======================================== */
/* =========================================
   TRUST SECTION — PREMIUM ANYDESK STYLE
========================================= */

.trust-strip {
    padding: 120px 20px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fafafa 100%
    );
    position: relative;
    overflow: hidden;
}

/* Soft background light */
.trust-strip::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(234,179,8,0.08),
        transparent 70%
    );
    pointer-events: none;
}

/* Container spacing */
.trust-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Header text */
.trust-header {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500;
    color: #111827;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

/* Highlight number */
.trust-number {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 800;
    background: linear-gradient(90deg,#f97316,#ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Slider wrapper */
.trust-slider {
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.trust-slider::before,
.trust-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.trust-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        #fafafa,
        transparent
    );
}

.trust-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        #fafafa,
        transparent
    );
}

/* Track */
.trust-track {
    display: flex;
    gap: 100px; /* was 80px */
    align-items: center;
    will-change: transform;
}

/* Logo wrapper */
.trust-logo {
    flex-shrink: 0;
}

/* Logo styling */
.trust-logo img {
    height: 38px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all .4s ease;
}

/* Elegant hover reveal */
.trust-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 30px rgba(249,115,22,0.15);
}


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

.trust-logo {
    animation: floatLogo 6s ease-in-out infinite;
}

.trust-logo:nth-child(2n) {
    animation-delay: 2s;
}

.trust-logo:nth-child(3n) {
    animation-delay: 4s;
}


@media (prefers-color-scheme: dark) {

    .trust-strip {
        background: #0f172a;
    }

    .trust-header {
        color: #f3f4f6;
    }

    .trust-logo img {
        filter: grayscale(100%) brightness(1.8);
        opacity: 0.6;
    }

}


/* Mobile refinement */
@media (max-width: 768px) {

    .trust-strip {
        padding: 80px 20px;
    }

    .trust-header {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .trust-track {
        gap: 40px;
    }

    .trust-logo img {
        height: 30px;
    }

}


@media (prefers-color-scheme: dark) {

    .trust-strip {
        background: #0f172a;
    }

    .trust-logo img {
        filter: brightness(1.4) grayscale(100%);
    }

    .trust-logo:hover img {
        filter: brightness(1.6) grayscale(0%);
    }

}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile */
@media(max-width:768px){
    .trust-track {
        gap: 40px;
    }

    .trust-track img {
        height: 30px;
    }
}

@media (max-width: 768px) {

    .trust-logo img {
        height: 38px;
    }

}


/* ========================================
   ENTERPRISE TRUST STRIP
======================================== */

.trust-strip {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* STAT */
.trust-stat {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.trust-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
}

/* SLIDER */
.trust-slider {
    position: relative;
    overflow: hidden;
}

/* Soft fade mask */
.trust-slider::before,
.trust-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.trust-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.trust-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Track */
.trust-track {
    display: flex;
    align-items: center;
    gap: 90px;
    will-change: transform;
    transform: translate3d(0,0,0);
}

/* Logo container */
.trust-logo {
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.trust-logo {
    flex: 0 0 auto;
}

/* Logo styling — more pronounced */
.trust-logo img {
    height: 52px; /* was 38px */
    width: auto;

    opacity: 0.85; /* was 0.5 */
    filter: grayscale(60%); /* was 100% */

    transition: all .35s ease;
}

/* Hover effect */
.trust-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-4px) scale(1.08);
}


/* Pause animation class */
.trust-track.paused {
    animation-play-state: paused;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .trust-track {
        animation: none !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trust-track {
        gap: 50px;
    }

    .trust-logo img {
        height: 32px;
    }
}



/* ========================================
   SCROLL REVEAL
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   CARD HOVER LIFT
======================================== */

.card,
.sp-card,
.recommend-card {
    transition: all .3s ease;
}

.card:hover,
.sp-card:hover,
.recommend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}


@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* =========================
   PAGE FADE TRANSITION
========================= */

body {
    opacity: 0;
    transition: opacity .5s ease;
}

body.page-loaded {
    opacity: 1;
}

/* =========================
   NAVBAR PREMIUM BLUR
========================= */

.site-header {
    transition: all .3s ease;
}

.site-header.scrolled {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


/* =========================
Premium Testimonial Carousel (Clean, Not Flashy)
========================= */
.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform .6s ease;
}

/* =========================
Homepage Performance Optimization (Lighthouse 95+)
========================= */

img {
    content-visibility: auto;
}

/* =========================
Add This CSS for Completion Flash
========================= */
.counter-complete {
    animation: counterFlash .6s ease;
}

@keyframes counterFlash {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); color: #eab308; }
    100% { transform: scale(1); }
}

/* ==================================================
   HERO STRUCTURE STABILIZER (TABLET + MOBILE FIX)
   ================================================== */

/* Prevent ANY horizontal overflow */
html, body {
    overflow-x: hidden;
}

/* Fix hero layout proportions */
.hero-inner {
    display: grid;
    grid-template-columns: 60% 40%; /* Content 60 | Media 40 */
    gap: 50px;
    align-items: center;
}

/* Make sure media never expands outside grid */
.hero-media {
    max-width: 100%;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

/* Clean benefit boxes */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.benefit-box {
    flex: 0 0 auto;
    max-width: 100%;
}

/* =========================
   BOTTOM ROW FIX
========================= */

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: -20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 100px;
}

/* Prevent button shrink */
.hero-cta-wrap {
    flex-shrink: 0;
}

.home-btn-primary {
    width: auto; /* override earlier full-width */
    white-space: nowrap;
}

/* ==================================================
   TABLET FIX (â‰¤ 1024px)
   ================================================== */

@media (max-width: 1024px) {

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-media {
        order: 2;
        max-width: 100%;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-stats {
        justify-content: flex-start;
    }

}

/* ==================================================
   MOBILE FIX (â‰¤ 768px)
   ================================================== */

@media (max-width: 768px) {

    .home-hero {
        padding: 70px 16px 70px;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.4rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .benefit-box {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
    }

    .home-btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-media img,
    .hero-media video {
        max-height: 340px;
    }

}


/* =========================================
   WHAT'S NEW SECTION
========================================= */

/* ===============================
   CINEMATIC MOCKUP SYSTEM
================================= */

.whats-new-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7f3 40%,
        #ffffff 100%
    );
}

/* Diagonal Accent */
.whats-new-section::after {
    content: "";
    position: absolute;
    top: -200px;
    right: -300px;
    width: 900px;
    height: 900px;
    background: linear-gradient(
        135deg,
        rgba(239,68,68,0.15),
        transparent 60%
    );
    transform: rotate(25deg);
    pointer-events: none;
}

/* Depth Blur Light */
.whats-new-mockup::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: radial-gradient(
        circle at center,
        rgba(239,68,68,0.25),
        transparent 70%
    );
    filter: blur(90px);
    z-index: 1;
}

/* Image */
.whats-new-mockup img {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 3;
    transform: translateY(0);
    transition: transform .6s ease;
}

/* Glass Reflection Overlay */
.mockup-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.15) 10%,
        rgba(255,255,255,0.4) 40%,
        rgba(255,255,255,0.1) 70%
    );
    transform: translateX(-120%);
    z-index: 4;
    pointer-events: none;
    animation: glassSweep 6s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes glassSweep {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}


.whats-new-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whats-new-badge {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: #f97316;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 20px;
}

.whats-new-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.whats-new-title span {
    background: linear-gradient(90deg,#f97316,#ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whats-new-text {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 30px;
    max-width: 520px;
}

.whats-new-btn {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

.whats-new-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(239,68,68,.3);
}

.whats-new-mockup {
    position: relative;
}

.whats-new-mockup img {
    -webkit-mask-image: radial-gradient(
        circle at center,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0) 100%
    );
    mask-image: radial-gradient(
        circle at center,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0) 100%
    );
}



/* Mobile */
@media(max-width:992px){
    .whats-new-inner {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   PREMIUM COURSE CARD
================================= */

.course-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* IMAGE */
.course-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.course-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform .6s ease;
}

/* Image Zoom */
.course-card:hover .course-image img {
    transform: scale(1.08);
}

/* Glass Highlight */
.glass-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1) 20%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.1) 80%
    );
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.course-card:hover .glass-hover {
    transform: translateX(120%);
}

/* BADGES */
.badge {
    position: absolute;
    top: 10px;
    padding: 6px 12px;
    font-size: .7rem;
    font-weight: 600;
    border-radius: 999px;
    z-index: 3;
}

.best-seller {
    left: 10px;
    background: #111827;
    color: #fff;
}

.discount-pill {
    right: 10px;
    background: #ef4444;
    color: #fff;
}

/* BODY */
.course-body {
    margin-top: 16px;
}

.course-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #6b7280;
    margin-bottom: 10px;
}

/* BOTTOM */
.course-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.old-price {
    font-size: .75rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

/* BUTTON */
.add-cart-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .8rem;
    cursor: pointer;
    transition: all .2s ease;
}

.add-cart-btn:hover {
    background: #000;
}

/* Added Animation */
.add-cart-btn.added {
    background: #16a34a;
    transform: scale(1.05);
}
