
        /* ----- RESET & BASE ----- */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blue: #2E5AA6;
            --red: #EC1E27;
            --black: #000000;
            --white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.18);
            --glass-border: rgba(255, 255, 255, 0.25);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius: 24px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: linear-gradient(145deg, #f0f4fe 0%, #e6edf9 40%, #dce3f2 100%);
            min-height: 100vh;
            color: #1a1a2e;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* subtle animated gradient orbs */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.35;
            pointer-events: none;
            z-index: 0;
        }
        body::before {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -100px;
            background: radial-gradient(circle, var(--blue), transparent 70%);
        }
        body::after {
            width: 500px;
            height: 500px;
            bottom: -150px;
            left: -100px;
            background: radial-gradient(circle, var(--red), transparent 70%);
        }

        /* ----- SCROLLBAR ----- */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(46, 90, 166, 0.08);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--blue);
            border-radius: 10px;
        }

        /* ----- UTILITY ----- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        
        

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(18px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }
        .section-sub {
            font-size: 1.1rem;
            color: #3d3d5c;
            font-weight: 400;
            max-width: 640px;
            margin-bottom: 40px;
            opacity: 0.85;
        }

        /* ----- GLASS CARD ----- */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
        }
        .glass:hover {
            box-shadow: 0 12px 48px rgba(46, 90, 166, 0.18);
            transform: translateY(-4px);
        }

        .glass-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 34px;
            border-radius: 60px;
            font-family: var(--font);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            color: var(--white);
            background: linear-gradient(135deg, var(--blue), #1d3f7a);
            box-shadow: 0 4px 20px rgba(46, 90, 166, 0.35);
        }
        .glass-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 36px rgba(46, 90, 166, 0.45);
        }
        .glass-btn-outline {
            background: transparent;
            color: var(--blue);
            border: 2px solid var(--blue);
            box-shadow: none;
        }
        .glass-btn-outline:hover {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 8px 28px rgba(46, 90, 166, 0.30);
        }
        .glass-btn-red {
            background: linear-gradient(135deg, var(--red), #b8151c);
            box-shadow: 0 4px 20px rgba(236, 30, 39, 0.35);
        }
        .glass-btn-red:hover {
            box-shadow: 0 10px 36px rgba(236, 30, 39, 0.45);
        }

        /* ----- HEADER / NAV ----- */
        /* Floating pill header bar (matches design screenshot) */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            /* Match .why-yuvo horizontal padding so bar aligns with .panel */
            padding: 18px clamp(20px, 4vw, 48px) 0;
            background: transparent;
            border-bottom: none;
            transition: var(--transition);
        }
        header .container,
        header .header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 28px;
            /* Match .why-yuvo .panel width */
            width: min(1120px, 100%);
            max-width: min(1120px, 100%);
            margin: 0 auto;
            min-height: 76px;
            padding: 14px 18px 14px 24px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            box-shadow:
                0 4px 24px rgba(30, 50, 100, 0.08),
                0 1px 3px rgba(30, 50, 100, 0.04);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--blue);
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }
        .logo .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--blue), var(--red));
            border-radius: 12px;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 800;
        }
        .logo span {
            color: var(--red);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            margin-left: auto;
        }
        nav a {
            position: relative;
            padding: 8px 16px;
            border-radius: 0;
            font-weight: 500;
            font-size: 0.95rem;
            color: #1a1a2e;
            text-decoration: none;
            transition: var(--transition);
            background: transparent;
            border: none;
            white-space: nowrap;
        }
        nav a:hover {
            color: var(--blue);
            background: transparent;
        }
        /* Active link: blue text + underline (not filled pill) */
        nav a.active {
            color: var(--blue);
            font-weight: 600;
            background: transparent;
            border: none;
        }
        nav a.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2.5px;
            background: var(--blue);
            border-radius: 2px;
        }

        .nav-cta {
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            background: #2B5EA7 !important;
            color: #fff !important;
            border: none !important;
            padding: 12px 22px !important;
            border-radius: 999px !important;
            font-weight: 600 !important;
            font-size: 0.92rem !important;
            margin-left: 8px;
            box-shadow: 0 4px 14px rgba(43, 94, 167, 0.28);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta i {
            font-size: 0.72rem;
            opacity: 0.95;
        }
        .nav-cta:hover {
            background: #234d8c !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(43, 94, 167, 0.38);
        }

        /* mobile nav toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--blue);
            cursor: pointer;
            padding: 4px 8px;
            margin-left: auto;
        }

        /* ----- HERO (legacy home styles; homepage hero lives in sections.css) ----- */
        .hero-content h1 {
            font-size: clamp(2.6rem, 6vw, 4.2rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--blue);
            letter-spacing: -0.02em;
        }
        .hero-content h1 span {
            color: var(--red);
            display: inline-block;
        }
        .hero-content p {
            font-size: 1.15rem;
            margin: 20px 0 32px;
            color: #2d2d4a;
            max-width: 480px;
            opacity: 0.9;
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            margin-top: 20px;
        }
        .hero-badges .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #1a1a2e;
        }
        .hero-badges .badge i {
            color: var(--blue);
            font-size: 1.1rem;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-visual .glass {
            padding: 32px 28px 28px;
            text-align: center;
            width: 100%;
            max-width: 420px;
        }
        .hero-visual .product-tag {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            font-weight: 600;
        }
        .hero-visual h3 {
            font-size: 1.4rem;
            margin: 6px 0 4px;
            font-weight: 700;
            color: #1a1a2e;
        }
        .hero-visual .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--red);
        }
        .hero-visual .stars {
            color: #f5b342;
            letter-spacing: 2px;
            font-size: 1rem;
            margin: 4px 0 12px;
        }
        .hero-visual .product-img-placeholder {
            width: 100%;
            aspect-ratio: 1/1;
            max-height: 200px;
            object-fit: contain;
            background: linear-gradient(135deg, rgba(46, 90, 166, 0.06), rgba(236, 30, 39, 0.06));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.6rem;
            color: var(--blue);
            margin: 12px 0 16px;
            border: 2px dashed rgba(46, 90, 166, 0.15);
        }
        .hero-visual .glass-btn {
            width: 100%;
            justify-content: center;
        }

        /* teaser products */
        .teaser-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }
        .teaser-card {
            padding: 24px 20px 20px;
            text-align: center;
            background: var(--glass-bg);
            backdrop-filter: blur(12px) saturate(160%);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
        }
        .teaser-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(46, 90, 166, 0.15);
        }
        .teaser-card .teaser-icon {
            font-size: 2.8rem;
            color: var(--blue);
            opacity: 0.6;
            margin-bottom: 8px;
        }
        .teaser-card h4 {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1a1a2e;
        }
        .teaser-card p {
            font-size: 0.9rem;
            opacity: 0.7;
            margin: 4px 0 12px;
        }
        .teaser-card .coming-badge {
            display: inline-block;
            padding: 4px 16px;
            border-radius: 60px;
            background: var(--red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ----- PRODUCT LIST ----- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        .product-card {
            padding: 24px 20px 28px;
            text-align: center;
            background: var(--glass-bg);
            backdrop-filter: blur(14px) saturate(170%);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 56px rgba(46, 90, 166, 0.18);
        }
        .product-card .prod-img {
            font-size: 3.8rem;
            color: var(--blue);
            margin: 8px 0 12px;
        }
        .product-card h3 {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a1a2e;
        }
        .product-card .prod-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--red);
            margin: 4px 0;
        }
        .product-card .prod-stars {
            color: #f5b342;
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .product-card .prod-meta {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-bottom: 16px;
        }
        .product-card .prod-tag {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 60px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(46, 90, 166, 0.10);
            color: var(--blue);
            margin-bottom: 12px;
        }
        .product-card .prod-tag.coming {
            background: rgba(236, 30, 39, 0.10);
            color: var(--red);
        }

        /* ----- PDP ----- */
        .pdp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .pdp-visual {
            background: var(--glass-bg);
            backdrop-filter: blur(14px) saturate(170%);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            padding: 32px;
            text-align: center;
            box-shadow: var(--glass-shadow);
        }
        .pdp-visual .big-icon {
            font-size: 6rem;
            color: var(--blue);
            opacity: 0.5;
            margin: 20px 0;
        }
        .pdp-visual .badge-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }
        .pdp-visual .badge-row span {
            padding: 4px 16px;
            border-radius: 60px;
            background: rgba(46, 90, 166, 0.08);
            font-size: 0.8rem;
            font-weight: 500;
        }
        .pdp-details h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--blue);
            line-height: 1.2;
        }
        .pdp-details .pdp-price {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--red);
            margin: 8px 0 4px;
        }
        .pdp-details .pdp-stars {
            color: #f5b342;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .pdp-details .pdp-desc {
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .pdp-details .kit-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 16px;
            margin: 16px 0 24px;
        }
        .pdp-details .kit-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .pdp-details .kit-list li i {
            color: var(--blue);
            font-size: 0.8rem;
        }
        .pdp-details .pdp-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 8px;
        }
        .pdp-details .pdp-actions .glass-btn {
            flex: 1 1 auto;
            justify-content: center;
            min-width: 180px;
        }

        /* ----- MOVEMENT HUB (list) ----- */
        .move-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .move-card {
            padding: 28px 24px 32px;
            text-align: center;
            background: var(--glass-bg);
            backdrop-filter: blur(14px) saturate(170%);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .move-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 56px rgba(46, 90, 166, 0.18);
        }
        .move-card .move-icon {
            font-size: 3.2rem;
            color: var(--blue);
            margin-bottom: 8px;
            opacity: 0.7;
        }
        .move-card h3 {
            font-weight: 700;
            font-size: 1.3rem;
            color: #1a1a2e;
        }
        .move-card p {
            font-size: 0.95rem;
            opacity: 0.75;
            margin: 6px 0 12px;
        }
        .move-card .move-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--blue);
        }
        .move-card .move-meta i {
            margin-right: 4px;
        }

        /* ----- MOVE GUIDE (single / timer) ----- */
        .timer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .timer-main {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid rgba(46, 90, 166, 0.08);
            padding: 40px 32px;
            box-shadow: 0 12px 40px rgba(46, 90, 166, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .timer-main .timer-display {
            text-align: center;
            padding: 20px 0 12px;
        }
        .timer-main .timer-display .phase-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--blue);
            opacity: 0.7;
        }
        .timer-main .timer-display .time {
            font-size: 5rem;
            font-weight: 700;
            line-height: 1;
            color: var(--blue);
            font-variant-numeric: tabular-nums;
            letter-spacing: -2px;
        }
        .timer-main .timer-display .move-name {
            font-size: 1.6rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 4px;
        }
        .timer-main .timer-display .move-tool {
            font-size: 0.95rem;
            opacity: 0.6;
        }

        /* progress bar */
        .progress-wrap {
            margin: 20px 0 16px;
        }
        .progress-track {
            width: 100%;
            height: 6px;
            background: rgba(46, 90, 166, 0.12);
            border-radius: 10px;
            overflow: hidden;
        }
        .progress-track .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--blue), var(--red));
            border-radius: 10px;
            transition: width 0.3s ease;
        }
        .progress-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            font-weight: 500;
            color: #3d3d5c;
            margin-top: 4px;
        }

        /* timer controls */
        .timer-controls {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .timer-controls button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 60px;
            font-family: var(--font);
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            background: rgba(46, 90, 166, 0.08);
            color: var(--blue);
            border: 1px solid transparent;
        }
        .timer-controls button:hover {
            background: rgba(46, 90, 166, 0.16);
            transform: scale(1.02);
        }
        .timer-controls button.primary {
            background: var(--blue);
            color: #fff;
            box-shadow: 0 4px 20px rgba(46, 90, 166, 0.30);
        }
        .timer-controls button.primary:hover {
            box-shadow: 0 8px 32px rgba(46, 90, 166, 0.40);
        }
        .timer-controls button.danger {
            background: var(--red);
            color: #fff;
            box-shadow: 0 4px 20px rgba(236, 30, 39, 0.30);
        }
        .timer-controls button.danger:hover {
            box-shadow: 0 8px 32px rgba(236, 30, 39, 0.40);
        }
        .timer-controls button:disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* move list (sidebar) */
        .move-list-side {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid rgba(46, 90, 166, 0.08);
            padding: 28px 24px;
            box-shadow: 0 12px 40px rgba(46, 90, 166, 0.08);
        }
        .move-list-side h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--blue);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(46, 90, 166, 0.1);
            padding-bottom: 12px;
        }
        .move-list-side ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .move-list-side li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            border-radius: 12px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            background: transparent;
            border: 1px solid transparent;
        }
        .move-list-side li:hover:not(.active):not(.completed) {
            background: rgba(46, 90, 166, 0.03);
            transform: translateX(4px);
        }
        .move-list-side li .li-index {
            font-weight: 700;
            color: var(--blue);
            opacity: 0.4;
            font-size: 0.85rem;
            width: 24px;
            text-align: left;
        }
        .move-list-side li .li-tool {
            font-size: 0.75rem;
            opacity: 0.5;
            margin-left: auto;
            font-weight: 600;
            background: rgba(0,0,0,0.04);
            padding: 4px 10px;
            border-radius: 20px;
        }
        .move-list-side li.active {
            background: linear-gradient(135deg, var(--blue), #1d3f7a);
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(46, 90, 166, 0.25);
            transform: scale(1.02);
            border: none;
        }
        .move-list-side li.active .li-index {
            opacity: 0.8;
            color: #ffffff;
        }
        .move-list-side li.active .li-tool {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            opacity: 1;
        }
        .move-list-side li.completed span:nth-child(2) {
            opacity: 0.4;
        }
        .move-list-side li.completed .li-index {
            opacity: 0.3;
            color: var(--blue);
        }
        .move-list-side li.completed::after {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            margin-left: auto;
            color: #10b981; /* Bright green */
            font-weight: 900;
            font-size: 1.2rem;
            text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
        }
        .move-list-side li.completed .li-tool {
            display: none;
        }

        /* ----- ABOUT ----- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .about-text h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--blue);
            line-height: 1.2;
        }
        .about-text p {
            font-size: 1.05rem;
            opacity: 0.85;
            margin: 16px 0;
            max-width: 520px;
        }
        .about-text .values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }
        .about-text .values .val {
            padding: 16px 18px;
            border-radius: 16px;
            background: rgba(46, 90, 166, 0.06);
            border: 1px solid rgba(46, 90, 166, 0.08);
        }
        .about-text .values .val h5 {
            font-weight: 600;
            color: var(--blue);
            font-size: 1rem;
        }
        .about-text .values .val p {
            font-size: 0.85rem;
            opacity: 0.7;
            margin: 2px 0 0;
        }
        .about-visual .glass {
            padding: 32px 28px;
            text-align: center;
        }
        .about-visual .glass .big-quote {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--blue);
            line-height: 1.3;
        }
        .about-visual .glass .big-quote span {
            color: var(--red);
        }
        .about-visual .glass .quote-attrib {
            margin-top: 12px;
            font-weight: 500;
            opacity: 0.6;
        }

        /* ----- CONTACT ----- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .contact-form .glass {
            padding: 36px 32px;
        }
        .contact-form .glass label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: #1a1a2e;
        }
        .contact-form .glass input,
        .contact-form .glass textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 16px;
            border: 1px solid rgba(46, 90, 166, 0.12);
            background: rgba(255, 255, 255, 0.40);
            backdrop-filter: blur(8px);
            font-family: var(--font);
            font-size: 0.95rem;
            transition: var(--transition);
            margin-bottom: 16px;
            color: #1a1a2e;
        }
        .contact-form .glass input:focus,
        .contact-form .glass textarea:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(46, 90, 166, 0.08);
        }
        .contact-form .glass textarea {
            min-height: 140px;
            resize: vertical;
        }
        .contact-info .glass {
            padding: 36px 32px;
        }
        .contact-info .glass .info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(46, 90, 166, 0.06);
        }
        .contact-info .glass .info-item:last-child {
            border-bottom: none;
        }
        .contact-info .glass .info-item i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(46, 90, 166, 0.08);
            color: var(--blue);
            font-size: 1rem;
        }
        .contact-info .glass .info-item strong {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .contact-info .glass .info-item span {
            font-size: 0.9rem;
            opacity: 0.7;
        }


        /* ----- RESPONSIVE ----- */
        @media (max-width: 1024px) {
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-badges {
                justify-content: center;
            }
            .pdp-grid {
                grid-template-columns: 1fr;
            }
            .timer-container {
                grid-template-columns: 1fr;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .about-text .values {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 12px 0;
            }
            header .container,
            header .header-bar {
                border-radius: 28px;
                padding: 10px 14px;
                gap: 8px;
            }
            header .container:has(nav.open),
            header .header-bar:has(nav.open) {
                border-radius: 24px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-left: 0;
                padding: 8px 0 4px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px 14px;
            }
            nav a.active::after {
                left: 50%;
                right: auto;
                width: 36px;
                transform: translateX(-50%);
                bottom: 6px;
            }
            .nav-cta {
                width: 100%;
                justify-content: center;
                margin-left: 0 !important;
                margin-top: 4px;
            }
            .nav-toggle {
                display: block;
            }
            .hero-visual .glass {
                padding: 20px 16px;
            }
            .pdp-details .kit-list {
                grid-template-columns: 1fr;
            }
            .about-text .values {
                grid-template-columns: 1fr;
            }
            .timer-main .timer-display .time {
                font-size: 3.6rem;
            }
            .timer-controls button {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            .move-list-side li {
                font-size: 0.85rem;
                padding: 8px 10px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 16px;
            }
            .page {
                padding: 80px 0 60px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .pdp-details h2 {
                font-size: 1.6rem;
            }
            .pdp-details .pdp-price {
                font-size: 1.8rem;
            }
            .timer-main .timer-display .time {
                font-size: 2.8rem;
            }
            .timer-main .timer-display .move-name {
                font-size: 1.2rem;
            }
            .teaser-grid {
                grid-template-columns: 1fr 1fr;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .move-grid {
                grid-template-columns: 1fr;
            }
            .pdp-details .pdp-actions {
                flex-direction: column;
            }
            .pdp-details .pdp-actions .glass-btn {
                min-width: unset;
            }
            .hero-badges {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
        }
    

/* ══ MULTI-PAGE BASE ══════════════════════════════════ */
.page {
    display: block;
    animation: fadeIn 0.45s ease forwards;
    padding: 110px 0 80px;
    min-height: calc(100vh - 220px);
}

/* Home hero is full-bleed under fixed header — no top page gap */
#page-home {
    padding-top: 0;
    padding-bottom: 0; /* no gap above footer */
}

/* ══ LOGO ══════════════════════════════════════════════ */
a.logo {
    background: none !important;
    display: inline-flex;
    align-items: center;
}
a.logo img {
    height: 48px;
    width: auto;
    display: block;
}
/* hide the old text/icon logo children */
a.logo .logo-icon,
a.logo > span { display: none; }

/* ══ HEADER — force design match (active = underline, not pill) ══ */
header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    /* Match .why-yuvo horizontal padding so bar aligns with .panel */
    padding: 20px clamp(20px, 4vw, 48px) 0 !important;
}
header .container.header-bar,
header .header-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    /* Same width as .why-yuvo .panel */
    width: min(1120px, 100%) !important;
    max-width: min(1120px, 100%) !important;
    margin: 0 auto !important;
    min-height: 76px !important;
    padding: 14px 18px 14px 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 15px !important;
    box-shadow:
        0 8px 32px rgba(40, 60, 120, 0.10),
        0 2px 8px rgba(40, 60, 120, 0.04) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
}
header #mainNav {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    margin-left: auto !important;
    flex-wrap: nowrap !important;
}
header #mainNav > a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    margin: 0 !important;
    font-family: var(--font) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}
header #mainNav > a:hover {
    color: #2B5EA7 !important;
    background: transparent !important;
    background-color: transparent !important;
}
/* Active: blue text + short underline — NEVER a filled pill */
header #mainNav > a.active,
header #mainNav > a.active:hover,
header #mainNav > a.active:focus {
    color: #2B5EA7 !important;
    font-weight: 600 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
