@font-face {
            font-family: 'Enter the Grid';
            src: url('assets/fontes/Enter the Grid 2.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
    


        :root {
            --cyan: #00B4D8;
            --cyan-light: #48CAE4;
            --cyan-dark: #0096C7;
            --navy: #0A2540;
            --navy-light: #123456;
            --navy-dark: #061828;
            --gray-light: #F5F5F5;
            --gray: #E5E5E5;
            --gray-medium: #A0A0A0;
            --white: #FFFFFF;
            --gold: #D4AF37;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
        body {
            font-family: 'Barlow', sans-serif;
            background: var(--navy-dark);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
            max-width: 100%;
        }

        .container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px; }

        .section-title {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            letter-spacing: 2px;
            line-height: 1.05;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.25rem;
            color: var(--gray-medium);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
        }

        .accent-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
            margin-bottom: 2rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
            color: var(--white);
            padding: 18px 40px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(0, 180, 216, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--white);
            padding: 16px 36px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border: 2px solid var(--cyan);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--cyan);
            color: var(--navy);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 80px 0 80px;
            background: var(--navy-dark);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 80% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 150, 199, 0.1) 0%, transparent 40%);
        }

        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text { animation: fadeInUp 1s ease; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-logo {
            width: 160px;
            height: auto;
            display: block;
            margin-bottom: 30px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 180, 216, 0.1);
            border: 1px solid rgba(0, 180, 216, 0.3);
            padding: 8px 14px;
            border-radius: 50px;
            margin-bottom: 16px;
            font-size: 0.75rem;
            color: var(--cyan);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        .form-badge {
            display: inline-flex;
            margin-top: 6px;
        }

        .hero h1 {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: clamp(2.4rem, 4.5vw, 3.6rem);
            line-height: 1.12;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            max-width: 18ch;
        }

        .hero h1 span { color: var(--cyan); }

        .hero-description {
            font-size: 1.25rem;
            color: var(--gray-medium);
            margin-bottom: 16px;
            max-width: 520px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--gray-light);
        }

        .hero-feature svg { color: var(--cyan); flex-shrink: 0; }

        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

        .hero-cert-badges {
            display: none;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .hero-cert {
            border: 2px solid var(--cyan);
            border-radius: 12px;
            padding: 10px 14px;
            min-width: 120px;
            background: rgba(0, 180, 216, 0.08);
            text-align: center;
        }

        .hero-cert-title {
            display: block;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            color: var(--cyan);
            letter-spacing: 1px;
        }

        .hero-cert-subtitle {
            display: block;
            font-size: 0.7rem;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .product-showcase {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-glow {
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: glowPulse 4s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .product-bottle {
            position: relative;
            z-index: 2;
            width: 600px;
            max-width: 100%;
            background: none;
            border-radius: 16px;
            display: flex;
            justify-content: center;
            padding: 0;
            border: none;
            box-shadow: none;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.4s ease, filter 0.3s ease;
        }

        .product-bottle:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-8px);
            filter: drop-shadow(0 20px 40px rgba(0, 180, 216, 0.25));
        }

        .product-bottle img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
        }

        .bottle-cap {
            width: 80px;
            height: 30px;
            background: linear-gradient(180deg, var(--cyan), var(--cyan-dark));
            border-radius: 6px 6px 0 0;
            margin-bottom: 20px;
        }

        .bottle-label {
            flex: 1;
            width: 100%;
            background: linear-gradient(180deg, var(--cyan), var(--cyan-dark));
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
        }

        .bottle-brand {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 4px;
            color: var(--white);
        }

        .bottle-type {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .bottle-viscosity {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--white);
            margin-top: 10px;
        }

        .bottle-cert { display: flex; gap: 10px; margin-top: 15px; }

        .cert-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .floating-badges {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 3;
        }

        .float-badge {
            position: absolute;
            background: rgba(10, 37, 64, 0.9);
            border: 1px solid rgba(0, 180, 216, 0.3);
            padding: 12px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            animation: float 6s ease-in-out infinite;
        }

        .float-badge svg { color: var(--cyan); }
        .float-badge:nth-child(1) { top: 10%; left: -20px; }
        .float-badge:nth-child(2) { top: 25%; right: -30px; animation-delay: 2s; }
        .float-badge:nth-child(3) { bottom: 15%; left: 0; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Social Proof */
        .social-proof {
            background: var(--navy);
            padding: 60px 0;
            border-top: 1px solid rgba(0, 180, 216, 0.1);
            border-bottom: 1px solid rgba(0, 180, 216, 0.1);
        }

        .proof-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .proof-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .proof-logos { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }

        .proof-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .proof-logo:hover { opacity: 1; }

        .proof-logo-icon {
            width: 110px;
            height: 68px;
            background: rgba(0, 180, 216, 0.1);
            border: 1px solid rgba(0, 180, 216, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 4px;
        }

        .proof-logo-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .proof-logo span {
            font-size: 0.85rem;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Benefits */
        .benefits {
            padding: 120px 0;
            background: var(--navy-dark);
            position: relative;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 100% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
        }

        .benefits-header { text-align: center; margin-bottom: 80px; }
        .benefits-header .accent-line { margin: 0 auto 2rem; }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: linear-gradient(180deg, rgba(18, 52, 86, 0.5) 0%, rgba(10, 37, 64, 0.5) 100%);
            border: 1px solid rgba(0, 180, 216, 0.1);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 180, 216, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .benefit-card:hover::before { transform: scaleX(1); }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 180, 216, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--cyan);
        }

        .benefit-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .benefit-card p { color: var(--gray-medium); font-size: 1rem; line-height: 1.7; }

        /* Products */
        .products {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
        }

        .products-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 24px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .product-card {
            background: var(--navy-dark);
            border: 1px solid rgba(0, 180, 216, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--cyan);
            box-shadow: 0 20px 60px rgba(0, 180, 216, 0.2);
        }

        .product-image {
            height: 240px;
            background: linear-gradient(180deg, rgba(0, 180, 216, 0.08) 0%, rgba(10, 37, 64, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-photo {
            position: relative;
            z-index: 2;
            max-width: 80%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
        }

        .product-photo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transform: scale(1.02);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--navy);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-info { padding: 24px; }

        .product-category {
            font-size: 0.75rem;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .product-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .product-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

        .product-spec {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--gray-medium);
        }

        .product-spec svg {
            width: 14px;
            height: 14px;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .product-cta {
            width: 100%;
            background: transparent;
            border: 1px solid rgba(0, 180, 216, 0.3);
            color: var(--cyan);
            padding: 12px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-cta:hover {
            background: var(--cyan);
            color: var(--navy);
            border-color: var(--cyan);
        }

        /* Stats */
        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 100%);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-item { text-align: center; }

        .stat-number {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: 2px;
            background: linear-gradient(120deg, var(--cyan), #7ee0ff, var(--white));
            -webkit-background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            filter: drop-shadow(0 10px 30px rgba(0, 180, 216, 0.25));
        }

        .stats-animated .stat-number {
            animation: statShimmer 3s ease-in-out infinite;
        }

        @keyframes statShimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .stat-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Entrance Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            will-change: opacity, transform;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduce motion respect */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .fade-in { opacity: 1 !important; transform: none !important; }
        }

        /* Quality */
        .quality {
            padding: 120px 0;
            background: var(--navy-dark);
        }

        .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .quality-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
            border-radius: 20px;
            border: 1px solid rgba(0, 180, 216, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            position: relative;
            overflow: hidden;
        }

        .factory-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .factory-icon svg {
            width: 50px;
            height: 50px;
            color: var(--white);
        }

        .factory-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.2rem;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

.form-heading-mobile { display: none; }
.desktop-only { display: block; }

        .factory-image {
            padding: 0;
            background: none;
            border: none;
        }

        .factory-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quality-badges {
            position: static;
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 16px auto 0;
            width: 100%;
        }

        .q-badge {
            background: var(--navy);
            border: 2px solid var(--cyan);
            padding: 16px 24px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .q-badge span:first-child {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--cyan);
        }

        .q-badge span:last-child {
            font-size: 0.7rem;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quality-text h2 {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            letter-spacing: 2px;
            line-height: 1.08;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .quality-text h2 span { color: var(--cyan); }

        .quality-description {
            font-size: 1.1rem;
            color: var(--gray-medium);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .quality-list { display: flex; flex-direction: column; gap: 20px; }

        .quality-item { display: flex; align-items: flex-start; gap: 16px; }

        .quality-item-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .quality-item-icon svg {
            width: 20px;
            height: 20px;
            color: var(--cyan);
        }

        .quality-item-text h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .quality-item-text p { font-size: 0.95rem; color: var(--gray-medium); }

        /* Form Section */
        .form-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 30% 30%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 180, 216, 0.05) 0%, transparent 40%);
        }

        .form-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .form-info h2 {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            letter-spacing: 2px;
            line-height: 1.08;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .form-info h2 span { color: var(--cyan); }

.form-heading-mobile { display: none; }
        .desktop-only { display: block; }

        .form-info-description {
            font-size: 1.1rem;
            color: var(--gray-medium);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .form-benefits { display: flex; flex-direction: column; gap: 20px; }

        .form-benefit {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(0, 180, 216, 0.05);
            border: 1px solid rgba(0, 180, 216, 0.1);
            border-radius: 10px;
        }

        .form-benefit svg {
            width: 24px;
            height: 24px;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .form-benefit span { font-weight: 500; }

        .form-card {
            background: rgba(18, 52, 86, 0.5);
            border: 1px solid rgba(0, 180, 216, 0.2);
            border-radius: 24px;
            padding: 48px;
            backdrop-filter: blur(20px);
        }

        .form-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-align: center;
        }

        .form-card-subtitle {
            text-align: center;
            color: var(--gray-medium);
            margin-bottom: 32px;
            font-size: 0.95rem;
        }

        .form-group { margin-bottom: 20px; }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            color: var(--gray-light);
        }

        .form-group label .required { color: var(--cyan); }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(10, 37, 64, 0.8);
            border: 1px solid rgba(0, 180, 216, 0.2);
            border-radius: 8px;
            color: var(--white);
            font-family: 'Barlow', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-medium);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300B4D8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 18px;
            padding-right: 50px;
        }

        .form-group select option { background: var(--navy); color: var(--white); }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

        .form-submit { width: 100%; margin-top: 24px; }

        .form-disclaimer {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray-medium);
            margin-top: 20px;
        }

        .form-disclaimer a { color: var(--cyan); text-decoration: none; }

        /* Multi-step Form Styles */
        .form-progress {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(0, 180, 216, 0.1);
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 180, 216, 0.1);
            border: 2px solid rgba(0, 180, 216, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--gray-medium);
            transition: all 0.3s ease;
        }

        .progress-step span {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-medium);
            transition: all 0.3s ease;
        }

        .progress-step.active .step-number,
        .progress-step.completed .step-number {
            background: var(--cyan);
            border-color: var(--cyan);
            color: var(--white);
        }

        .progress-step.active span,
        .progress-step.completed span {
            color: var(--cyan);
        }

        .progress-step.completed .step-number {
            background: var(--cyan);
        }

        .progress-line {
            width: 40px;
            height: 2px;
            background: rgba(0, 180, 216, 0.2);
            margin: 0 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .progress-line.active {
            background: var(--cyan);
        }

        .form-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .form-step h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-align: center;
        }

        .form-step-subtitle {
            text-align: center;
            color: var(--gray-medium);
            margin-bottom: 32px;
            font-size: 0.95rem;
        }

        .option-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .option-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: rgba(10, 37, 64, 0.6);
            border: 2px solid rgba(0, 180, 216, 0.15);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .option-card:hover {
            border-color: rgba(0, 180, 216, 0.4);
            background: rgba(10, 37, 64, 0.8);
        }

        .option-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .option-card input:checked + .option-content + .option-check {
            opacity: 1;
            transform: scale(1);
        }

        .option-card:has(input:checked) {
            border-color: var(--cyan);
            background: rgba(0, 180, 216, 0.1);
        }

        .option-content {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .option-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 180, 216, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .option-icon.small {
            width: 40px;
            height: 40px;
        }

        .option-icon svg {
            width: 24px;
            height: 24px;
            color: var(--cyan);
        }

        .option-icon.small svg {
            width: 20px;
            height: 20px;
        }

        .option-content span {
            font-weight: 500;
            font-size: 1rem;
        }

        .option-check {
            width: 28px;
            height: 28px;
            background: var(--cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

        .option-check svg {
            width: 14px;
            height: 14px;
            color: var(--white);
        }

        .option-card.highlight {
            border-color: rgba(212, 175, 55, 0.4);
            background: rgba(212, 175, 55, 0.05);
        }

        .option-card.highlight:hover {
            border-color: rgba(212, 175, 55, 0.6);
        }

        .option-card.highlight:has(input:checked) {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.15);
        }

        .form-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .btn-prev {
            padding: 14px 24px;
        }

        .btn-next {
            padding: 16px 32px;
        }

        .form-fields {
            margin-bottom: 24px;
        }

        .form-group .optional {
            color: var(--gray-medium);
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 60px 20px;
            animation: fadeIn 0.5s ease;
        }

        .form-success.active {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: var(--white);
        }

        .form-success h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: var(--cyan);
        }

        .form-success p {
            color: var(--gray-medium);
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .form-progress {
                gap: 5px;
            }

            .progress-line {
                width: 20px;
            }

            .progress-step span {
                display: none;
            }

            .step-number {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }

            .option-card {
                padding: 16px 18px;
            }

            .option-content span {
                font-size: 0.9rem;
            }

            .option-icon {
                width: 40px;
                height: 40px;
            }

            .option-icon svg {
                width: 20px;
                height: 20px;
            }

            .form-nav {
                flex-direction: column;
                gap: 12px;
            }

            .form-nav .btn-secondary,
            .form-nav .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }

        /* CTA Final */
        .cta-final {
            padding: 100px 0;
            background: var(--navy-dark);
            text-align: center;
            position: relative;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
        }

        .cta-final-content { position: relative; z-index: 2; }

        .cta-final h2 {
            font-family: 'Enter the Grid', 'Bebas Neue', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            letter-spacing: 2px;
            line-height: 1.08;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .cta-final h2 span { color: var(--cyan); }

        .cta-final p {
            font-size: 1.2rem;
            color: var(--gray-medium);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

        /* Footer */
        .footer {
            background: var(--navy);
            padding: 60px 0;
            border-top: 1px solid rgba(0, 180, 216, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-logo-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-logo-img {
            width: 220px;
            max-width: 70vw;
            height: auto;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: none;
        }

        .floating-cta.visible { display: block; animation: slideUp 0.5s ease; }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .floating-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
            color: var(--white);
            padding: 18px 28px;
            border-radius: 50px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            box-shadow: 0 10px 40px rgba(0, 180, 216, 0.4);
            transition: all 0.3s ease;
        }

        .floating-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 180, 216, 0.5);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-features { justify-content: center; }
            .hero-buttons { justify-content: center; }
            .hero-description { margin-left: auto; margin-right: auto; }
            .benefits-grid { grid-template-columns: 1fr; }
            .quality-content { grid-template-columns: 1fr; }
            .form-content { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .product-showcase { height: 400px; }
            .product-bottle { width: 320px; height: auto; }
            .floating-badges { display: none; }
            .product-image { height: 260px; }
            .product-photo { max-width: 100%; }
            .quality-image { height: 380px; }
            .proof-logo-icon { width: 110px; height: 68px; }
            .quality-badges {
                position: static;
                transform: none;
                margin: 18px auto 12px;
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
                width: 100%;
                display: flex;
            }
            .q-badge { min-width: 130px; padding: 12px 16px; }
        }

        @media (max-width: 768px) {
            .header-phone { display: none; }
            .header-cta .btn-primary { padding: 12px 20px; font-size: 0.9rem; }
            .hero-text { display: flex; flex-direction: column; align-items: center; }
            .hero-logo { width: 140px; margin-bottom: 16px; }
            .hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 6vw, 2.4rem); }
            .hero-description { font-size: 1.05rem; max-width: 100%; margin-bottom: 14px; }
            .hero-features { justify-content: center; margin-bottom: 24px; }
            .hero-visual { display: none; }
            .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
            .hero { padding-top: 110px; padding-bottom: 70px; }
            .hero-cert-badges { display: flex; margin-top: 28px; }
            .hero-cert-badges { max-width: 360px; }
            .hero-cert { flex: 1 1 100px; max-width: 120px; }
            .proof-content { flex-direction: column; text-align: center; }
            .proof-logos { justify-content: center; gap: 24px; width: 100%; }
            .products-grid { grid-template-columns: 1fr; }
            .form-content { display: flex; flex-direction: column; }
            .form-row { grid-template-columns: 1fr; }
            .form-card { padding: 32px 24px; order: 1; }
            .form-info { order: 2; }
            #formBenefits { order: 3; }
            .desktop-only { display: none; }
            .form-heading-mobile { display: block; margin-bottom: 16px; }
            .footer-content { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .product-image { height: 230px; }
            .product-photo { max-width: 100%; }
            .quality-image { height: 300px; }
            .proof-logo-icon { width: 96px; height: 60px; }
            .proof-logo span { font-size: 0.9rem; }
            .stats-grid { grid-template-columns: 1fr; gap: 24px; }
            .container { padding: 0 18px; }
            .quality-badges {
                position: static;
                transform: none;
                margin-top: 16px;
                margin-bottom: 12px;
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
                width: 100%;
            }
            .q-badge { padding: 12px 16px; min-width: 120px; }
        }

        @media (max-width: 480px) {
            .hero { padding: 100px 0 60px; }
            .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
            .hero-buttons { flex-direction: column; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .hero h1 { font-size: clamp(2.2rem, 6.5vw, 2.8rem); }
            .section-title { font-size: clamp(1.9rem, 5.5vw, 2.6rem); }
            .product-showcase { height: 320px; }
            .product-bottle { width: 240px; height: auto; }
            .product-image { height: 200px; }
            .quality-image { height: 240px; }
            .proof-logo-icon { width: 86px; height: 52px; }
            .hero-description { font-size: 1rem; }
            .quality-badges { width: 100%; justify-content: center; gap: 10px; margin-bottom: 14px; }
            .q-badge { min-width: 110px; padding: 10px 12px; }
            .hero-cert { min-width: 110px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 6px; }
            .stat-item {
                border: 1px solid rgba(255, 255, 255, 0.25);
                padding: 10px 8px;
                border-radius: 10px;
            }
            .stat-number { font-size: 2.4rem; letter-spacing: 1px; }
            .stat-label { font-size: 0.85rem; letter-spacing: 1.2px; }
            .form-content { display: flex; flex-direction: column; }
            .form-info { order: 1; }
            .form-card { order: 2; }
            .desktop-only { display: none; }
            .form-heading-mobile { display: block; margin-bottom: 16px; }
        }
