        @font-face {
            font-family: 'GT Proelium';
            src: url('GTProelium.otf') format('opentype');
            font-weight: 600;
            font-style: normal;
        }
        @font-face {
            font-family: 'Sora';
            src: url('Sora-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }
        @font-face {
            font-family: 'Sora';
            src: url('Sora-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
        }
        @font-face {
            font-family: 'Sora';
            src: url('Sora-ExtraBold.ttf') format('truetype');
            font-weight: 800;
            font-style: normal;
        }
        @font-face {
            font-family: 'GT Proelium';
            src: url('GTProelium.otf') format('opentype');
            font-weight: 600;
            font-style: normal;
        }

        /* GT Proelium letter spacing */
        [style*="font-family: 'GT Proelium'"],
        [style*='font-family: "GT Proelium"'],
        .hero-title,
        .what-label,
        .what-title,
        .winemaker-text h2,
        .market-data-title,
        .market-data-subtitle,
        .options-module-title,
        .option-card-title,
        .pricing-left,
        .pricing-right,
        .form-pretitle,
        .form-title,
        .footer-title {
            letter-spacing: 0.5px;
        }

        :root {
            --primary-red: #E71C46;
            --dark: #2F2828;
            --white: #ffffff;
            --light-gray: #f8f8f8;
            --text-gray: #333333;
        }

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

        body {
            font-family: 'Sora', sans-serif;
            color: var(--text-gray);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'GT Proelium', sans-serif;
            font-weight: normal;
        }

        /* Sticky Navbar */
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease;
        }

        .sticky-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 1.5rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .sticky-nav-logo img {
            height: 27px;
            width: auto;
            display: block;
        }

        .sticky-nav-btn {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-red);
            text-decoration: none;
            border: 2px solid var(--primary-red);
            padding: 8px 20px;
            transition: all 0.3s ease;
        }

        .sticky-nav-btn:hover {
            background: var(--primary-red);
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            background: var(--white);
            padding: 1.5rem 1.5rem 0;
            padding-top: 72px;
            text-align: center;
        }

        .hero-inner {
            display: flex;
            flex-direction: column;
        }

        .hero-left {
            order: 1;
        }

        .hero-right {
            order: 2;
            margin-top: 2rem;
        }

        .hero-photo {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .logo-container {
            margin-bottom: 3rem;
            text-align: center;
        }

        .logo-container img {
            width: 100%;
            max-width: 180px;
            height: auto;
        }

        .hero-title {
            font-family: 'Sora', sans-serif;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
            text-align: left;
            color: var(--dark);
            text-transform: none;
        }

        .hero-title .line1,
        .hero-title .line2 {
            display: block;
            color: var(--dark);
            font-size: 0.5em;
            font-weight: 700;
            line-height: 1.4;
        }

        .hero-title .line3 {
            display: block;
            color: var(--primary-red);
            font-weight: 700;
        }

        .hero-subtitle {
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 0.8rem;
            text-align: left;
            color: var(--text-gray);
        }

        .hero-subtitle strong {
            font-weight: 700;
            color: var(--dark);
        }

        .hero-ctas {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .cta-primary {
            display: block;
            width: 100%;
            max-width: 100%;
            height: 48px;
            background: var(--primary-red);
            color: var(--white);
            padding: 0;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 400;
            text-decoration: none;
            text-align: center;
            line-height: 48px;
            margin: 0;
            transition: all 0.3s ease;
            border: none;
        }

        .cta-primary:hover {
            background: #c91647;
            transform: translateY(-2px);
        }

        .cta-secondary {
            display: block;
            width: 100%;
            max-width: 100%;
            height: 48px;
            background: var(--white);
            color: var(--primary-red);
            padding: 0;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 400;
            text-decoration: none;
            text-align: center;
            line-height: 44px;
            margin: 0;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-red);
        }

        .cta-secondary:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Claim Section */
        .claim-section {
            background: var(--white);
            padding: 2.5rem 1.5rem;
            text-align: center;
        }

        .claim-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 64px;
            font-weight: 700;
            line-height: 70px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 0;
        }

        .claim-line1 {
            color: var(--dark);
        }

        .claim-line2 {
            color: var(--primary-red);
        }

        /* Video Section */
        .video-section {
            width: 100%;
            padding: 0;
            margin-bottom: 0;
            background: var(--white);
        }

        .video-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Hide native controls on iOS */
        .video-container video::-webkit-media-controls {
            display: none !important;
        }

        .video-container video::-webkit-media-controls-panel {
            display: none !important;
        }

        .video-container video::-webkit-media-controls-start-playback-button {
            display: none !important;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: none;
            border: none;
            cursor: pointer;
            z-index: 5;
            padding: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .video-play-btn img {
            width: 64px;
            height: 64px;
            display: block;
        }

        .video-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-btn.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .video-container.playing {
            cursor: default;
        }

        /* Pain Points Section */
        .pain-points-section {
            padding: 3rem 1.5rem;
            background: var(--white);
            overflow: hidden;
        }

        .pain-points-inner {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pain-points-visual {
            order: 1;
        }

        .pain-points-montage {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0;
        }

        .pain-points-montage.animated {
            animation: slideInPhoto 1s ease-out both;
        }

        .pain-points-content {
            order: 2;
            text-align: left;
        }

        .pain-points-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.5px;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .pain-points-title .highlight-red {
            color: var(--primary-red);
        }

        .pain-points-questions {
            margin-bottom: 1.5rem;
        }

        .pain-question {
            font-family: 'Sora', sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.5;
            color: var(--text-gray);
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .pain-question:last-child {
            border-bottom: none;
        }

        .pain-points-section .cta-primary {
            margin-top: 1.5rem;
        }

        /* What We Are Section */
        .what-section {
            padding: 3rem 1.5rem 1.5rem;
            background: var(--primary-red);
            text-align: center;
            color: var(--white);
            overflow: hidden;
            position: relative;
        }

        .what-content {
            width: 100%;
        }

        .section-label {
            font-family: 'GT Proelium', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            text-transform: none;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }

        .section-title {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 2rem;
            color: var(--white);
            font-family: 'Sora', sans-serif;
            font-weight: 400;
        }

        .section-title strong {
            font-weight: 700;
        }

        .big-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
            color: var(--dark);
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .big-title .highlight-white {
            color: var(--white);
        }

        .tablet-image {
            width: 120%;
            max-width: none;
            margin: -4rem -10% 0 0;
            position: relative;
            z-index: 10;
        }

        .tablet-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Designed For Section */
        .designed-for {
            padding: 3rem 1.5rem 1.5rem;
            background: var(--white);
            text-align: center;
        }

        /* Mobile Features Wrapper */
        .mobile-features-wrapper {
            display: block;
        }

        .mobile-features-left,
        .mobile-features-right {
            width: 100%;
        }

        .designed-for-title {
            font-family: 'Sora', sans-serif;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.3;
            color: var(--dark);
            margin: 0;
        }

        .designed-for-title .highlight {
            color: var(--primary-red);
            font-weight: 700;
        }

        /* Mobile Section */
        .mobile-section {
            padding: 2rem 0 0;
            background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--primary-red) 50%, var(--primary-red) 100%);
            position: relative;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .mobile-image img {
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Features Slider Section */
        .features-slider {
            padding: 0 1.5rem 2rem;
            background: var(--primary-red);
            overflow: hidden;
            margin-top: -1px;
        }

        .slider-container {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 1.5rem 0 0.8rem;
        }

        .slider-container::-webkit-scrollbar {
            display: none;
        }

        .slide-item {
            min-width: 100%;
            scroll-snap-align: start;
            text-align: center;
            padding: 0 1rem;
        }

        .slide-icon {
            margin-bottom: 1rem;
        }

        .slide-icon svg {
            opacity: 0.9;
        }

        .slide-title {
            font-family: 'Sora', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .slide-description {
            font-family: 'Sora', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--white);
            line-height: 1.5;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 0;
            background: transparent;
            border: 2px solid var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* Winemaker & Data Wrapper */
        .winemaker-data-wrapper {
            display: block;
            background: var(--white);
            overflow: hidden;
        }

        /* Winemaker Section */
        .winemaker-section {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .winemaker-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .winemaker-text {
            position: absolute;
            top: 25%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            z-index: 2;
        }

        .winemaker-text h2 {
            font-family: 'GT Proelium', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin: 0;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .winemaker-text .plus {
            color: var(--primary-red);
        }

        .winemaker-text .minus {
            color: var(--white);
        }

        /* Market Data Section */
        .market-data {
            padding: 2.5rem 1.5rem;
            background: var(--white);
            text-align: center;
        }

        .market-data-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            text-transform: uppercase;
            line-height: 1.3;
            margin-bottom: 0.8rem;
        }

        .market-data-subtitle {
            font-family: 'GT Proelium', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
        }

        .market-data-subtitle .datos {
            color: var(--dark);
        }

        .market-data-subtitle .year {
            color: var(--primary-red);
            font-weight: 700;
        }

        .data-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 0.8rem;
            align-items: flex-start;
        }

        .data-item {
            width: 100%;
            text-align: left;
        }

        .data-item img {
            width: 100%;
            max-width: 280px;
            height: auto;
            display: block;
        }

        .market-data-description {
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .market-data-description strong {
            font-weight: 700;
            color: var(--dark);
        }

        /* Options Module Section */
        .options-module {
            padding: 2.5rem 1.5rem;
            background: var(--white);
        }

        .options-module-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
        }

        .options-module-subtitle {
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-gray);
            text-align: center;
            text-transform: none;
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .options-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .option-card-module {
            padding: 1.5rem 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .option-card-module.red {
            background: var(--primary-red);
        }

        .option-card-module.dark {
            background: var(--dark);
        }

        .option-card-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 35px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
        }

        .option-card-module.red .option-card-title {
            color: var(--dark);
        }

        .option-card-module.red .option-card-title .highlight {
            color: var(--white);
        }

        .option-card-module.dark .option-card-title {
            color: var(--white);
        }

        .option-card-module.dark .option-card-title .highlight {
            color: var(--primary-red);
        }

        .option-card-description {
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--white);
            margin-bottom: 0.8rem;
            flex-grow: 1;
        }

        .option-card-description strong {
            font-weight: 700;
        }

        .option-card-pricing {
            display: flex;
            margin-bottom: 1.2rem;
            color: var(--white);
            text-align: left;
        }

        .pricing-col {
            flex: 1;
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .pricing-col-left {
            padding-right: 16px;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }

        .pricing-col-right {
            padding-left: 16px;
        }

        .pricing-label {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 8px;
            color: var(--white);
            min-height: 34px;
        }

        .pricing-value {
            font-family: 'GT Proelium', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            color: var(--dark);
        }

        .option-card-module.dark .pricing-value {
            color: var(--white);
        }

        .pricing-value-highlight {
            font-family: 'GT Proelium', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            display: flex;
            align-items: flex-start;
        }

        .option-card-module.red .pricing-value-highlight {
            color: var(--dark);
        }

        .option-card-module.dark .pricing-value-highlight {
            color: var(--primary-red);
        }

        .pricing-value-highlight .desde {
            font-size: 1rem;
            margin-right: 4px;
            white-space: nowrap;
            padding-top: 0.35em;
        }

        .pricing-value-highlight .percent {
            font-size: 2.8rem;
        }

        .pricing-note {
            font-family: 'Sora', sans-serif;
            font-size: 11px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 6px;
        }

        .option-card-btn {
            display: block;
            width: 100%;
            height: 54px;
            padding: 0;
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            font-weight: 400;
            text-decoration: none;
            text-align: center;
            line-height: 54px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .option-card-btn:hover {
            background: var(--white);
        }

        .option-card-module.red .option-card-btn:hover {
            color: var(--primary-red);
        }

        .option-card-module.dark .option-card-btn:hover {
            color: var(--dark);
        }

        /* How It Works Section */
        .how-it-works {
            padding: 1.5rem 1.5rem;
            background: var(--light-gray);
        }

        .how-title {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: var(--dark);
            text-align: center;
        }

        .how-subtitle {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .options-grid {
            display: grid;
            gap: 1.5rem;
        }

        .option-card {
            background: var(--white);
            padding: 1.5rem 1.5rem;
            text-align: left;
        }

        .option-number {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }

        .option-title {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .option-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 0.8rem;
        }

        .option-price {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.8rem;
            padding: 1rem;
            background: var(--light-gray);
        }

        .option-note {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-top: 1rem;
            font-style: italic;
        }

        .option-cta {
            display: block;
            width: 100%;
            background: var(--primary-red);
            color: var(--white);
            padding: 1rem;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
        }

        .option-cta:hover {
            background: #c91647;
        }

        /* Marketplace Section */
        .marketplace-section {
            padding: 1.5rem 1.5rem;
            background: var(--white);
            text-align: center;
        }

        .marketplace-image {
            max-width: 100%;
            margin-bottom: 0.8rem;
        }

        .marketplace-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .marketplace-title {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .marketplace-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 0.8rem;
        }

        /* Features Section */
        .features-section {
            padding: 1.5rem 1.5rem;
            background: var(--light-gray);
        }

        .feature-item {
            background: var(--white);
            padding: 1.5rem 1.5rem;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
        }

        .feature-icon img {
            width: 100%;
            height: auto;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

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

        /* Stats Section */
        .stats-section {
            padding: 1.5rem 1.5rem;
            background: var(--white);
            text-align: center;
        }

        .stats-title {
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .stats-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 1.5rem 1.5rem;
            background: var(--light-gray);
            text-align: center;
        }

        .testimonial-image {
            width: 100%;
            max-width: 300px;
            margin: 0 auto 2rem;
        }

        .testimonial-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .testimonial-title {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 0.8rem;
        }

        /* Form Section */
        .form-section {
            padding: 1.5rem 1.5rem;
            background: var(--white);
        }

        .form-pretitle {
            font-family: 'GT Proelium', sans-serif;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 0.3rem;
            color: var(--primary-red);
            text-transform: uppercase;
            font-weight: 700;
        }

        .form-title {
            font-family: 'GT Proelium', sans-serif;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 0.8rem;
            color: var(--dark);
            text-transform: uppercase;
            font-weight: 700;
            line-height: 1.2;
        }

        .form-title .highlight-red {
            color: var(--primary-red);
        }

        .form-description {
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            line-height: 1.6;
            text-align: center;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .form-description-bold {
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            line-height: 1.6;
            text-align: center;
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .form-container {
            max-width: 450px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 0.8rem;
        }

        .form-group label {
            display: none;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            font-size: 0.9rem;
            font-family: 'Sora', sans-serif;
            border: 1px solid #ccc;
            background: var(--white);
            transition: border-color 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }

        .checkbox-group input[type="checkbox"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            min-width: 18px;
            margin-top: 2px;
            flex-shrink: 0;
            border: 2px solid #ccc;
            border-radius: 3px;
            background: var(--white);
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
        }

        .checkbox-group input[type="checkbox"]:checked {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }

        .checkbox-group input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 1px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checkbox-group label {
            font-size: 0.85rem;
            line-height: 1.5;
            color: var(--text-gray);
        }

        .terms-link {
            color: var(--primary-red);
            text-decoration: underline;
        }

        .terms-link:hover {
            color: #c91647;
        }

        .form-submit {
            width: 100%;
            height: 54px;
            background: var(--primary-red);
            color: var(--white);
            padding: 0;
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 54px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: #c91647;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: url('fondo-footer.jpg') center/cover;
            padding: 2.5rem 1.5rem;
            text-align: center;
            position: relative;
            color: var(--white);
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            width: 180px;
            margin: 0 auto 0.8rem;
        }

        .footer-logo img {
            width: 100%;
            height: auto;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .footer-social a {
            color: var(--white);
            font-size: 2rem;
            transition: opacity 0.3s ease;
        }

        .footer-social a:hover {
            opacity: 0.7;
        }

        .footer-social svg {
            width: 30px;
            height: 30px;
            fill: var(--white);
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
            margin-bottom: 1.2rem;
        }

        .footer-legal a {
            font-family: 'Sora', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--white);
        }

        .footer-text {
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            margin-bottom: 0;
            color: var(--white);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .sticky-nav-inner {
                padding: 14px 3rem;
            }

            .sticky-nav-logo img {
                height: 36px;
            }

            .sticky-nav-btn {
                font-size: 14px;
                padding: 7px 24px;
            }

            .hero {
                padding: 4rem 3rem 0;
                padding-top: 80px;
            }

            .hero-title {
                font-size: 42px;
                line-height: 1.15;
                text-align: left;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                text-align: left;
                max-width: 700px;
            }

            .hero-ctas {
                flex-direction: row;
                gap: 1rem;
            }

            .cta-primary,
            .cta-secondary {
                width: auto;
                display: inline-block;
                padding: 0;
                line-height: 48px;
                min-width: 200px;
            }

            .cta-secondary {
                line-height: 44px;
            }

            .hero-photo {
                max-height: 500px;
                object-fit: cover;
            }

            .claim-section {
                padding: 3rem;
            }

            .claim-title {
                font-size: 5rem;
                line-height: 5.2rem;
            }

            .pain-points-section {
                padding: 4rem 3rem;
            }

            .pain-points-title {
                font-size: 32px;
            }

            .pain-question {
                font-size: 16px;
            }

            .what-section {
                padding: 4rem 3rem 3rem;
                text-align: center;
            }

            .what-content {
                text-align: center;
            }

            .section-label {
                font-size: 24px;
            }

            .section-title {
                font-size: 1.2rem;
                margin-bottom: 2.5rem;
            }

            .what-section .section-title,
            .what-section .big-title {
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }

            .big-title {
                font-size: 4.5rem;
                line-height: 1.05;
            }

            .tablet-image {
                width: 85%;
                max-width: 600px;
                margin: -2rem auto 0;
            }

            .mobile-features-wrapper {
                display: block;
            }

            .designed-for {
                padding: 4rem 3rem;
            }

            .designed-for-title {
                font-size: 2rem;
            }

            .mobile-section {
                padding: 3rem 0 0;
            }

            .mobile-image {
                max-width: 400px;
            }

            .features-slider {
                padding: 0 3rem 3rem;
            }

            .winemaker-section {
                height: 500px;
            }

            .winemaker-data-wrapper {
                display: block;
            }

            .winemaker-text h2 {
                font-size: 5rem;
                line-height: 1.05;
            }

            .market-data {
                padding: 4rem 3rem;
            }

            .market-data-title {
                font-size: 2rem;
            }

            .market-data-subtitle {
                font-size: 1.5rem;
            }

            .data-items {
                flex-direction: row;
                justify-content: center;
                gap: 2rem;
                flex-wrap: wrap;
            }

            .data-item {
                width: auto;
            }

            .data-item img {
                max-width: 300px;
            }

            .options-module {
                padding: 4rem 3rem;
            }

            .options-module-title {
                font-size: 1.8rem;
            }

            .options-module-subtitle {
                font-size: 1rem;
            }

            .options-cards {
                flex-direction: row;
                max-width: 1200px;
                gap: 2rem;
                align-items: stretch;
            }

            .option-card-module {
                flex: 1;
            }

            .form-section {
                padding: 4rem 3rem;
            }

            .form-pretitle {
                font-size: 1.2rem;
            }

            .form-title {
                font-size: 2.5rem;
            }

            .form-description,
            .form-description-bold {
                font-size: 1rem;
            }

            .form-container {
                max-width: 600px;
            }

            .footer {
                padding: 3rem 3rem;
            }
        }

        @media (min-width: 1024px) {
            .sticky-nav-inner {
                padding: 14px 6rem;
            }

            .sticky-nav-logo img {
                height: 40px;
            }

            .hero {
                padding: 3rem 6rem 0;
                padding-top: 88px;
                max-width: 1600px;
                margin: 0 auto;
            }

            .hero-inner {
                flex-direction: row;
                align-items: center;
                gap: 3rem;
            }

            .hero-left {
                flex: 1;
                order: 1;
            }

            .hero-right {
                flex: 1;
                order: 2;
                margin-top: 0;
            }

            .hero-photo {
                width: 100%;
                max-height: 600px;
                object-fit: cover;
            }

            .hero-title {
                font-size: 48px;
                line-height: 1.15;
                text-align: left;
            }

            .hero-title .line1,
            .hero-title .line2 {
                display: block;
            }

            .hero-title .line3 {
                display: block;
            }

            .hero-title .line1::after {
                content: none;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                max-width: 100%;
                text-align: left;
            }

            .logo-container {
                text-align: left;
            }

            .logo-container img {
                max-width: 250px;
            }

            .cta-primary,
            .cta-secondary {
                min-width: 220px;
                height: 52px;
                line-height: 52px;
                font-size: 15px;
            }

            .cta-secondary {
                line-height: 48px;
            }

            .video-section {
                margin: 0 auto 0;
            }

            .video-play-btn img {
                width: 80px;
                height: 80px;
            }

            .claim-section {
                padding: 3.5rem 6rem;
            }

            .claim-title {
                font-size: 7rem;
                line-height: 7.2rem;
            }

            .pain-points-section {
                padding: 5rem 6rem;
            }

            .pain-points-inner {
                flex-direction: row;
                align-items: center;
                gap: 4rem;
            }

            .pain-points-visual {
                flex: 1;
                order: 1;
            }

            .pain-points-content {
                flex: 1;
                order: 2;
            }

            .pain-points-title {
                font-size: 36px;
            }

            .pain-question {
                font-size: 17px;
            }

            .what-section {
                padding: 6rem 6rem 4rem;
                text-align: center;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }

            .what-content {
                text-align: left;
                padding-right: 2rem;
            }

            .what-section .section-label {
                text-align: left;
            }

            .what-section .section-label,
            .what-section .section-title,
            .what-section .big-title {
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .what-section .section-title {
                text-align: left;
            }

            .what-section .big-title {
                text-align: left;
            }

            .section-label {
                font-size: 28px;
                margin-bottom: 1.5rem;
            }

            .section-title {
                font-size: 1.4rem;
                margin-bottom: 3rem;
            }

            .big-title {
                font-size: 6rem;
                line-height: 1;
                margin-bottom: 1.5rem;
            }

            .tablet-image {
                width: 100%;
                max-width: 100%;
                margin: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .tablet-image img {
                max-width: 600px;
                width: 100%;
            }

            .mobile-features-wrapper {
                display: grid;
                grid-template-columns: 50% 50%;
                gap: 0;
                max-width: 100%;
                margin: 0;
                min-height: 600px;
            }

            .mobile-features-left {
                background: var(--white);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 3rem 2.5rem;
                height: 100%;
                min-height: 600px;
            }

            .mobile-features-right {
                background: var(--primary-red);
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%;
                min-height: 600px;
            }

            .designed-for {
                padding: 0 0 2rem 0;
                background: transparent;
            }

            .designed-for-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .mobile-section {
                padding: 0;
                background: transparent;
            }

            .mobile-image {
                max-width: 450px;
            }

            .features-slider {
                padding: 3rem 2.5rem;
                background: transparent;
                width: 100%;
            }

            .slider-container {
                max-width: 100%;
                margin: 0 auto;
                width: 100%;
            }

            .slide-item {
                padding: 0 2rem;
            }

            .slide-title {
                font-size: 22px;
                margin-bottom: 1rem;
            }

            .slide-description {
                font-size: 20px;
                line-height: 1.6;
            }

            .slider-dots {
                margin-top: 2.5rem;
            }

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

            .winemaker-data-wrapper {
                display: grid;
                grid-template-columns: 50% 50%;
                max-width: 100%;
                margin: 0;
                gap: 0;
            }

            .winemaker-section {
                height: 100%;
                min-height: 600px;
            }

            .winemaker-text {
                top: 15%;
                transform: translate(-50%, 0);
                width: 80%;
            }

            .winemaker-text h2 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .market-data {
                padding: 4rem 3rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                height: 100%;
                min-height: 600px;
            }

            .market-data-title {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            .market-data-subtitle {
                font-size: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .data-items {
                flex-direction: column;
                gap: 2rem;
                margin-bottom: 2rem;
                align-items: center;
            }

            .data-item img {
                max-width: 280px;
            }

            .market-data-description {
                font-size: 1rem;
                max-width: 100%;
                margin: 0 auto 1.5rem;
                padding: 0 1rem;
            }

            .options-module {
                padding: 6rem 6rem;
                max-width: 1600px;
                margin: 0 auto;
            }

            .options-module-title {
                font-size: 2.2rem;
                margin-bottom: 0.5rem;
            }

            .options-module-subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .options-cards {
                max-width: 1400px;
                gap: 3rem;
                align-items: stretch;
            }

            .option-card-module {
                padding: 3rem 2.5rem;
            }

            .option-card-title {
                font-size: 40px;
                line-height: 1.1;
                margin-bottom: 1.5rem;
            }

            .option-card-description {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .option-card-pricing {
                margin-bottom: 1.2rem;
            }

            .pricing-value {
                font-size: 2.8rem;
            }

            .pricing-value-highlight .percent {
                font-size: 3.2rem;
            }

            .option-card-btn {
                height: 55px;
                line-height: 55px;
                font-size: 17px;
            }

            .form-section {
                padding: 6rem 6rem;
                max-width: 1600px;
                margin: 0 auto;
            }

            .form-pretitle {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }

            .form-title {
                font-size: 3rem;
                line-height: 1.2;
                margin-bottom: 2rem;
            }

            .form-description {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .form-description-bold {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .form-container {
                max-width: 700px;
            }

            .form-group input,
            .form-group textarea {
                padding: 1.1rem;
                font-size: 1rem;
            }

            .form-group textarea {
                min-height: 140px;
            }

            .checkbox-group label {
                font-size: 0.9rem;
            }

            .form-submit {
                height: 55px;
                line-height: 55px;
                font-size: 17px;
            }

            .footer {
                padding: 4rem 6rem;
                min-height: 400px;
            }

            .footer-logo {
                width: 200px;
                margin-bottom: 2rem;
            }

            .footer-social {
                gap: 2rem;
                margin-bottom: 2rem;
            }

            .footer-social svg {
                width: 35px;
                height: 35px;
            }

            .footer-text {
                font-size: 1rem;
            }
        }

        /* Extra large screens */
        @media (min-width: 1440px) {
            .hero-title {
                font-size: 56px;
                line-height: 1.15;
            }

            .hero-title .line1,
            .hero-title .line2 {
                display: block;
            }

            .hero-title .line3 {
                display: block;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-photo {
                max-height: 700px;
            }

            .claim-title {
                font-size: 8rem;
                line-height: 8.2rem;
            }

            .big-title {
                font-size: 7rem;
            }

            .winemaker-text h2 {
                font-size: 3rem;
            }

            .tablet-image img {
                max-width: 700px;
            }

            .mobile-image {
                max-width: 500px;
            }

            .market-data-title {
                font-size: 2.5rem;
            }

            .market-data-subtitle {
                font-size: 1.7rem;
            }

            .data-item img {
                max-width: 320px;
            }

            .designed-for-title {
                font-size: 2rem;
            }

            .mobile-features-wrapper {
                min-height: 700px;
            }

            .mobile-features-left,
            .mobile-features-right {
                min-height: 700px;
            }

            .winemaker-data-wrapper {
                min-height: 700px;
            }

            .winemaker-section,
            .market-data {
                min-height: 700px;
            }
        }

        /* Animations */
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Hero animations */
        .hero-logo {
            animation: fadeIn 1s ease-out;
        }

        .hero-title {
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        .hero-subtitle {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-ctas {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-photo {
            animation: slideInPhoto 1s ease-out 0.3s both;
        }

        @keyframes slideInPhoto {
            from {
                opacity: 0;
                transform: translateX(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .cta-primary {
            transition: all 0.3s ease;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(231, 28, 70, 0.3);
        }

        .cta-secondary {
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(231, 28, 70, 0.2);
        }

        /* Mobile image float effect */
        .mobile-image img {
            animation: fadeIn 1s ease-out;
        }

        /* Card hover effects */
        .option-card-module {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .option-card-module:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* Button animations */
        .option-card-btn {
            transition: all 0.3s ease;
        }

        .option-card-btn:hover {
            transform: scale(1.02);
        }

        /* Data items animation */
        .data-item {
            transition: transform 0.3s ease;
        }

        .data-item:hover {
            transform: scale(1.05);
        }

        /* Form input animations */
        .form-group input,
        .form-group select,
        .form-group textarea {
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 28, 70, 0.1);
        }

        /* Social icons animation */
        .footer-social a {
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* Slider dots animation */
        .dot {
            transition: all 0.3s ease;
        }

        .dot:hover {
            transform: scale(1.2);
        }

        /* Video fade in */
        .video-section video {
            animation: fadeIn 1.2s ease-out;
        }

        /* Tablet image animation */
        .tablet-image img {
            transition: transform 0.5s ease;
        }

        .tablet-image:hover img {
            transform: scale(1.02);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: var(--dark);
            padding: 16px 1.5rem;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-banner-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .cookie-text {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: #cccccc;
            line-height: 1.5;
            margin: 0;
            text-align: center;
        }

        .cookie-link {
            color: var(--white);
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-link:hover {
            color: var(--primary-red);
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

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

        .cookie-btn-accept:hover {
            background: #c91647;
        }

        .cookie-btn-reject {
            background: transparent;
            color: #cccccc;
            border: 1px solid #666;
        }

        .cookie-btn-reject:hover {
            border-color: var(--white);
            color: var(--white);
        }

        .cookie-btn-config {
            background: transparent;
            color: #cccccc;
            border: 1px solid #666;
        }

        .cookie-btn-config:hover {
            border-color: var(--white);
            color: var(--white);
        }

        /* Cookie Config Panel */
        .cookie-config-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .cookie-config-overlay.visible {
            display: flex;
        }

        .cookie-config-panel {
            background: var(--white);
            width: 100%;
            max-width: 520px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }

        .cookie-config-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid #eee;
        }

        .cookie-config-title {
            font-family: 'Sora', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin: 0;
        }

        .cookie-config-close {
            background: none;
            border: none;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .cookie-config-close:hover {
            color: var(--dark);
        }

        .cookie-config-body {
            padding: 8px 24px;
        }

        .cookie-config-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .cookie-config-item:last-child {
            border-bottom: none;
        }

        .cookie-config-info h4 {
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin: 0 0 4px;
        }

        .cookie-config-info p {
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.4;
        }

        .cookie-toggle {
            position: relative;
            width: 44px;
            min-width: 44px;
            height: 24px;
            cursor: pointer;
        }

        .cookie-toggle.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-toggle-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ccc;
            border-radius: 24px;
            transition: 0.3s;
        }

        .cookie-toggle-slider::before {
            content: '';
            position: absolute;
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .cookie-toggle input:checked + .cookie-toggle-slider {
            background: var(--primary-red);
        }

        .cookie-toggle input:checked + .cookie-toggle-slider::before {
            transform: translateX(20px);
        }

        .cookie-config-footer {
            padding: 16px 24px;
            border-top: 1px solid #eee;
        }

        .cookie-config-footer .cookie-btn-accept {
            width: 100%;
            text-align: center;
        }

        @media (min-width: 768px) {
            .cookie-banner {
                padding: 16px 3rem;
            }

            .cookie-banner-inner {
                flex-direction: row;
                justify-content: space-between;
            }

            .cookie-text {
                text-align: left;
            }
        }

        @media (min-width: 1024px) {
            .cookie-banner {
                padding: 18px 6rem;
            }

            .cookie-text {
                font-size: 14px;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
