        :root {
            --primary-teal: #31adad;
            --primary-pink: #ff2d8d;
            --gradient-bg: linear-gradient(135deg, #31adad, #ff2d8d);
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Hero Section */
        .hero-section {
            padding-top: 2rem;
            background: #f8f9fa;
        }

        .hero-wrapper {
            display: flex;
            gap: 1.5rem;
        }

        .hero-main {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 510px;
        }

        .hero-slide {
            height: 510px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 2rem;
            max-width: 700px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .hero-btn {
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 45, 141, 0.4);
            color: white;
        }

        .hero-cta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            width: 400px;
        }

        .hero-cta-card {
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            height: 242px;
        }

        .hero-cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 45, 141, 0.3);
        }

        .hero-cta-card.teal {
            background: linear-gradient(135deg, #31adad, #4DD4D0);
        }

        .hero-cta-card.pink {
            background: linear-gradient(135deg, #ff2d8d, #ff5db1);
        }

        .hero-cta-card.purple {
            background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
        }

        .hero-cta-card.orange {
            background: linear-gradient(135deg, #ff2d8d 0%, #31adad 100%);
        }

        .hero-cta-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 2.5rem;
        }

        .hero-cta-title {
            font-size: 1.4rem;
            font-weight: 700;
        }

        /* Daily News Section */
        .daily-news {
            /* padding: 2rem 0; */
            padding-top: 2rem;
            background: white;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .news-header-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .news-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .news-header-text h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.2rem;
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .breaking-badge {
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .news-container {
            background: #f8f9fa;
            border-radius: 20px;
            overflow: hidden;
        }

        .featured-story-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 10;
        }

        .news-image-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            padding: 2.5rem;
            background: white;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .news-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .news-excerpt {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .news-quote {
            background: linear-gradient(135deg, rgba(49, 173, 173, 0.08), rgba(255, 45, 141, 0.08));
            border-left: 4px solid var(--primary-teal);
            padding: 1.5rem;
            margin-bottom: 2rem;
            font-style: italic;
            color: var(--text-dark);
            border-radius: 0 8px 8px 0;
        }

        .news-quote p {
            margin-bottom: 0.8rem;
        }

        .news-quote-author {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-style: normal;
        }

        .news-tags {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .news-tag {
            background: #f0f0f0;
            color: var(--text-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .read-more-btn {
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 1rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            width: 100%;
            justify-content: center;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 45, 141, 0.4);
            color: white;
        }

        /* Latest Articles */
        .latest-articles {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.32rem;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .article-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .article-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .article-card:hover .article-image {
            transform: scale(1.1);
        }

        .article-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .view-all-btn {
            display: inline-block;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 45, 141, 0.4);
            color: white;
        }

        /* About Section */
        /* About Section - Screenshot Style */
        .about-section.about-v3 {
            padding: 2rem 0;
            background: linear-gradient(135deg, rgba(49, 173, 173, 0.2), rgba(255, 45, 141, 0.2));
            border-radius: 50px;
        }

        .about-left-v3 {
            max-width: 620px;
        }

        .about-title-v3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .about-text-v3 {
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--text-gray);
            margin-bottom: 1.2rem;
        }

        /* Stats row */
        .about-stats-v3 {
            display: flex;
            gap: 3.2rem;
            margin: 2.4rem 0 2.2rem;
            flex-wrap: wrap;
        }

        .stat-item-v3 {
            min-width: 140px;
        }

        .stat-icon-v3 {
            width: 58px;
            height: 58px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.35rem;
            background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 0.8rem;
        }

        .stat-number-v3 {
            font-size: 1.55rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.1rem;
        }

        .stat-label-v3 {
            color: var(--text-gray);
            font-size: 0.92rem;
        }

        /* Button like screenshot */
        .about-btn-v3 {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.95rem 1.6rem;
            border-radius: 14px;
            font-weight: 800;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
            box-shadow: 0 12px 30px rgba(255, 45, 141, 0.18);
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .about-btn-v3:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(255, 45, 141, 0.28);
            color: #fff;
        }

        /* Right image block */
        .about-media-v3 {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            height: 520px;
            /* keeps screenshot-like height */
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
        }

        .about-image-v3 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Subtle dark fade at bottom (so mission card pops like screenshot) */
        .about-media-v3::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 55%);
            pointer-events: none;
        }

        /* Mission overlay card */
        .about-mission-v3 {
            position: absolute;
            left: 42px;
            right: 42px;
            bottom: 34px;
            background: rgba(255, 255, 255, 0.96);
            border-radius: 14px;
            padding: 22px 26px;
            z-index: 2;
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
        }

        .about-mission-v3 h4 {
            font-size: 1.25rem;
            font-weight: 900;
            margin-bottom: 0.55rem;
            color: var(--text-dark);
        }

        .about-mission-v3 p {
            margin: 0;
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-title-v3 {
                font-size: 2.4rem;
            }

            .about-media-v3 {
                height: 440px;
            }

            .about-mission-v3 {
                left: 18px;
                right: 18px;
                bottom: 18px;
            }

            .about-stats-v3 {
                gap: 2rem;
            }
        }


        /* Categories */
        .categories-section {
            padding: 2rem 0;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
        }

        .category-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: white;
        }

        .category-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .category-count {
            color: var(--text-gray);
            font-size: 1.05rem;
        }

        /* Tips Section - Screenshot Style */
        .tips-section.tips-v2 {
            padding: 2rem 0;
            background: #fff;
        }

        .tips-grid-v2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2.2rem;
        }

        /* Card sizing (matches reels screenshot) */
        .tip-card-v2 {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 460px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
            display: block;
            text-decoration: none;
            color: #fff;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .tip-card-v2:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
        }

        .tip-card-v2 .tip-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Dark overlay like screenshot */
        .tip-card-v2::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.20) 55%, rgba(0, 0, 0, 0.05));
            pointer-events: none;
        }

        /* Platform pill (TOP-LEFT) */
        .platform-pill {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1.05rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 800;
            line-height: 1;
            color: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Platform colors */
        .platform-pill.ig {
            background: linear-gradient(135deg, #C13584, #FD1D1D, #FCAF45);
        }

        .platform-pill.tiktok {
            background: #111827;
        }

        .platform-pill.yt {
            background: #FF0000;
        }

        .platform-pill.fb {
            background: #1877F2;
        }

        /* Play button centered */
        .play-btn {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.28);
            backdrop-filter: blur(2px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .play-btn i {
            color: #fff;
            font-size: 1.1rem;
            transform: translateX(2px);
            opacity: 0.95;
        }

        /* Bottom text */
        .tip-bottom {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 16px;
            z-index: 2;
        }

        .tip-bottom h4 {
            margin: 0 0 4px;
            font-weight: 900;
            font-size: 1.05rem;
            letter-spacing: 0.2px;
        }

        .tip-bottom p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.85;
        }

        /* Pro tip line */
        .pro-tip {
            text-align: center;
            margin: 2rem 0 1.5rem;
            color: var(--text-gray);
            font-size: 1rem;
        }

        /* Social icons row */
        .tips-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-circle {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
            transition: transform .2s ease;
        }

        .social-circle:hover {
            transform: translateY(-3px);
        }

        .social-circle.ig {
            background: linear-gradient(135deg, #C13584, #FD1D1D, #FCAF45);
        }

        .social-circle.tiktok {
            background: #111827;
        }

        .social-circle.yt {
            background: #FF0000;
        }

        .social-circle.fb {
            background: #1877F2;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .tips-grid-v2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .tips-grid-v2 {
                grid-template-columns: 1fr;
            }

            .tip-card-v2 {
                height: 240px;
            }
        }

        /* Swiper spacing for slider */
        .tipsSwiper {
            padding: 0.5rem 0 2.8rem;
            /* bottom space for pagination */
        }

        /* Ensure slides don’t shrink */
        .tipsSwiper .swiper-slide {
            height: auto;
        }

        /* Nav buttons (match clean UI) */
        .tips-prev,
        .tips-next {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
        }

        .tips-prev:after,
        .tips-next:after {
            font-size: 14px;
            font-weight: 900;
            color: var(--text-dark);
        }

        /* Position arrows slightly outside on desktop */
        .tips-prev {
            left: -10px;
        }

        .tips-next {
            right: -10px;
        }

        /* Pagination dots */
        .tips-pagination {
            bottom: 0 !important;
        }

        .tips-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            opacity: 0.25;
        }

        .tips-pagination .swiper-pagination-bullet-active {
            opacity: 1;
        }

        /* Pinterest pill + icon color */
        .platform-pill.pin {
            background: #E60023;
        }

        .social-circle.pin {
            background: #E60023;
        }

        /* Hide arrows on small screens (optional, looks cleaner) */
        @media (max-width: 768px) {

            .tips-prev,
            .tips-next {
                display: none;
            }
        }


        /* Who Section */
        .who-section {
            padding: 2rem 0;
        }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .who-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .who-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
        }

        .who-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .who-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .who-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* WHO SECTION (Screenshot Style) */
        .who-grid-v2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Base Card */
        .who-card-v2 {
            --accent: var(--primary-teal);
            --accent2: #4DD4D0;
            --cornerA: rgba(49, 173, 173, 0.18);
            --cornerB: rgba(77, 212, 208, 0.16);

            position: relative;
            background: #fff;
            border-radius: 22px;
            padding: 2rem 1rem 1.8rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            text-align: left;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        /* Card Themes */
        .who-card-v2.pink {
            --accent: var(--primary-pink);
            --accent2: #ff5db1;
            --cornerA: rgba(255, 45, 141, 0.18);
            --cornerB: rgba(255, 93, 177, 0.16);
        }

        /* Corner soft shape (top-right) */
        /* .who-card-v2::after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            top: -150px;
            right: -150px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--cornerB) 0 35%, var(--cornerA) 55%, transparent 62%);
            pointer-events: none;
            z-index: 0;
        } */

        .who-card-v2::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 22px;
            padding: 2px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            opacity: 0;
            transition: opacity .25s ease;
            pointer-events: none;
            z-index: 1;

            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* Base Card */
        .who-card-v2 {
            --accent: var(--primary-teal);
            --accent2: #4DD4D0;
            --cornerA: rgba(49, 173, 173, 0.18);
            --cornerB: rgba(77, 212, 208, 0.16);

            position: relative;
            background: #fff;
            border-radius: 22px;
            padding: 2rem 1rem 1.8rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            text-align: left;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        /* Corner Gradient (Top Right) */
        .who-card-v2::after {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            top: -150px;
            right: -150px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--cornerB) 0 35%, var(--cornerA) 55%, transparent 62%);
            pointer-events: none;
            z-index: 0;
            transition: width 0.3s ease, height 0.3s ease;
            /* Smooth transition for size */
        }

        .who-card-v2:hover::after {
            width: 160px;
            height: 160px;
        }

        /* Hover effect - Box shadow and outline */
        .who-card-v2:hover {
            transform: translateY(-8px);
            border-color: rgba(49, 173, 173, 0.25);
            box-shadow:
                0 18px 45px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(49, 173, 173, 0.12),
                0 14px 35px rgba(49, 173, 173, 0.18);
        }


        /* Ensure content above effects */
        .who-card-v2>* {
            position: relative;
            z-index: 2;
        }

        /* Icon box */
        .who-icon-box {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
            margin-bottom: 1.35rem;
        }

        .who-icon-box i {
            color: #fff;
            font-size: 1.55rem;
            transition: transform .28s ease;
            /* for 20deg rotation */
        }

        /* Title + Desc */
        .who-title-v2 {
            font-size: 1.45rem;
            font-weight: 900;
            margin: 0 0 .75rem;
            color: var(--text-dark);
            letter-spacing: -0.2px;
        }

        .who-desc-v2 {
            margin: 0 0 1.35rem;
            color: var(--text-gray);
            line-height: 1.75;
            font-size: 1rem;
        }

        /* Bullet list */
        .who-list-v2 {
            list-style: none;
            padding: 0;
            margin: 0 0 1.55rem;
            display: flex;
            flex-direction: column;
            gap: .85rem;
        }

        .who-list-v2 li {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            color: var(--text-gray);
            font-size: .95rem;
        }

        .check-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 18px;
            margin-top: 2px;
        }

        .check-dot i {
            color: var(--accent);
            font-size: .65rem;
            transform: translateY(-1px);
        }

        /* Bottom link */
        .who-link-v2 {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--accent);
            transition: transform .2s ease, color .2s ease;
        }

        .who-link-v2:hover {
            transform: translateX(2px);
        }

        /* HOVER (matches screenshot behavior) */
        .who-card-v2:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 0, 0, 0.04);
            box-shadow:
                0 18px 45px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(49, 173, 173, 0.10),
                0 14px 35px rgba(49, 173, 173, 0.16);
        }

        .who-card-v2.pink:hover {
            box-shadow:
                0 18px 45px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 45, 141, 0.10),
                0 14px 35px rgba(255, 45, 141, 0.16);
        }

        .who-card-v2:hover::before {
            opacity: 1;
        }

        /* ✅ Icon rotate only 20deg */
        .who-card-v2:hover .who-icon-box i {
            transform: rotate(20deg);
        }

        /* Optional: title gradient on hover (like your hovered Gaming card) */
        .who-card-v2:hover .who-title-v2 {
            background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .who-grid-v2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }


        .who-grid-v2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .who-card-v2 {
            --accent: var(--primary-teal);
            --accent2: #4DD4D0;

            background: #fff;
            border-radius: 22px;
            padding: 2.2rem 2rem 1.8rem;
            border: 1px solid rgba(16, 24, 40, 0.06);
            box-shadow: 0 10px 25px rgba(16, 24, 40, 0.08);
            position: relative;
            overflow: hidden;

            /* ✅ bottom link fixed */
            display: flex;
            flex-direction: column;
            min-height: 430px;

            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            text-align: left;
        }

        .who-card-v2.pink {
            --accent: var(--primary-pink);
            --accent2: #ff5db1;
        }

        /* ✅ crisp corner shape (no blur) */
        .who-card-v2::after {
            content: "";
            position: absolute;
            top: -8px;
            right: -8px;
            width: 150px;
            height: 150px;
            border-bottom-left-radius: 999px;
            background: linear-gradient(135deg,
                    rgba(49, 173, 173, 0.22),
                    rgba(77, 212, 208, 0.18));
            pointer-events: none;
            z-index: 0;
        }

        .who-card-v2.pink::after {
            background: linear-gradient(135deg,
                    rgba(255, 45, 141, 0.22),
                    rgba(255, 93, 177, 0.18));
        }

        .who-card-v2>* {
            position: relative;
            z-index: 1;
        }

        /* icon box */
        .who-icon-box {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 22px rgba(16, 24, 40, 0.14);
            margin-bottom: 1.35rem;

            /* ✅ rotate whole box (not icon only) */
            transition: transform .28s ease;
        }

        .who-icon-box i {
            color: #fff;
            font-size: 1.55rem;
        }

        .who-title-v2 {
            font-size: 1.40rem;
            font-weight: 900;
            margin: 0 0 .75rem;
            color: var(--text-dark);
        }

        .who-desc-v2 {
            margin: 0 0 1.25rem;
            color: var(--text-gray);
            line-height: 1.75;
            font-size: 1rem;
        }

        /* checklist same as screenshot */
        .who-list-v2 {
            list-style: none;
            padding: 0;
            margin: 0 0 1.4rem;
            display: flex;
            flex-direction: column;
            gap: .85rem;
        }

        .who-list-v2 li {
            display: flex;
            align-items: center;
            gap: .75rem;
            color: var(--text-gray);
            font-size: .95rem;
        }

        .check-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 20px;
        }

        .check-dot i {
            color: var(--accent);
            font-size: 10px;
            font-weight: 900;
            line-height: 1;
        }

        /* ✅ bottom link fixed position */
        .who-link-v2 {
            margin-top: auto;
            /* pushes link to bottom */
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--accent);
            padding-top: .5rem;
            transition: transform .2s ease;
        }

        .who-link-v2:hover {
            transform: translateX(2px);
        }

        /* ✅ Hover style like screenshot */
        .who-card-v2:hover {
            transform: translateY(-8px);
            border-color: rgba(49, 173, 173, 0.95);
            /* teal outline like SS hover */
            box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
        }

        /* ✅ rotate box only 20deg */
        .who-card-v2:hover .who-icon-box {
            transform: rotate(6deg);
        }

        /* responsive */
        @media (max-width:1200px) {
            .who-grid-v2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:768px) {
            .who-card-v2 {
                min-height: auto;
            }
        }

        .who-list-v2 {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: .85rem;
            min-height: 118px;
        }

        .who-list-v2 li {
            line-height: 1.5;
            min-height: 22px;
            margin-top: auto;

        }

        .who-link-v2 {
            margin-top: auto;
            padding-top: 1.2rem;
        }


        .cta-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .cta-card {
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            color: white;
        }

        .cta-card.pink {
            background: linear-gradient(135deg, #ff2d8d, #ff5db1);
        }

        .cta-card.teal {
            background: linear-gradient(135deg, #31adad, #4DD4D0);
        }

        .cta-card.purple {
            background: linear-gradient(135deg, #8B7FFF, #A78BFA);
        }

        .cta-card.orange {
            background: linear-gradient(135deg, #FF9447, #FFB47A);
        }

        .cta-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .cta-button {
            background: white;
            color: var(--text-dark);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* Reviews Section */
        .reviews-section {
            padding: 2rem 0;
            background: linear-gradient(135deg, rgba(49, 173, 173, 0.2), rgba(255, 45, 141, 0.2));
            border-radius: 50px;
            /* margin-bottom: -40px;
            padding-bottom: 4rem; */
            z-index: 10;
            /* Set higher z-index to bring the reviews section on top */
            position: relative;
            /* Allow positioning */
            /* margin-bottom: -40px; */
            /* Adjust margin to overlap */

        }


        .office-setup {
            padding: 2rem 0;
            /* padding-top: 3rem; */
        }

        .setup-container {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 2.5rem;
            align-items: start;
            /* ✅ prevents right card stretching */
        }

        .setup-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        /* ---------- Article cards ---------- */
        .article-card-v2 {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(16, 24, 40, 0.10);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        /* .article-card-v2:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(16, 24, 40, 0.16);
        } */

        .article-image-wrap-v2 {
            position: relative;
            height: 190px;
            overflow: hidden;
        }

        .article-image-v2 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        /* .article-card-v2:hover .article-image-v2 {
            transform: scale(1.07);
        } */

        /* badge like SS */
        .article-badge-v2 {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: .35rem .9rem;
            border-radius: 999px;
            font-size: .75rem;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 10px 18px rgba(16, 24, 40, 0.12);
        }

        .badge-setup {
            background: linear-gradient(90deg, #31adad, #ff2d8d);
        }

        /* body: keep Read Article fixed at bottom */
        .article-body-v2 {
            padding: 1.55rem 1.55rem 1.35rem;
            display: flex;
            flex-direction: column;
            min-height: 230px;
        }

        .article-title-v2 {
            font-size: 1.15rem;
            font-weight: 900;
            line-height: 1.35;
            margin: 0 0 .65rem;
            color: #0f172a;
        }

        .article-excerpt-v2 {
            margin: 0;
            color: #64748b;
            line-height: 1.65;
            font-size: .95rem;
        }

        .article-divider-v2 {
            height: 1px;
            background: rgba(15, 23, 42, 0.08);
            margin: 1.15rem 0 .95rem;
        }

        .article-meta-v2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            color: #6b7280;
            font-size: .85rem;
        }

        .article-meta-v2 span {
            display: flex;
            align-items: center;
            gap: .45rem;
        }

        /* Read Article pink like SS */
        .article-read-v2 {
            margin-top: auto;
            /* ✅ always bottom */
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary-pink);
            padding-top: .95rem;
        }

        .article-read-v2:hover {
            transform: translateX(2px);
        }

        /* ---------- Right Sticky Column ---------- */
        .setup-side {
            position: sticky;
            top: 110px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* PDF Gradient card like SS */
        .pdf-box {
            background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
            border-radius: 20px;
            padding: 2.2rem 2rem;
            color: #fff;
            text-align: center;
            box-shadow: 0 18px 45px rgba(16, 24, 40, 0.16);
        }

        /* top icon pill */
        .pdf-icon-pill {
            width: 54px;
            height: 54px;
            margin: 0 auto 1.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.22);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pdf-icon-pill i {
            font-size: 1.35rem;
            color: #fff;
        }

        .pdf-title {
            font-size: 1.65rem;
            font-weight: 900;
            line-height: 1.25;
            margin: 0 0 1rem;
        }

        .pdf-text {
            margin: 0 0 1.35rem;
            opacity: .92;
            line-height: 1.6;
            font-size: .95rem;
        }

        /* input like SS (semi transparent) */
        .email-input {
            width: 100%;
            padding: 1rem 1.1rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            outline: none;
            margin-bottom: 1rem;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.85);
        }

        /* button white with teal text */
        .subscribe-button {
            width: 100%;
            background: #fff;
            color: var(--primary-teal);
            padding: 1rem 1.1rem;
            border-radius: 14px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .6rem;
            box-shadow: 0 14px 30px rgba(16, 24, 40, 0.20);
            transition: transform .2s ease;
        }

        .subscribe-button:hover {
            transform: translateY(-2px);
        }

        .pdf-note {
            margin: 1rem 0 0;
            font-size: .85rem;
            opacity: .85;
        }

        /* Help card below (white) */
        .help-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem 1.6rem;
            box-shadow: 0 10px 25px rgba(16, 24, 40, 0.10);
            border: 1px solid rgba(15, 23, 42, 0.06);
        }

        .help-title {
            margin: 0 0 .6rem;
            font-size: 1.1rem;
            font-weight: 900;
            color: #0f172a;
        }

        .help-text {
            margin: 0 0 1rem;
            color: #64748b;
            line-height: 1.6;
        }

        .help-link {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary-teal);
        }

        .help-link:hover {
            transform: translateX(2px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .setup-container {
                grid-template-columns: 1fr;
            }

            .setup-side {
                position: relative;
                top: auto;
            }
        }

        @media (max-width: 768px) {
            .setup-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-v2 {
            background: linear-gradient(135deg, #090a0d 0%, #0a1428 100%);
            color: #e5e7eb;
            padding: 3.5rem 0 1.3rem;
        }

        .footer-top-v2 {
            padding-bottom: 1.2rem;
        }

        .footer-brand-head-v2 {
            display: flex;
            align-items: center;
            gap: .9rem;
            margin-bottom: 1rem;
        }

        .footer-badge-v2 {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #fff;
            background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
        }

        .footer-logo-v2 {
            margin: 0;
            font-size: 1.55rem;
            font-weight: 900;
            color: #fff;
        }

        .footer-text-v2 {
            margin: 0 0 1.4rem;
            color: rgba(226, 232, 240, 0.75);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-social-v2 {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
        }

        .footer-social-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
        }

        .footer-social-btn:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.10);
            border-color: rgba(255, 255, 255, 0.14);
        }

        .footer-title-v2 {
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            margin: .4rem 0 1.1rem;
        }

        .footer-links-v2 {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-v2 li {
            margin-bottom: .9rem;
        }

        .footer-links-v2 a {
            color: rgba(226, 232, 240, 0.70);
            text-decoration: none;
            font-weight: 500;
            transition: color .2s ease, transform .2s ease;
            display: inline-block;
        }

        .footer-links-v2 a:hover {
            color: #fff;
            transform: translateX(3px);
        }

        /* Contact */
        .footer-contact-v2 {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .footer-contact-item {
            display: flex;
            gap: .9rem;
            align-items: flex-start;
        }

        .footer-contact-ico {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
            flex: 0 0 auto;
        }

        .footer-contact-text span {
            display: block;
            font-size: .85rem;
            color: rgba(226, 232, 240, 0.70);
            margin-bottom: .15rem;
        }

        .footer-contact-text strong {
            display: block;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        /* Divider */
        .footer-divider-v2 {
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin: 1.6rem 0 1.6rem;
        }

        /* Browse Categories */
        .footer-cats-v2 {
            padding: .2rem 0 1.4rem;
        }

        .footer-cats-title {
            margin: 0 0 1rem;
            font-size: 1.05rem;
            font-weight: 900;
            color: #fff;
        }

        .footer-chips-v2 {
            display: flex;
            flex-wrap: wrap;
            gap: .9rem;
        }

        .footer-chip-v2 {
            padding: .55rem 1.05rem;
            border-radius: 14px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-weight: 600;
            font-size: .92rem;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
        }

        .footer-chip-v2:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.10);
            border-color: rgba(255, 255, 255, 0.14);
        }

        /* Bottom bar */
        .footer-bottom-v2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-copy-v2 {
            margin: 0;
            color: rgba(226, 232, 240, 0.60);
            font-size: .92rem;
        }

        .footer-bottom-links-v2 {
            display: flex;
            gap: 1.6rem;
        }

        .footer-bottom-links-v2 a {
            color: rgba(226, 232, 240, 0.70);
            text-decoration: none;
            font-weight: 600;
            font-size: .92rem;
            transition: color .2s ease;
        }

        .footer-bottom-links-v2 a:hover {
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-bottom-v2 {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .hero-wrapper {
                flex-direction: column;
            }

            .hero-cta-grid {
                width: 100%;
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1200px) {

            .articles-grid,
            .categories-grid,
            /* .tips-grid,
            .who-grid, */
            .cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            .articles-grid,
            .categories-grid,
            .cta-grid,
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .setup-container {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                flex-wrap: wrap;
            }

            .hero-cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Latest Articles - UI v2 (matches screenshot) */
        .latest-articles-v2 {
            padding: 2rem 0;
            background: #fff;
        }

        .section-header-v2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title-v2 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
        }

        .section-subtitle-v2 {
            color: var(--text-gray);
            font-size: 1.05rem;
            margin: 0;
        }

        .articles-grid-v2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .article-card-v2 {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            cursor: pointer;
        }


        .article-image-wrap-v2 {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .article-image-v2 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        /* pill badge */
        .article-badge-v2 {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.2px;
        }

        .badge-teal-v2 {
            background: linear-gradient(135deg, var(--primary-teal), #4DD4D0);
        }

        .badge-pink-v2 {
            background: linear-gradient(135deg, var(--primary-pink), #ff5db1);
        }

        .article-body-v2 {
            padding: 1rem;
        }

        .article-title-v2 {
            font-size: 1.11rem;
            font-weight: 800;
            line-height: 1.35;
            margin: 0 0 0.7rem;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-excerpt-v2 {
            margin: 0 0 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.85rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-divider-v2 {
            height: 1px;
            background: rgba(0, 0, 0, 0.08);
            margin: 0.9rem 0 0.9rem;
        }

        .article-meta-v2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
            color: var(--text-gray);
            font-size: 0.85rem;
            margin-bottom: 0.9rem;
        }

        .article-meta-v2 span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .article-read-v2 {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-weight: 500;
            text-decoration: none;
            color: var(--primary-teal);
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .article-read-v2:hover {
            color: var(--primary-pink);
            transform: translateX(2px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .articles-grid-v2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .articles-grid-v2 {
                grid-template-columns: 1fr;
            }
        }


        /* =================== HERO SECTION =================== */
        .deals-hero {
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--line);
            background: radial-gradient(1200px 500px at 30% 10%, rgba(255, 45, 141, .10), transparent 60%),
                radial-gradient(900px 500px at 70% 40%, rgba(49, 173, 173, .10), transparent 60%),
                #fff;
        }

        .deals-hero-frame {
            position: relative;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
            min-height: 380px;
            /* box-shadow: 0 18px 50px rgba(17, 24, 39, .10); */
        }

        .deals-hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .deals-hero-overlay-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, .85) 0%, rgba(15, 23, 42, .4) 60%, transparent 100%);
        }

        .deals-hero-content {
            position: relative;
            z-index: 2;
            padding: 50px 40px;
            max-width: 700px;
        }

        .deals-hero-right {
            position: relative;
            z-index: 2;
            padding: 50px 40px;
            max-width: 500px;
        }


        .deals-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(255, 45, 141, .15);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            border: 1px solid rgba(255, 45, 141, .3);
            margin-bottom: 16px;
        }

        .deals-hero-title {
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.6px;
            margin: 0 0 16px;
            font-size: clamp(32px, 4vw, 52px);
            color: #fff;
        }

        .deals-hero-title .pink {
            color: var(--pink);
        }

        .deals-hero-sub {
            color: rgba(255, 255, 255, .85);
            margin: 0 0 24px;
            font-size: clamp(15px, 1.3vw, 18px);
            line-height: 1.6;
            max-width: 50ch;
        }

        .deals-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .deals-btn-hero {
            background: linear-gradient(135deg, var(--pink), var(--pink-2));
            color: #fff;
            border: 0;
            border-radius: 12px;
            padding: 14px 28px;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0 14px 28px rgba(255, 45, 141, .25);
            transition: .2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .deals-btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(255, 45, 141, .35);
            color: #fff;
        }

        .deals-btn-hero-outline {
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .3);
            border-radius: 12px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 15px;
            transition: .2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .deals-btn-hero-outline:hover {
            background: rgba(255, 255, 255, .2);
            border-color: rgba(255, 255, 255, .5);
            color: #fff;
        }

        .deals-hero-chips {
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .deals-hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 999px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

        .deals-hero-chip i {
            color: var(--teal);
        }

        @media (max-width: 768px) {
            .deals-hero-content {
                padding: 30px 24px;
            }

            .deals-hero-frame {
                min-height: 450px;
            }

            .deals-hero-overlay-gradient {
                background: linear-gradient(180deg, rgba(15, 23, 42, .7) 0%, rgba(15, 23, 42, .9) 100%);
            }

        }

        /* Hero Image */
        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .hero-chair-box img {
            --tw-shadow-color: rgba(0, 0, 0, 0.4);
            box-shadow: 0 25px 50px -12px var(--tw-shadow-color);
        }

        .hero-chair-box {
            width: 100%;
            max-width: 420px;
            height: 330px;
            border-radius: 30px;
            /* padding: 2.5rem; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow:
                -10px 20px 20px -30px rgba(255, 45, 145, 0.6),
                0 10px 30px 15px rgba(60, 176, 173, 0.5),
                -20px -15px 20px rgba(255, 45, 145, 0.8),
                0 0 50px rgba(60, 176, 173, 0.5);
            background: linear-gradient(135deg, rgba(60, 176, 173, 0.2), rgba(255, 45, 145, 0.2));
        }

        .hero-chair-box img {
            border-radius: 15px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .expert-badge {
            position: absolute;
            bottom: -40px;
            right: -40px;
            background: white;
            padding: 1rem 1.3rem;
            border-radius: 15px;
            /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
            display: flex;
            align-items: center;
            gap: 0.8rem;
            z-index: 3;
        }

        .expert-badge i {
            font-size: 2rem;
            background: linear-gradient(135deg, #31adad, #ff2d8d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .expert-badge-text {
            display: flex;
            flex-direction: column;
        }

        .expert-badge-text small {
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .expert-badge-text strong {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .pt-2rem {
            padding-top: 2rem;
        }

        .swiper-pagination {
            position: unset !important;
        }