header #mainNav > a.active::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 4px !important;
    height: 2.5px !important;
    background: #2B5EA7 !important;
    border-radius: 2px !important;
    width: auto !important;
}
/* CTA button */
header #mainNav > a.nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 10px !important;
    padding: 11px 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: #ffffff !important;
    background: #2B5EA7 !important;
    background-color: #2B5EA7 !important;
    background-image: none !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(43, 94, 167, 0.28) !important;
}
header #mainNav > a.nav-cta::after {
    display: none !important;
    content: none !important;
}
header #mainNav > a.nav-cta:hover {
    color: #ffffff !important;
    background: #234d8c !important;
    background-color: #234d8c !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    header {
        padding: 12px 12px 0 !important;
    }
    header .container.header-bar,
    header .header-bar {
        border-radius: 15px !important;
        min-height: 64px !important;
        padding: 12px 14px !important;
        flex-wrap: wrap !important;
        /* Align with why-yuvo section side padding on small screens */
        width: min(1120px, calc(100% - 0px)) !important;
    }
    header #mainNav {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        margin-left: 0 !important;
        gap: 4px !important;
        padding-top: 8px !important;
    }
    header #mainNav.open {
        display: flex !important;
    }
    header #mainNav > a {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 14px !important;
    }
    header #mainNav > a.active::after {
        left: 50% !important;
        right: auto !important;
        width: 40px !important;
        transform: translateX(-50%) !important;
        bottom: 6px !important;
    }
    header #mainNav > a.nav-cta {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }
}

