/* ============================================

           RESET & BASE STYLES

           ============================================ */



        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }



        html {

            scroll-behavior: smooth;

        }



        body {

            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

            background: #0a0e27;

            color: #e0e0e0;

            overflow-x: hidden;

            position: relative;

            opacity: 1;

        }



        /* ============================================

           COLOR & GRADIENT UTILITIES

           ============================================ */



        :root {

            --primary-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);

            --secondary-gradient: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);

            --accent-gradient: linear-gradient(135deg, #06ffa5 0%, #00d4aa 100%);

            --danger-gradient: linear-gradient(135deg, #ff006e 0%, #fb5607 100%);



            --bg-dark: #0a0e27;

            --bg-darker: #06081a;

            --bg-card: rgba(255, 255, 255, 0.05);

            --bg-card-hover: rgba(255, 255, 255, 0.08);



            --text-primary: #ffffff;

            --text-secondary: #b0b0b0;

            --text-tertiary: #808080;



            --border-color: rgba(255, 255, 255, 0.1);

            --border-color-hover: rgba(255, 255, 255, 0.2);

        }

        /* Runtime toggle compatibility: keep this page coherent in light mode. */
        body.pls-theme-light,
        body.theme-light,
        body.light-mode {
            --bg-dark: #eef2ff;
            --bg-darker: #e2e8f0;
            --bg-card: rgba(255, 255, 255, 0.85);
            --bg-card-hover: rgba(255, 255, 255, 0.98);
            --text-primary: #0f172a;
            --text-secondary: #334155;
            --text-tertiary: #64748b;
            --border-color: rgba(15, 23, 42, 0.14);
            --border-color-hover: rgba(15, 23, 42, 0.28);
            background: #eef2ff;
            color: #0f172a;
        }

        body.pls-theme-light .hero-background,
        body.theme-light .hero-background,
        body.light-mode .hero-background {
            opacity: 0.35;
            filter: saturate(0.72);
        }

        body.pls-theme-light .navbar,
        body.theme-light .navbar,
        body.light-mode .navbar {
            background: rgba(255, 255, 255, 0.86);
            border-bottom-color: rgba(15, 23, 42, 0.12);
        }

        body.pls-theme-light .nav-link,
        body.theme-light .nav-link,
        body.light-mode .nav-link {
            color: #334155;
        }



        /* ============================================

           TYPOGRAPHY

           ============================================ */



        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {

            font-weight: 700;

            letter-spacing: -0.5px;

        }



        h1 {

            font-size: 72px;

            line-height: 1.2;

            margin-bottom: 24px;

        }



        h2 {

            font-size: 48px;

            line-height: 1.3;

            margin-bottom: 16px;

        }



        h3 {

            font-size: 24px;

            line-height: 1.4;

        }



        p {

            line-height: 1.6;

        }



        a {

            color: inherit;

            text-decoration: none;

            transition: all 0.3s ease;

        }



        /* ============================================

           KEYFRAMES & ANIMATIONS

           ============================================ */



        @keyframes float {

            0%,
            100% {

                transform: translate(0, 0) scale(1);

            }

            50% {

                transform: translate(50px, 50px) scale(1.1);

            }

        }



        @keyframes fadeInUp {

            from {

                opacity: 0;

                transform: translateY(30px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }



        @keyframes slideInDown {

            from {

                opacity: 0;

                transform: translateY(-20px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }



        @keyframes fadeIn {

            from {

                opacity: 0;

            }

            to {

                opacity: 1;

            }

        }



        @keyframes ripple {

            to {

                transform: scale(4);

                opacity: 0;

            }

        }



        /* ============================================

           NAVIGATION BAR

           ============================================ */



        .navbar {

            position: fixed;

            top: 0;

            left: 0;

            right: 0;

            height: 70px;

            background: rgba(10, 14, 39, 0.8);

            backdrop-filter: blur(10px);

            border-bottom: 1px solid var(--border-color);

            z-index: 1000;

        }



        .nav-container {

            max-width: 1400px;

            margin: 0 auto;

            padding: 0 40px;

            height: 100%;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }



        .nav-logo {

            display: flex;

            align-items: center;

            gap: 12px;

            font-size: 16px;

            font-weight: 700;

            background: var(--primary-gradient);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

        }



        .nav-links {

            display: flex;

            align-items: center;

            gap: 32px;

        }



        .nav-link {

            font-size: 14px;

            color: var(--text-secondary);

            font-weight: 500;

            transition: color 0.3s ease;

        }



        .nav-link:hover {

            color: var(--text-primary);

        }



        .nav-cta-btn {

            padding: 10px 24px;

            background: var(--primary-gradient);

            color: white;

            border: none;

            border-radius: 20px;

            font-size: 14px;

            font-weight: 600;

            cursor: pointer;

            transition: transform 0.2s ease, box-shadow 0.2s ease;

            position: relative;

            overflow: hidden;
            .hero-headline,
            h1 {
                font-size: 26px !important;
                line-height: 1.22 !important;
            }

            .hero-subtitle {
                font-size: 12.5px !important;
                line-height: 1.55 !important;
                margin-bottom: 18px !important;
            }

            .value-grid,
            .how-it-works,
            .gallery-section,
            .testimonials-section,
            .secondary-cta-section {
                padding: 56px 14px !important;
            }

            .section-title {
                font-size: 24px !important;
                line-height: 1.24 !important;
                margin-bottom: 10px !important;
            }

            .section-subtitle,
            .value-grid p,
            .step-description,
            .collection-card p,
            .testimonial-text {
                font-size: 12.5px !important;
                line-height: 1.5 !important;
            }

            .grid-container,
            .testimonials-grid {
                gap: 12px !important;
            }

            .value-card,
            .step-card,
            .collection-card,
            .testimonial-card {
                padding: 14px !important;
                border-radius: 12px !important;
            }

            .footer {
                padding: 44px 14px 22px !important;
            }

            .footer-content {
                gap: 16px !important;
            }

            .footer-section h4 {
                font-size: 14px !important;
                margin-bottom: 8px !important;
            }

            .footer-section p,
            .footer-section a,
            .footer-bottom {
                font-size: 12px !important;
                line-height: 1.45 !important;
            }
        }

        @media (max-width: 360px) {
            .hero-headline,
            h1 {
                font-size: 23px !important;
            }

            .hero-subtitle {
                font-size: 12px !important;
            }

            .value-grid,
            .how-it-works,
            .gallery-section,
            .testimonials-section,
            .secondary-cta-section {
                padding: 48px 12px !important;
            }

            .section-title {
                font-size: 21px !important;
            }

            .value-card,
            .step-card,
            .collection-card,
            .testimonial-card {
                padding: 12px !important;
            }

            .footer {
                padding: 38px 12px 18px !important;
            }

            .footer-section h4 {
                font-size: 13px !important;
            }

            .footer-section p,
            .footer-section a,
            .footer-bottom {
                font-size: 11px !important;
            }
        }
            .nav-container {
                padding: 0 14px;
            }
            .nav-links {
                gap: 10px;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 4px;
            }
            .hero-section {
                padding: 72px 14px 34px;
            }
            h1 {
                font-size: 28px;
                line-height: 1.22;
            }
            .hero-subtitle {
                font-size: 13px;
                line-height: 1.6;
            }
            .search-bar {
                padding: 10px;
                gap: 10px;
                border-radius: 12px;
            }
            .search-input {
                font-size: 14px;
            }
            .search-btn {
                padding: 10px 14px;
                font-size: 13px;
            }
            .quick-links {
                gap: 8px;
            }
            .quick-link,
            .quick-tag {
                font-size: 11px;
                padding: 6px 10px;
            }
            .trust-content {
                gap: 12px;
                flex-direction: column;
                align-items: center;
            }
            .trust-stat {
                justify-content: center;
            }
        }

            border-radius: 8px;
            .hero-section {
                padding: 64px 12px 28px;
            }
            h1 {
                font-size: 25px;
            }
            .nav-links a {
                font-size: 12px;
            }
            .search-btn {
                padding: 10px 14px;
                font-size: 13px;
            }
            .grid-container {
                gap: 12px;
            }
        }

            font-size: 14px;

            font-weight: 600;

            cursor: pointer;

            transition: transform 0.2s ease, box-shadow 0.2s ease;

            position: relative;

            overflow: hidden;

        }



        .nav-cta-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);

        }



        /* ============================================

           HERO SECTION

           ============================================ */



        .hero-section {

            position: relative;

            padding: 140px 40px 80px;

            min-height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            overflow: hidden;

            margin-top: 70px;

        }



        .hero-background {

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="logos" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="none"/><circle cx="50" cy="50" r="25" fill="rgba(255, 0, 110, 0.15)"/><rect x="120" y="30" width="40" height="40" fill="rgba(131, 56, 236, 0.15)"/><path d="M 80 120 L 100 140 L 120 120" stroke="rgba(58, 134, 255, 0.15)" stroke-width="3" fill="none"/><circle cx="150" cy="150" r="20" fill="rgba(6, 255, 165, 0.15)"/><rect x="30" y="130" width="35" height="35" fill="rgba(251, 86, 7, 0.15)" transform="rotate(45 47.5 147.5)"/></pattern></defs><rect width="1200" height="800" fill="rgba(10, 14, 39, 0.3)"/><rect width="1200" height="800" fill="url(%23logos)"/></svg>') center/cover;

            background-attachment: fixed;

            opacity: 0.8;

            pointer-events: none;

        }



        /* Animated Ambient Orbs */

        .ambient-orbs {

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            overflow: hidden;

            pointer-events: none;

        }



        .orb {

            position: absolute;

            border-radius: 50%;

            filter: blur(80px);

            opacity: 0.3;

        }



        .orb-1 {

            width: 300px;

            height: 300px;

            background: radial-gradient(circle, rgba(255, 0, 110, 0.8), transparent);

            top: -100px;

            left: -100px;

            animation: float 20s ease-in-out infinite;

        }



        .orb-2 {

            width: 400px;

            height: 400px;

            background: radial-gradient(circle, rgba(131, 56, 236, 0.6), transparent);

            top: 50%;

            right: -150px;

            animation: float 25s ease-in-out infinite reverse;

        }



        .orb-3 {

            width: 350px;

            height: 350px;

            background: radial-gradient(circle, rgba(58, 134, 255, 0.5), transparent);

            bottom: -100px;

            left: 30%;

            animation: float 22s ease-in-out infinite;

        }



        .hero-content {

            position: relative;

            z-index: 10;

            max-width: 700px;

            margin: 0 auto;

            text-align: center;

            animation: fadeInUp 0.8s ease-out;

        }



        .pre-headline-badge {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            background: rgba(255, 255, 255, 0.08);

            border: 1px solid var(--border-color);

            padding: 8px 16px;

            border-radius: 20px;

            margin-bottom: 24px;

            font-size: 13px;

            font-weight: 600;

            animation: slideInDown 0.6s ease-out;

        }



        .badge-icon {

            font-size: 16px;

        }



        .badge-text {

            background: var(--primary-gradient);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

        }



        .hero-headline {

            font-size: 72px;

            font-weight: 800;

            line-height: 1.2;

            margin-bottom: 24px;

            animation: fadeInUp 0.8s ease-out 0.1s backwards;

        }



        .headline-black {

            display: block;

            color: var(--text-primary);

            margin-bottom: 8px;

        }



        .headline-gradient {

            display: block;

            background: var(--primary-gradient);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            font-weight: 900;

        }



        .hero-subtitle {

            font-size: 16px;

            color: var(--text-secondary);

            line-height: 1.7;

            margin-bottom: 40px;

            max-width: 600px;

            margin-left: auto;

            margin-right: auto;

            animation: fadeInUp 0.8s ease-out 0.2s backwards;

        }



        .search-container {

            animation: fadeInUp 0.8s ease-out 0.3s backwards;

        }



        .search-bar {

            display: flex;

            align-items: center;

            background: rgba(255, 255, 255, 0.08);

            border: 1px solid var(--border-color);

            border-radius: 14px;

            padding: 14px 20px;

            gap: 12px;

            margin-bottom: 24px;

            backdrop-filter: blur(10px);

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);

            transition: all 0.3s ease;

        }



        .search-bar:hover {

            background: rgba(255, 255, 255, 0.12);

            border-color: var(--border-color-hover);

            box-shadow: 0 30px 80px rgba(255, 0, 110, 0.2);

        }



        .search-bar:focus-within {

            background: rgba(255, 255, 255, 0.12);

            border-color: var(--border-color-hover);

            box-shadow: 0 30px 80px rgba(255, 0, 110, 0.2);

        }



        .search-icon {

            color: var(--text-tertiary);

            flex-shrink: 0;

            width: 20px;

            height: 20px;

        }



        .search-input {

            flex: 1;

            background: transparent;

            border: none;

            color: var(--text-primary);

            font-size: 16px;

            outline: none;

        }



        .search-input::placeholder {

            color: var(--text-tertiary);

        }



        .search-btn {

            display: flex;

            align-items: center;

            gap: 8px;

            padding: 10px 20px;

            background: var(--primary-gradient);

            color: white;

            border: none;

            border-radius: 8px;

            font-size: 14px;

            font-weight: 600;

            cursor: pointer;

            transition: transform 0.2s ease, box-shadow 0.2s ease;

            flex-shrink: 0;

            white-space: nowrap;

            position: relative;

            overflow: hidden;

        }



        .search-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);

        }



        .quick-links {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 12px;

            flex-wrap: wrap;

        }



        .quick-links-label {

            font-size: 13px;

            color: var(--text-tertiary);

            font-weight: 600;

        }



        .quick-links-container {

            display: flex;

            gap: 8px;

            flex-wrap: wrap;

            justify-content: center;

        }



        .quick-link-pill {

            padding: 8px 16px;

            background: rgba(255, 255, 255, 0.05);

            border: 1px solid var(--border-color);

            border-radius: 20px;

            color: var(--text-secondary);

            font-size: 13px;

            font-weight: 500;

            cursor: pointer;

            transition: all 0.3s ease;

        }



        .quick-link-pill:hover {

            background: rgba(255, 255, 255, 0.1);

            border-color: var(--border-color-hover);

            color: var(--text-primary);

        }



        /* ============================================

           TRUST BAR

           ============================================ */



        .trust-bar {

            position: relative;

            background: rgba(255, 255, 255, 0.03);

            border-top: 1px solid var(--border-color);

            border-bottom: 1px solid var(--border-color);

            padding: 32px 40px;

        }



        .trust-content {

            max-width: 1400px;

            margin: 0 auto;

            display: flex;

            align-items: center;

            justify-content: space-around;

            flex-wrap: wrap;

            gap: 40px;

        }

        /* Keep trust stats in one horizontal row (as requested). */
        .trust-content {
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            justify-content: space-between !important;
            overflow-x: visible;
        }

        .trust-stat {
            flex: 0 0 auto;
            white-space: nowrap;
        }



        .trust-stat {

            display: flex;

            align-items: center;

            gap: 16px;

        }



        .stat-avatar-group {

            display: flex;

            align-items: center;

            margin-right: 8px;

        }



        .avatar {

            width: 32px;

            height: 32px;

            border-radius: 50%;

            border: 2px solid var(--bg-dark);

            margin-left: -12px;

            background: linear-gradient(135deg, #ff006e, #8338ec);

        }



        .avatar:first-child {

            margin-left: 0;

        }



        .avatar-1 {
            background: linear-gradient(135deg, #ff006e, #fb5607);
        }

        .avatar-2 {
            background: linear-gradient(135deg, #8338ec, #3a86ff);
        }

        .avatar-3 {
            background: linear-gradient(135deg, #00d9ff, #0099cc);
        }

        .avatar-4 {
            background: linear-gradient(135deg, #06ffa5, #00d4aa);
        }



        .stat-text {

            font-size: 14px;

            color: var(--text-secondary);

        }



        .stat-text strong {

            color: var(--text-primary);

            font-weight: 700;

        }



        .trust-divider {

            width: 1px;

            height: 40px;

            background: var(--border-color);

        }



        /* ============================================

           SECTION HEADERS

           ============================================ */



        .section-header {

            text-align: center;

            margin-bottom: 60px;

        }



        .section-title {

            font-size: 48px;

            color: var(--text-primary);

            margin-bottom: 16px;

        }



        .section-subtitle {

            font-size: 16px;

            color: var(--text-secondary);

            max-width: 500px;

            margin: 0 auto;

        }



        /* ============================================

           VALUE GRID SECTION

           ============================================ */



        .value-grid {

            position: relative;

            padding: 120px 40px;

            background: var(--bg-dark);

        }



        .grid-container {

            max-width: 1400px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: repeat(4, minmax(0, 1fr));

            gap: 24px;

        }



        .value-card {

            position: relative;

            padding: 32px;

            background: var(--bg-card);

            border: 1px solid var(--border-color);

            border-radius: 16px;

            backdrop-filter: blur(10px);

            transition: all 0.3s ease;

            overflow: hidden;

            opacity: 0;

            animation: fadeInUp 0.8s ease-out forwards;

        }



        .value-card:hover {

            background: var(--bg-card-hover);

            border-color: var(--border-color-hover);

            transform: translateY(-8px);

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);

        }



        .card-icon-wrapper {

            width: 60px;

            height: 60px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: rgba(255, 255, 255, 0.05);

            border-radius: 12px;

            margin-bottom: 24px;

        }



        .card-icon {

            width: 32px;

            height: 32px;

        }



        .card-title {

            font-size: 20px;

            margin-bottom: 12px;

            color: var(--text-primary);

        }



        .card-description {

            font-size: 14px;

            color: var(--text-secondary);

            margin-bottom: 20px;

            line-height: 1.6;

        }



        .card-features {

            list-style: none;

            display: flex;

            flex-direction: column;

            gap: 12px;

        }



        .card-features li {

            font-size: 13px;

            color: var(--text-secondary);

            display: flex;

            align-items: center;

            gap: 8px;

        }



        .check-mark {

            color: #06ffa5;

            font-weight: 700;

        }



        /* ============================================

           HOW IT WORKS SECTION

           ============================================ */



        .how-it-works {

            position: relative;

            padding: 120px 40px;

            background: var(--bg-darker);

        }



        .steps-container {

            max-width: 1000px;

            margin: 0 auto;

            display: flex;

            align-items: stretch;

            justify-content: space-between;

            gap: 40px;

            position: relative;

        }



        .steps-container::before {

            content: '';

            position: absolute;

            top: 40px;

            left: 0;

            right: 0;

            height: 2px;

            background: linear-gradient(90deg, transparent, var(--border-color), transparent);

            z-index: 0;

        }



        .step {

            flex: 1;

            display: flex;

            flex-direction: column;

            position: relative;

            z-index: 1;

        }



        .step-number {

            width: 60px;

            height: 60px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: var(--primary-gradient);

            border-radius: 50%;

            font-size: 28px;

            font-weight: 800;

            color: white;

            margin-bottom: 24px;

        }



        .step-content h3 {

            font-size: 20px;

            margin-bottom: 12px;

            color: var(--text-primary);

        }



        .step-content p {

            font-size: 14px;

            color: var(--text-secondary);

            line-height: 1.6;

        }



        .step-arrow {

            position: absolute;

            top: 20px;

            right: -48px;

            font-size: 28px;

            color: var(--text-tertiary);

            font-weight: 300;

        }



        .step:last-child .step-arrow {

            display: none;

        }



        /* ============================================

           MASONRY GALLERY SECTION

           ============================================ */



        .gallery-section {

            position: relative;

            padding: 120px 40px;

            background: var(--bg-dark);

        }



        .masonry-grid {

            max-width: 1400px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: repeat(3, minmax(0, 1fr));

            gap: 20px;

            grid-auto-rows: 190px;

        }



        .masonry-card {

            position: relative;

            border-radius: 12px;

            overflow: hidden;

            cursor: pointer;

            background: var(--bg-card);

            border: 1px solid var(--border-color);

            transition: all 0.3s ease;

        }



        .masonry-card-large {
            grid-column: span 1;
            grid-row: span 1;

        }



        .masonry-card:hover {

            border-color: var(--border-color-hover);

            transform: scale(1.05);

        }

        .masonry-card.browse-tile {
            display: block;
        }



        .card-logo-bg {

            width: 100%;

            height: 100%;

            background-size: cover;

            background-position: center;

            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: rgba(255, 255, 255, 0.06);

        }

        .card-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
        }



        .logo-tech {

            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

        }



        .logo-finance {

            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

        }



        .logo-food {

            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

        }



        .logo-health {

            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);

        }



        .logo-retail {

            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

        }



        .logo-media {

            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

        }



        .card-overlay {

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: rgba(0, 0, 0, 0.4);

            display: flex;

            align-items: flex-end;

            padding: 16px;

            opacity: 0;

            transition: opacity 0.3s ease;

        }



        .masonry-card:hover .card-overlay {

            opacity: 1;

        }



        .card-category {

            font-size: 14px;

            font-weight: 600;

            color: white;

        }

        /* Hide category text overlays for cleaner premium-logo gallery. */
        .masonry-grid .card-overlay {
            display: none !important;
        }



        /* ============================================

           TESTIMONIALS SECTION

           ============================================ */



        .testimonials-section {

            position: relative;

            padding: 120px 40px;

            background: var(--bg-darker);

        }



        .testimonials-grid {

            max-width: 1200px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

            gap: 32px;

        }



        .testimonial-card {

            padding: 32px;

            background: var(--bg-card);

            border: 1px solid var(--border-color);

            border-radius: 16px;

            backdrop-filter: blur(10px);

            transition: all 0.3s ease;

            opacity: 0;

            animation: fadeInUp 0.8s ease-out forwards;

        }



        .testimonial-card:hover {

            background: var(--bg-card-hover);

            transform: translateY(-4px);

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);

        }



        .testimonial-stars {

            margin-bottom: 16px;

            font-size: 16px;

        }



        .testimonial-text {

            font-size: 15px;

            color: var(--text-secondary);

            line-height: 1.7;

            margin-bottom: 24px;

        }



        .testimonial-author {

            display: flex;

            align-items: center;

            gap: 12px;

        }



        .author-avatar {

            width: 44px;

            height: 44px;

            border-radius: 50%;

            flex-shrink: 0;

        }



        .author-avatar-1 {
            background: linear-gradient(135deg, #ff006e, #fb5607);
        }

        .author-avatar-2 {
            background: linear-gradient(135deg, #8338ec, #3a86ff);
        }

        .author-avatar-3 {
            background: linear-gradient(135deg, #00d9ff, #0099cc);
        }



        .author-info p {

            margin: 0;

            font-size: 14px;

        }



        .author-name {

            font-weight: 600;

            color: var(--text-primary);

        }



        .author-role {

            color: var(--text-tertiary);

            font-size: 12px;

        }



        /* ============================================

           SECONDARY CTA SECTION

           ============================================ */



        .secondary-cta-section {

            position: relative;

            padding: 100px 40px;

            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);

            border-top: 1px solid var(--border-color);

            border-bottom: 1px solid var(--border-color);

        }



        .cta-content {

            max-width: 600px;

            margin: 0 auto;

            text-align: center;

        }



        .cta-headline {

            font-size: 48px;

            color: var(--text-primary);

            margin-bottom: 16px;

        }



        .cta-subtitle {

            font-size: 16px;

            color: var(--text-secondary);

            margin-bottom: 32px;

            line-height: 1.6;

        }



        .cta-button-group {

            display: flex;

            gap: 16px;

            justify-content: center;

            flex-wrap: wrap;

        }



        .cta-btn {

            padding: 14px 32px;

            border-radius: 10px;

            font-size: 15px;

            font-weight: 600;

            border: none;

            cursor: pointer;

            transition: all 0.3s ease;

            position: relative;

            overflow: hidden;

        }



        .cta-btn-primary {

            background: var(--primary-gradient);

            color: white;

        }



        .cta-btn-primary:hover {

            transform: translateY(-2px);

            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);

        }



        .cta-btn-secondary {

            background: transparent;

            color: var(--text-primary);

            border: 1px solid var(--border-color);

        }



        .cta-btn-secondary:hover {

            background: var(--bg-card);

            border-color: var(--border-color-hover);

        }



        /* ============================================

           FOOTER

           ============================================ */



        .footer {

            position: relative;

            background: var(--bg-darker);

            border-top: 1px solid var(--border-color);

            padding: 60px 40px 20px;

        }



        .footer-content {

            max-width: 1400px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

            gap: 40px;

            margin-bottom: 40px;

        }



        .footer-section h4 {

            font-size: 16px;

            margin-bottom: 16px;

            color: var(--text-primary);

        }



        .footer-section p {

            font-size: 14px;

            color: var(--text-secondary);

            line-height: 1.6;

        }



        .footer-section ul {

            list-style: none;

        }



        .footer-section ul li {

            margin-bottom: 12px;

        }



        .footer-section a {

            font-size: 14px;

            color: var(--text-secondary);

            transition: color 0.3s ease;

        }



        .footer-section a:hover {

            color: var(--text-primary);

        }



        .social-links {

            display: flex;

            flex-direction: column;

            gap: 12px;

        }



        .footer-bottom {

            text-align: center;

            padding-top: 20px;

            border-top: 1px solid var(--border-color);

            font-size: 13px;

            color: var(--text-tertiary);

        }



        /* ============================================

           RESPONSIVE DESIGN

           ============================================ */



        @media (max-width: 1024px) {

            h1 {

                font-size: 56px;

            }



            .section-title {

                font-size: 36px;

            }



            .grid-container {

                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

            }

        }



        @media (max-width: 768px) {

            .nav-container {

                padding: 0 20px;

            }



            .nav-links {

                gap: 16px;

            }



            .nav-cta-btn {

                display: none;

            }



            .hero-section {

                padding: 100px 20px 60px;

            }



            h1 {

                font-size: 40px;

            }



            .hero-subtitle {

                font-size: 14px;

            }



            .search-bar {

                flex-direction: column;

                align-items: stretch;

            }



            .search-btn {

                max-width: 100%;

                padding: 10px 16px;

                font-size: 13px;

            }



            .quick-links {

                justify-content: center;

            }



            .trust-content {

                gap: 24px;

            }



            .trust-divider {

                display: none;

            }



            .value-grid,

            .how-it-works,

            .gallery-section,

            .testimonials-section,

            .secondary-cta-section {

                padding: 80px 20px;

            }



            .section-title {

                font-size: 32px;

            }



            .grid-container {

                grid-template-columns: 1fr;

            }



            .masonry-grid {

                grid-auto-rows: 150px;

            }



            .masonry-card-large {

                grid-column: span 1;

                grid-row: span 1;

            }



            .cta-headline {

                font-size: 32px;

            }



            .steps-container {

                flex-direction: column;

                gap: 40px;

            }



            .steps-container::before {

                display: none;

            }



            .step-arrow {

                display: none !important;

            }

        }



        @media (max-width: 480px) {

            .nav-logo span {

                display: none;

            }



            h1 {

                font-size: 32px;

            }



            .hero-section {

                padding: 80px 16px 40px;

            }



            .trust-stat {

                gap: 8px;

            }



            .section-title {

                font-size: 28px;

            }



            .cta-headline {

                font-size: 28px;

            }



            .cta-button-group {

                flex-direction: column;

            }



            .cta-btn {

                width: 100%;

            }

        }



        /* ============================================

           SCROLLBAR STYLING

           ============================================ */



        ::-webkit-scrollbar {

            width: 12px;

        }



        ::-webkit-scrollbar-track {

            background: var(--bg-dark);

        }



        ::-webkit-scrollbar-thumb {

            background: rgba(255, 255, 255, 0.1);

            border-radius: 6px;

        }



        ::-webkit-scrollbar-thumb:hover {

            background: rgba(255, 255, 255, 0.2);

        }

        /* ============================================

           PROFESSIONAL RESPONSIVE OVERRIDES

           ============================================ */

        @media (max-width: 1200px) {
            .hero-content {
                max-width: 820px;
            }

            .hero-headline,
            h1 {
                font-size: 58px;
            }

            .grid-container {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 18px;
            }
        }

        @media (max-width: 992px) {
            .nav-container {
                padding: 0 18px;
            }

            .hero-section {
                padding: 98px 18px 56px;
                min-height: auto;
            }

            .hero-headline,
            h1 {
                font-size: 46px;
                line-height: 1.18;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .search-bar {
                padding: 12px 14px;
            }

            .trust-content {
                justify-content: flex-start !important;
                gap: 20px;
            }

            .masonry-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hero-headline,
            h1 {
                font-size: 38px;
            }

            .search-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .search-btn {
                width: 100%;
            }

            .quick-links {
                flex-direction: column;
                gap: 8px;
            }

            .quick-links-container {
                justify-content: center;
                width: 100%;
            }

            /* Why Choose: at least 2 per row; compact cards */
            .value-grid .grid-container {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 10px;
            }

            .value-grid .value-card {
                padding: 12px 10px;
                border-radius: 12px;
            }

            .value-grid .value-card:hover {
                transform: translateY(-3px);
            }

            .value-grid .card-icon-wrapper {
                width: 36px;
                height: 36px;
                margin-bottom: 8px;
                border-radius: 8px;
            }

            .value-grid .card-icon {
                width: 20px;
                height: 20px;
            }

            .value-grid .card-title {
                font-size: 12px;
                margin-bottom: 6px;
                line-height: 1.25;
            }

            .value-grid .card-description {
                font-size: 10px;
                line-height: 1.35;
                margin-bottom: 8px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .value-grid .card-features {
                gap: 4px;
            }

            .value-grid .card-features li {
                font-size: 9px;
            }

            /* How it works: keep 3 steps in one row */
            .how-it-works .steps-container {
                flex-direction: row !important;
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 8px;
                max-width: 100%;
            }

            .how-it-works .steps-container::before {
                display: block !important;
                top: 22px;
                left: 8%;
                right: 8%;
            }

            .how-it-works .step {
                flex: 1;
                min-width: 0;
            }

            .how-it-works .step-number {
                width: 36px;
                height: 36px;
                font-size: 15px;
                margin-bottom: 8px;
            }

            .how-it-works .step-content h3 {
                font-size: 11px;
                margin-bottom: 4px;
                line-height: 1.2;
            }

            .how-it-works .step-content p {
                font-size: 9px;
                line-height: 1.35;
            }

            .how-it-works .step-arrow {
                display: none !important;
            }

            /* Browse collection: 2 per row */
            .masonry-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 140px;
                gap: 10px;
            }

            /* Loved by creators: one row, three columns */
            .testimonials-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
                gap: 8px;
            }

            .testimonial-card {
                padding: 10px 8px;
                border-radius: 12px;
            }

            .testimonial-card:hover {
                transform: translateY(-2px);
            }

            .testimonial-stars {
                margin-bottom: 6px;
                font-size: 10px;
            }

            .testimonial-text {
                font-size: 9px;
                line-height: 1.35;
                margin-bottom: 8px;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .testimonial-author {
                gap: 6px;
            }

            .author-avatar {
                width: 28px;
                height: 28px;
            }

            .author-info p {
                font-size: 9px;
            }

            .author-role {
                font-size: 8px;
            }

            /* CTA above footer */
            .secondary-cta-section .cta-headline {
                font-size: 22px;
                line-height: 1.2;
            }

            .secondary-cta-section .cta-subtitle {
                font-size: 12px;
                line-height: 1.45;
                padding: 0 4px;
            }

            .secondary-cta-section .cta-btn {
                padding: 10px 18px;
                font-size: 13px;
            }

            .section-header {
                margin-bottom: 28px;
            }

            .value-grid .section-title,
            .how-it-works .section-title,
            .gallery-section .section-title,
            .testimonials-section .section-title {
                font-size: 26px;
            }

            .value-grid .section-subtitle,
            .how-it-works .section-subtitle,
            .gallery-section .section-subtitle,
            .testimonials-section .section-subtitle {
                font-size: 13px;
                max-width: 100%;
                padding: 0 8px;
            }

            .value-grid,
            .how-it-works,
            .gallery-section,
            .testimonials-section,
            .secondary-cta-section {
                padding: 48px 12px;
            }
        }

        /* Narrow phones: still 2 value cards; slightly tighter */
        @media (max-width: 768px) and (min-width: 520px) {
            .value-grid .grid-container {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 8px;
            }

            .value-grid .card-description,
            .value-grid .card-features {
                display: none;
            }

            .value-grid .card-title {
                font-size: 11px;
            }

            .value-grid .card-icon-wrapper {
                width: 32px;
                height: 32px;
                margin-bottom: 6px;
            }
        }

        @media (max-width: 480px) {
            .hero-headline,
            h1 {
                font-size: 31px;
                line-height: 1.16;
            }

            .hero-subtitle {
                font-size: 13px;
            }

            .trust-content {
                gap: 14px;
            }

            .trust-stat {
                font-size: 12px;
            }

            .quick-link-pill {
                font-size: 12px;
                padding: 7px 12px;
            }
        }

        /* Trust stats: keep one row, no horizontal scroll on small screens. */
        @media (max-width: 768px) {
            .trust-content {
                flex-wrap: wrap !important;
                justify-content: center !important;
                overflow-x: visible !important;
                gap: 8px !important;
            }

            .trust-stat {
                gap: 6px !important;
                min-width: 0;
                flex: 0 0 calc(50% - 8px);
                justify-content: center;
            }

            .trust-stat:nth-of-type(3) {
                flex-basis: 100%;
            }

            .stat-text {
                font-size: 11px;
                line-height: 1.2;
            }

            .stat-text strong {
                font-size: 12px;
            }

            .avatar {
                width: 20px;
                height: 20px;
                margin-left: -6px;
            }
        }

        @media (max-width: 480px) {
            .trust-content {
                gap: 6px !important;
            }

            .stat-text {
                font-size: 10px;
            }

            .stat-text strong {
                font-size: 11px;
            }

            .avatar {
                width: 16px;
                height: 16px;
                margin-left: -5px;
            }

            .trust-stat {
                flex-basis: calc(50% - 6px);
            }

            .trust-stat:nth-of-type(3) {
                flex-basis: 100%;
            }
        }
