@font-face {
            font-family: 'Bank Gothic';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771867330/bank-gothic-light-bt_qyfq3l.ttf') format('truetype');
            font-display: swap;
        }

        @font-face {
            font-family: 'Cera Pro';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771882002/Cera_Pro_Thin_j1xuaz.otf') format('opentype');
            font-weight: 100;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cera Pro';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771881996/Cera_Pro_Light_shyhiy.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cera Pro';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771882001/Cera_Pro_Regular_mtepcg.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cera Pro';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771882000/Cera_Pro_Medium_mzum1q.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: 'Cera Pro';
            src: url('https://res.cloudinary.com/dai0pyiwa/raw/upload/v1771881998/Cera_Pro_Bold_npdjhj.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
        }

        /* === 3 PALETTE SYSTEM: Verde Bosque + Terracota + Blanco Hueso === */
        :root {
            /* Core 3-Color Palette */
            --primary: #2C4A3E;
            --primary-light: #3d6454;
            --primary-dark: #1e3329;
            --accent: #C47B4A;
            --accent-light: #d9935f;
            --accent-dark: #a5623a;
            --bg: #F8F6F1;

            /* Derived from palette */
            --bg-alt: #F0EDE6;
            --text: #1A1A1A;
            --text-light: #6B6B6B;
            --support: #E8DDD0;
            --border: rgba(44, 74, 62, 0.12);
            --white: #FFFFFF;
            --card: #FFFFFF;

            /* Design tokens */
            --radius: 20px;
            --radius-sm: 12px;
            --radius-pill: 50px;
            --shadow: 0 8px 40px rgba(44, 74, 62, 0.06);
            --shadow-lg: 0 20px 60px rgba(44, 74, 62, 0.1);
            --shadow-hover: 0 15px 50px rgba(44, 74, 62, 0.14);
            --font-logo: 'Bank Gothic', sans-serif;
            --font-body: 'Cera Pro', -apple-system, sans-serif;
            --font-display: 'Playfair Display', Georgia, serif;
            --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
            width: 100%;
        }

        ul,
        li {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: clip;
            width: 100%;
            max-width: 100vw;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: min(1400px, 100%);
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ============ UTILITY BAR ============ */
        .hide-desktop {
            display: none;
        }

        .utility-bar {
            background: var(--text);
            color: rgba(255, 255, 255, 0.85);
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 10px 0;
            position: relative;
            z-index: 200;
        }

        .utility-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .utility-left {
            display: flex;
            gap: 30px;
        }

        .utility-left span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .utility-right a {
            color: rgba(255, 255, 255, 0.85);
            margin-left: 25px;
            transition: color 0.3s;
        }

        .utility-right a:hover {
            color: var(--accent-light);
        }

        /* ============ HEADER ============ */
        header {
            position: sticky;
            top: 0;
            z-index: 150;
            background: rgba(248, 246, 241, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 0;
            transition: all 0.4s var(--ease);
        }

        header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
        }

        .logo {
            font-family: var(--font-logo);
            font-size: 26px;
            letter-spacing: 4px;
            color: var(--text);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s var(--ease);
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-size: 12px;
            font-weight: 600;
            font-family: var(--font-body);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            border-radius: var(--radius-pill);
            transition: all 0.35s var(--ease);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(44, 74, 62, 0.3);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--white);
        }

        .btn-accent:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 123, 74, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1.5px solid var(--text);
        }

        .btn-outline:hover {
            background: var(--text);
            color: var(--white);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.6);
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--text);
        }

        .btn-sm {
            padding: 10px 22px;
            font-size: 11px;
        }

        .btn-icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ============ COMPACT INTRO ============ */
        .intro-section {
            background: var(--primary);
            color: var(--white);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(196, 123, 74, 0.12);
            pointer-events: none;
        }

        .intro-inner {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 60px;
        }

        .intro-left .eyebrow {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-light);
            font-weight: 600;
            display: block;
            margin-bottom: 18px;
        }

        .intro-left h1 {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 20px;
        }

        .intro-left p {
            font-size: 15px;
            font-weight: 300;
            color: rgba(255,255,255,0.72);
            max-width: 500px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .intro-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .intro-stats {
            display: flex;
            flex-direction: column;
            gap: 28px;
            padding-left: 60px;
            border-left: 1px solid rgba(255,255,255,0.12);
        }

        .intro-stat-num {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 400;
            color: var(--white);
            line-height: 1;
        }

        .intro-stat-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.55);
            margin-top: 4px;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .intro-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .intro-left h1 { font-size: 32px; }
            .intro-stats {
                flex-direction: row;
                border-left: none;
                padding-left: 0;
                border-top: 1px solid rgba(255,255,255,0.12);
                padding-top: 28px;
                gap: 30px;
            }
            .intro-stat-num { font-size: 32px; }
        }

        /* ============ TRUST BAR ============ */
        .trust-bar {
            background: var(--white);
            padding: 25px 0;
            border-bottom: 1px solid var(--border);
        }

        .trust-inner {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text);
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-alt);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 1.5;
        }

        /* ============ SECTION HEADERS ============ */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-eyebrow {
            display: inline-block;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 300;
            line-height: 1.15;
            color: var(--text);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            max-width: 550px;
            margin: 20px auto 0;
            font-weight: 300;
        }

        /* ============ PRODUCTS SECTION ============ */
        .products-section {
            padding: 100px 0;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            gap: 5px;
        }

        .filter-pill {
            background: transparent;
            border: 1.5px solid var(--border);
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 500;
            padding: 12px 30px;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: all 0.3s var(--ease);
            color: var(--text-light);
        }

        .filter-pill:hover {
            border-color: var(--text);
            color: var(--text);
        }

        .filter-pill.active {
            background: var(--text);
            color: var(--white);
            border-color: var(--text);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            transition: opacity 0.4s;
            overflow: visible;
        }

        /* ============ PRODUCT CARD ============ */
        .product-card {
            position: relative;
            cursor: pointer;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--card);
            box-shadow: var(--shadow);
            transition: all 0.45s var(--ease);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: 6px;
            z-index: 3;
        }

        .product-badge.sale {
            background: #C0392B;
        }

        .product-badge.new {
            background: var(--accent);
        }

        .product-badge.stock {
            background: var(--text);
        }

        .product-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            opacity: 0;
            transform: translateY(-5px);
            transition: all 0.3s var(--ease);
        }

        .product-card:hover .product-wishlist {
            opacity: 1;
            transform: translateY(0);
        }

        .product-wishlist svg {
            width: 18px;
            height: 18px;
            stroke: var(--text);
            fill: none;
            stroke-width: 2;
        }

        .product-wishlist.liked svg {
            fill: #C0392B;
            stroke: #C0392B;
        }

        .product-img-wrap {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            background: #f0ece5;
        }

        .product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.7s var(--ease);
        }

        .product-img-wrap .img-hover {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        .product-card:hover .img-main {
            transform: scale(1.08);
        }

        .product-card:hover .img-hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .product-card:hover .img-main {
            opacity: 0;
        }

        .quick-view {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
            color: var(--white);
            text-align: center;
            padding: 14px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transform: translateY(100%);
            transition: transform 0.35s var(--ease);
        }

        .product-card:hover .quick-view {
            transform: translateY(0);
        }

        .product-body {
            padding: 22px 22px 25px;
        }

        .product-cat {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        .product-name {
            font-size: 17px;
            font-weight: 500;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .product-spec {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .product-pricing {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            font-family: var(--font-display);
        }

        .product-price-old {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: line-through;
        }

        .product-installments {
            font-size: 11px;
            color: var(--primary);
            font-weight: 600;
        }

        /* ============ INSPIRATION / EDITORIAL ============ */
        .editorial-section {
            position: relative;
            padding: 120px 0;
            background: var(--primary);
            color: var(--white);
            overflow: hidden;
        }

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

        .editorial-text .section-eyebrow {
            color: var(--accent-light);
        }

        .editorial-text h2 {
            font-family: var(--font-display);
            font-size: 52px;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--white);
        }

        .editorial-text p {
            font-size: 16px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .editorial-img-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }

        .editorial-img-wrap img {
            width: 100%;
            height: auto;
        }

        /* ============ FEATURES / SERVICES (Cards) ============ */
        .features-section {
            padding: 100px 0;
            background: var(--white);
        }

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

        .feature-card {
            padding: 45px 30px;
            background: var(--bg);
            border-radius: var(--radius);
            text-align: center;
            transition: all 0.4s var(--ease);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--border);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--support);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s var(--ease);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
        }

        .feature-card:hover .feature-icon svg {
            stroke: var(--white);
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.4s;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ============ STORYTELLING / METRICS ============ */
        .story-section {
            padding: 120px 0;
            background: var(--bg-alt);
        }

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

        .story-img {
            border-radius: var(--radius);
            overflow: hidden;
        }

        .story-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .story-text .section-eyebrow {
            text-align: left;
        }

        .story-text h2 {
            font-family: var(--font-display);
            font-size: 44px;
            font-weight: 300;
            margin-bottom: 25px;
            line-height: 1.15;
            text-align: left;
        }

        .story-text p {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .metrics-row {
            display: flex;
            gap: 50px;
        }

        .metric {
            text-align: left;
        }

        .metric-num {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 400;
            color: var(--primary);
            line-height: 1;
        }

        .metric-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            margin-top: 5px;
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials-section {
            padding: 100px 0;
        }

        .testimonial-carousel {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .testimonial-slide {
            display: none;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeUp 0.6s ease;
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 300;
            font-style: italic;
            line-height: 1.5;
            color: var(--text);
            margin-bottom: 30px;
        }

        .testimonial-author {
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-role {
            font-size: 13px;
            color: var(--text-light);
        }

        .testimonial-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 40px;
        }

        .test-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .test-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-q {
            padding: 25px 0;
            font-size: 18px;
            font-weight: 400;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .faq-q:hover {
            color: var(--primary);
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
            background: var(--primary);
            color: var(--white);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s var(--ease), padding 0.4s;
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            padding: 0 0;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            padding-bottom: 25px;
        }

        /* ============ CONTACT / CPQ FORM ============ */
        .contact-section {
            padding: 100px 0;
            background: var(--bg);
        }

        .cpq-card {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
        }

        .cpq-visual {
            background: var(--primary);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }

        .cpq-visual h3 {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 300;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cpq-visual p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .cpq-visual .metric-num {
            color: var(--support);
            font-size: 42px;
        }

        .cpq-form-body {
            padding: 50px;
        }

        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

        .progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }

        .step-ind {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
            color: var(--text-light);
            transition: all 0.3s;
        }

        .step-ind.active {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }

        .step-ind.completed {
            border-color: var(--primary);
            color: var(--primary);
        }

        .form-step {
            display: none;
            animation: fadeUp 0.5s ease;
        }

        .form-step.active-step {
            display: block;
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }

        .option-card {
            border: 1.5px solid var(--border);
            padding: 20px 15px;
            text-align: center;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: all 0.3s var(--ease);
            font-size: 14px;
            font-weight: 500;
        }

        .option-card:hover {
            border-color: var(--primary);
        }

        .option-card.selected {
            border-color: var(--primary);
            background: rgba(44, 74, 62, 0.05);
        }

        .form-input {
            width: 100%;
            padding: 15px 0;
            border: none;
            border-bottom: 1.5px solid var(--border);
            font-family: var(--font-body);
            font-size: 15px;
            background: transparent;
            outline: none;
            transition: border-color 0.3s;
            margin-bottom: 20px;
        }

        .form-input:focus {
            border-bottom-color: var(--primary);
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row>* {
            flex: 1;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid var(--border);
        }

        /* ============ FOOTER ============ */
        .footer-value {
            background: var(--accent);
            color: var(--white);
            padding: 50px 0;
        }

        .fv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .fv-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .fv-item p {
            font-size: 13px;
            opacity: 0.9;
        }

        footer {
            background: #111;
            color: var(--white);
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .foo-logo {
            font-family: var(--font-logo);
            font-size: 24px;
            letter-spacing: 3px;
            margin-bottom: 20px;
            color: var(--support);
        }

        .foo-desc {
            color: #777;
            font-size: 14px;
            max-width: 300px;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            border-color: var(--accent);
            background: var(--accent);
        }

        .social-links a svg {
            width: 18px;
            height: 18px;
            fill: #999;
        }

        .social-links a:hover svg {
            fill: var(--white);
        }

        .foo-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--support);
            font-weight: 600;
        }

        .foo-links a {
            display: block;
            color: #888;
            font-size: 14px;
            margin-bottom: 14px;
            transition: color 0.3s;
        }

        .foo-links a:hover {
            color: var(--white);
        }

        .newsletter-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 12px 0;
            color: #fff;
            font-family: var(--font-body);
            font-size: 14px;
            margin-bottom: 15px;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #555;
            font-size: 12px;
        }

        .footer-bottom a {
            color: #555;
            margin-left: 25px;
            transition: color 0.3s;
        }

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

        /* ============ WHATSAPP FLOAT ============ */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s var(--ease);
        }

        .wa-float:hover {
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
        }

        .wa-float svg {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        .wa-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            color: var(--text);
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .wa-float:hover .wa-tooltip {
            opacity: 1;
        }

        /* ============ COLOR PICKER ============ */
        .modal-colors {
            margin-bottom: 22px;
        }

        .modal-color-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }

        .modal-color-label span:last-child {
            font-weight: 600;
            color: var(--text);
            text-transform: none;
            letter-spacing: 0;
        }

        .color-swatches {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .color-swatch {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.25s var(--ease);
            position: relative;
        }

        .color-swatch:hover {
            transform: scale(1.15);
        }

        .color-swatch.active {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
        }

        /* ============ MODAL DIMENSIONS ============ */
        .modal-dim-section {
            margin-bottom: 22px;
        }

        .modal-dim-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            margin-bottom: 10px;
            display: block;
        }

        .modal-dim-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .modal-dim-chip {
            padding: 7px 14px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s var(--ease);
            background: var(--bg);
        }

        .modal-dim-chip:hover,
        .modal-dim-chip.active {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }

        /* ============ PRODUCT MODAL ============ */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease);
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-card {
            background: var(--white);
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            border-radius: var(--radius);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            transform: scale(0.9) translateY(30px);
            transition: transform 0.4s var(--ease-bounce);
        }

        .modal-overlay.open .modal-card {
            transform: scale(1) translateY(0);
        }

        .modal-gallery {
            position: relative;
            background: var(--bg-alt);
        }

        .modal-gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 500px;
        }

        .modal-gallery-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .modal-gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
        }

        .modal-gallery-dot.active {
            background: var(--white);
        }

        .modal-info {
            padding: 50px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            border: none;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--text);
            color: var(--white);
        }

        .modal-cat {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .modal-desc {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .modal-price-row {
            display: flex;
            align-items: baseline;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .modal-price {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 500;
            color: var(--text);
        }

        .modal-installment {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
        }

        .modal-specs {
            margin-bottom: 25px;
        }

        .modal-spec-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 14px;
        }

        .modal-spec-label {
            color: var(--text-light);
        }

        .modal-spec-value {
            font-weight: 500;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
            padding-top: 25px;
        }

        .modal-actions .btn {
            width: 100%;
            padding: 16px 20px;
            font-size: 14px;
            height: auto;
            min-height: 50px;
            border-radius: var(--radius-pill);
            line-height: 1.4;
        }

        /* ============ RESPONSIVE ============ */
        /* ============ HAMBURGER MENU ============ */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 200;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s;
            display: block;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(248, 246, 241, 0.98);
            backdrop-filter: blur(20px);
            z-index: 180;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 20px;
            font-weight: 400;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        .mobile-menu-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text);
        }

        /* ============ TABLET: 1100px ============ */
        @media (max-width: 1100px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

        /* ============ TABLET SMALL: 900px ============ */
        @media (max-width: 900px) {

            .editorial-grid,
            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cpq-card {
                grid-template-columns: 1fr;
            }

            .cpq-visual {
                display: none;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

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

            .modal-card {
                grid-template-columns: 1fr;
                max-height: 95vh;
                overflow-y: auto;
            }

            .modal-gallery img {
                min-height: 250px;
                max-height: 300px;
            }

            .modal-info {
                padding: 30px 25px;
            }

            .modal-title {
                font-size: 26px;
            }

            .modal-price {
                font-size: 28px;
            }

            .hero h1 {
                font-size: 52px;
            }

            .section-title {
                font-size: 38px;
            }

            .editorial-text h2 {
                font-size: 38px;
            }

            .story-text h2 {
                font-size: 36px;
            }

            .editorial-section {
                padding: 80px 0;
            }

            .features-section,
            .products-section,
            .testimonials-section,
            .faq-section,
            .contact-section {
                padding: 70px 0;
            }

            .story-section {
                padding: 80px 0;
            }
        }

        /* ============ MOBILE: 768px ============ */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-inner {
                height: 60px;
            }

            .logo {
                font-size: 20px;
                letter-spacing: 2px;
            }

            .nav-right .btn {
                padding: 8px 16px;
                font-size: 10px;
            }

            /* Utility bar hide */
            .utility-bar {
                display: none;
            }

            /* Container */
            .container {
                padding: 0 20px;
                max-width: 100%;
                overflow-x: hidden;
            }

            .hide-mobile {
                display: none !important;
            }

            .hide-desktop {
                display: inline-block !important;
            }

            /* All major sections clip overflow */
            .products-section,
            .editorial-section,
            .features-section,
            .story-section,
            .testimonials-section,
            .faq-section,
            .contact-section,
            .trust-bar,
            .footer-value,
            footer {
                overflow-x: hidden;
                max-width: 100vw;
            }

            /* Hero */
            .hero {
                min-height: 500px;
                height: 75vh;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .hero-desc {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .hero-eyebrow {
                font-size: 10px;
                letter-spacing: 2px;
                padding: 6px 18px;
                margin-bottom: 20px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            .hero-actions .btn {
                width: 100%;
                max-width: 280px;
                padding: 14px 20px;
            }

            .hero-dots {
                bottom: 25px;
            }

            .hero-dot {
                width: 10px;
                height: 10px;
            }

            /* Trust bar */
            .trust-bar {
                padding: 20px 0;
            }

            .trust-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                padding: 0 20px;
            }

            .trust-item {
                font-size: 11px;
                gap: 8px;
            }

            .trust-icon {
                width: 32px;
                height: 32px;
                flex-shrink: 0;
            }

            .trust-icon svg {
                width: 16px;
                height: 16px;
            }

            /* Section headers */
            .section-header {
                margin-bottom: 35px;
            }

            .section-title {
                font-size: 30px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .section-eyebrow {
                font-size: 10px;
                letter-spacing: 2px;
            }

            /* Filter */
            .filter-bar {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 8px;
                padding: 0 20px;
                margin-bottom: 30px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .filter-bar::-webkit-scrollbar {
                display: none;
            }

            .filter-pill {
                flex-shrink: 0;
                padding: 10px 20px;
                font-size: 12px;
                white-space: nowrap;
            }

            /* Products grid - 2 columns on mobile */
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .product-body {
                padding: 14px 14px 18px;
            }

            .product-name {
                font-size: 14px;
            }

            .product-cat {
                font-size: 9px;
                letter-spacing: 1px;
                margin-bottom: 4px;
            }

            .product-spec {
                font-size: 11px;
                margin-bottom: 10px;
            }

            .product-price {
                font-size: 18px;
            }

            .product-installments {
                font-size: 10px;
            }

            .product-badge {
                font-size: 8px;
                padding: 4px 10px;
                top: 10px;
                left: 10px;
            }

            .product-wishlist {
                width: 30px;
                height: 30px;
                top: 10px;
                right: 10px;
            }

            .product-wishlist svg {
                width: 14px;
                height: 14px;
            }

            .quick-view {
                font-size: 10px;
                padding: 10px;
            }

            .product-img-wrap {
                aspect-ratio: 1/1.1;
            }

            /* Editorial */
            .editorial-section {
                padding: 60px 0;
            }

            .editorial-text h2 {
                font-size: 30px;
                margin-bottom: 15px;
            }

            .editorial-text p {
                font-size: 14px;
                margin-bottom: 25px;
            }

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

            .editorial-img-wrap {
                margin-top: 10px;
            }

            /* Features */
            .features-section {
                padding: 60px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 25px 20px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .feature-icon {
                margin: 0 auto 5px;
                flex-shrink: 0;
                width: 50px;
                height: 50px;
            }

            .feature-card h3 {
                font-size: 16px;
                margin-bottom: 4px;
            }

            .feature-card p {
                font-size: 13px;
                max-width: 100%;
                word-wrap: break-word;
            }

            /* Story */
            .story-section {
                padding: 60px 0;
            }

            .story-grid {
                gap: 40px;
            }

            .story-img img {
                height: 300px;
            }

            .story-text h2 {
                font-size: 30px;
                text-align: center;
            }

            .story-text .section-eyebrow {
                text-align: center;
            }

            .story-text p {
                font-size: 14px;
                text-align: center;
            }

            .metrics-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                text-align: center;
            }

            .metric {
                text-align: center;
            }

            .metric-num {
                font-size: 42px;
            }

            .metric-label {
                font-size: 10px;
            }

            /* Testimonials */
            .testimonials-section {
                padding: 60px 0;
            }

            .testimonial-quote {
                font-size: 20px;
            }

            .testimonial-dots {
                margin-top: 25px;
            }

            .test-dot {
                width: 14px;
                height: 14px;
            }

            /* FAQ */
            .faq-section {
                padding: 60px 0;
            }

            .faq-q {
                font-size: 15px;
                padding: 20px 0;
            }

            .faq-toggle {
                width: 26px;
                height: 26px;
                font-size: 14px;
            }

            .faq-a {
                font-size: 13px;
            }

            /* Contact / CPQ */
            .contact-section {
                padding: 60px 0;
            }

            .cpq-form-body {
                padding: 30px 25px;
            }

            .step-title {
                font-size: 20px;
            }

            .step-desc {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .options-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .option-card {
                padding: 15px 12px;
                font-size: 13px;
            }

            .form-input {
                font-size: 14px;
                padding: 12px 0;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .form-actions {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .form-actions .btn {
                width: 100%;
            }

            .progress-bar {
                margin-bottom: 25px;
            }

            .step-ind {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }

            /* Footer value */
            .footer-value {
                padding: 40px 0;
            }

            .fv-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: left;
            }

            .fv-item {
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }

            .fv-item h4 {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .fv-item p {
                font-size: 12px;
            }

            /* Footer */
            footer {
                padding: 50px 0 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                margin-bottom: 35px;
                text-align: center;
            }

            .foo-logo {
                font-size: 20px;
            }

            .foo-desc {
                max-width: 100%;
                margin: 0 auto 15px;
                font-size: 13px;
            }

            .social-links {
                justify-content: center;
            }

            .foo-title {
                margin-bottom: 15px;
            }

            .foo-links a {
                margin-bottom: 10px;
                font-size: 13px;
            }

            .newsletter-input {
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                text-align: center;
                font-size: 11px;
            }

            .footer-bottom div {
                display: flex;
                gap: 15px;
            }

            /* WhatsApp float - smaller on mobile, offset from bottom */
            .wa-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }

            .wa-float svg {
                width: 26px;
                height: 26px;
            }

            .wa-tooltip {
                display: none;
            }

            /* Modal */
            .modal-card {
                width: 95%;
                grid-template-columns: 1fr;
                max-height: 92vh;
                overflow-y: auto;
                border-radius: 16px;
            }

            .modal-gallery img {
                min-height: 220px;
                max-height: 260px;
            }

            .modal-info {
                padding: 25px 20px;
            }

            .modal-cat {
                font-size: 10px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-desc {
                font-size: 13px;
            }

            .modal-price {
                font-size: 28px;
            }

            .modal-installment {
                font-size: 12px;
            }

            .modal-spec-row {
                font-size: 12px;
                padding: 10px 0;
            }

            .modal-actions {
                flex-direction: column;
                gap: 10px;
            }

            .modal-actions .btn {
                width: 100%;
            }

            .modal-close {
                top: 12px;
                right: 12px;
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
        }

        /* ============ VERY SMALL: 380px ============ */
        @media (max-width: 380px) {
            .hero h1 {
                font-size: 30px;
            }

            .section-title {
                font-size: 26px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-img-wrap {
                aspect-ratio: 4/5;
            }

            .product-name {
                font-size: 16px;
            }

            .product-price {
                font-size: 20px;
            }

            .trust-inner {
                grid-template-columns: 1fr;
            }

            .editorial-text h2 {
                font-size: 26px;
            }

            .story-text h2 {
                font-size: 26px;
            }

            .metric-num {
                font-size: 36px;
            }

            .testimonial-quote {
                font-size: 18px;
            }
        }

        /* ============ PREMIUM ANIMATIONS ============ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.92);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(196, 123, 74, 0.4);
            }

            50% {
                box-shadow: 0 0 20px 5px rgba(196, 123, 74, 0.15);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes counter-grow {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        /* Scroll Reveal Classes — transform only, content always visible */
        .reveal {
            transform: translateY(20px);
            transition: transform 0.8s var(--ease-smooth);
        }

        .reveal.fade-left {
            transform: translateX(-20px);
        }

        .reveal.fade-right {
            transform: translateX(20px);
        }

        .reveal.scale-in {
            transform: scale(0.97);
        }

        .reveal.visible {
            transform: translateY(0) translateX(0) scale(1);
        }

        /* Stagger — transform only, content always visible */
        .stagger-children>* {
            transition: transform 0.5s var(--ease-smooth);
        }

        .stagger-children.visible>* {
            transform: none;
        }

        /* Stagger delays for first 24 items (80ms each, capped at 600ms) */
        .stagger-children.visible>*:nth-child(1) {
            transition-delay: 0ms;
        }

        .stagger-children.visible>*:nth-child(2) {
            transition-delay: 60ms;
        }

        .stagger-children.visible>*:nth-child(3) {
            transition-delay: 120ms;
        }

        .stagger-children.visible>*:nth-child(4) {
            transition-delay: 180ms;
        }

        .stagger-children.visible>*:nth-child(5) {
            transition-delay: 240ms;
        }

        .stagger-children.visible>*:nth-child(6) {
            transition-delay: 300ms;
        }

        .stagger-children.visible>*:nth-child(7) {
            transition-delay: 360ms;
        }

        .stagger-children.visible>*:nth-child(8) {
            transition-delay: 400ms;
        }

        .stagger-children.visible>*:nth-child(9) {
            transition-delay: 440ms;
        }

        .stagger-children.visible>*:nth-child(10) {
            transition-delay: 480ms;
        }

        .stagger-children.visible>*:nth-child(11) {
            transition-delay: 500ms;
        }

        .stagger-children.visible>*:nth-child(12) {
            transition-delay: 520ms;
        }

        .stagger-children.visible>*:nth-child(n+13) {
            transition-delay: 540ms;
        }

        /* 3D Tilt on product cards */
        .product-card {
            perspective: 800px;
        }

        .product-card:hover {
            transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
        }

        /* ============ MARQUEE UTILITY BAR ============ */
        .utility-bar {
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marquee 25s linear infinite;
            white-space: nowrap;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 40px;
            flex-shrink: 0;
        }

        .marquee-divider {
            color: var(--accent-light);
            padding: 0 5px;
        }

        /* ============ BENTO BOX CATEGORIES ============ */
        .bento-section {
            padding: 80px 0;
            background: var(--white);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 250px 250px;
            gap: 20px;
        }

        .bento-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s var(--ease);
        }

        .bento-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .bento-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease);
        }

        .bento-card:hover img {
            transform: scale(1.08);
        }

        .bento-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
            transition: opacity 0.4s;
        }

        .bento-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            z-index: 2;
            color: var(--white);
        }

        .bento-label h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .bento-label span {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
        }

        .bento-card.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .bento-card.wide {
            grid-column: span 2;
        }

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

            .bento-card.large {
                grid-column: span 2;
                grid-row: span 1;
            }

            .bento-card.wide {
                grid-column: span 1;
            }

            .bento-label h3 {
                font-size: 18px;
            }

            .bento-label {
                padding: 15px;
            }

            .bento-section {
                padding: 50px 0;
            }
        }

        /* ============ ENHANCED CTA BUTTONS ============ */
        .btn-primary {
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-accent {
            position: relative;
            overflow: hidden;
        }

        .btn-accent::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-accent:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Animated counter underline */
        .metric-num {
            position: relative;
            display: inline-block;
        }

        .metric-num::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.8s var(--ease-smooth);
        }

        .metric.visible .metric-num::after {
            width: 40px;
        }

        /* Feature card shimmer on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
            z-index: 1;
        }

        .feature-card {
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover::before {
            left: 100%;
        }