/* ══ PRODUCT GRID ══════════════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
    margin-top: 8px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(18px) saturate(190%);
    -webkit-backdrop-filter: blur(18px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(46,90,166,0.09);
    padding: 0 0 24px;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(.25,.46,.45,.94),
                box-shadow 0.32s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 52px rgba(46,90,166,0.17);
}
.product-card .prod-img {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    border-radius: 14px;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f4f9;
}
.product-card .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-card:hover .prod-img img {
    transform: scale(1.06);
}
.product-card .prod-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 14px;
    border-radius: 60px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(46,90,166,0.09);
    color: var(--blue);
    margin: 16px 16px 0;
    align-self: flex-start;
}
.product-card .prod-tag.coming {
    background: rgba(236,30,39,0.09);
    color: var(--red);
}
.product-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 16px 16px 6px;
    line-height: 1.35;
}
.product-card .prod-stars {
    color: #f5a623;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0 16px 8px;
}
.product-card .prod-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin: 2px 16px 6px;
    letter-spacing: -0.03em;
}
.product-card .prod-meta {
    font-size: 0.85rem;
    color: #5a5a7a;
    margin: 0 16px 20px;
    flex-grow: 1;
}
/* override inline style on the glass-btn inside cards */
.product-card a.glass-btn {
    margin: 0 16px;
    width: calc(100% - 32px) !important;
    justify-content: center;
    border-radius: 14px;
}
/* notify-me button */
.product-card .notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 20px;
    padding: 10px 22px;
    border-radius: 60px;
    background: rgba(46,90,166,0.07);
    border: 1.5px solid rgba(46,90,166,0.18);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: center;
    width: calc(100% - 40px);
}
.product-card .notify-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* ══ HERO PRODUCT IMAGE ════════════════════════════════ */
.hero-product-img {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin: 16px 0 12px;
}
.hero-product-img img { width:100%; height:100%; object-fit:cover; display:block; }

/* ══ PDP PRODUCT IMAGE ═════════════════════════════════ */
.pdp-product-img {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin: 16px 0;
}
.pdp-product-img img { width:100%; height:100%; object-fit:cover; display:block; }

/* ══ FOOTER LOGO ════════════════════════════════════════ */
.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-logo-wrap img {
    height: 32px;
    width: auto;
    opacity: 100%;
}

/* ══ NAV ACTIVE ═════════════════════════════════════════ */
nav a.active {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
}
/* remove stray empty class="" attribute styling */
nav a[class=""] { color: #1a1a2e; }

/* ══ HOME ENHANCEMENTS ══════════════════════════════════ */
.home-section {
    margin-top: 80px;
}

.social-proof-banner {
    margin-top: 60px;
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(46, 90, 166, 0.1);
    border-bottom: 1px solid rgba(46, 90, 166, 0.1);
}
.social-proof-banner p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    opacity: 0.6;
    margin-bottom: 24px;
    font-weight: 600;
}
.social-proof-banner .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.social-proof-banner .logos:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}
.social-proof-banner .logos span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(46, 90, 166, 0.06);
    border: 1px solid rgba(46, 90, 166, 0.05);
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(46, 90, 166, 0.1);
}
.value-card .value-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 0.95rem;
    color: #4a4a68;
    line-height: 1.6;
}

.movement-teaser-banner {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--blue), #1d3f7a);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(46, 90, 166, 0.25);
    position: relative;
    overflow: hidden;
}
.movement-teaser-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.movement-teaser-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.movement-teaser-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.movement-teaser-content h2 span {
    color: #ffcccc; /* Soft red tint on white */
}
.movement-teaser-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}
.movement-teaser-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--blue);
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.movement-teaser-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
    }
    .movement-teaser-banner {
        padding: 40px 20px;
    }
    .movement-teaser-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-card .prod-img { height: 180px; }
}
