        :root {
            --aqua: #2DD4BF;
            --aqua-light: #5EEAD4;
            --aqua-dark: #14B8A6;
            --dark: #0F172A;
            --dark-lighter: #1E293B;
            --gray-900: #111827;
            --gray-800: #1F2937;
            --gray-700: #374151;
            --gray-600: #4B5563;
            --gray-400: #9CA3AF;
            --gray-300: #D1D5DB;
            --gray-100: #F3F4F6;
            --white: #FFFFFF;
            --gradient-aqua: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 100%);
            --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--gray-100);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: linear-gradient(145deg, var(--dark) 0%, var(--dark-lighter) 100%);
            border-radius: 24px;
            padding: 48px 40px;
            max-width: 520px;
            width: 100%;
            text-align: center;
            position: relative;
            transform: scale(0.8) translateY(30px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(45, 212, 191, 0.2);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        }

        .popup-overlay.active .popup-content {
            transform: scale(1) translateY(0);
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .popup-close svg {
            width: 18px;
            height: 18px;
            stroke: var(--gray-400);
        }

        .popup-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .popup-title span {
            color: var(--aqua);
        }

        .popup-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .popup-btn-countdown {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            background: transparent;
            border: 2px solid var(--aqua);
            border-radius: 50px;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 500;
        }

        .popup-btn-countdown .countdown-num {
            background: var(--aqua);
            color: var(--dark);
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
        }

        .popup-btn-cta {
            padding: 16px 32px;
            background: var(--gradient-aqua);
            border: none;
            border-radius: 50px;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 212, 191, 0.4);
        }

        .popup-text {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Hero logo */
        .hero-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 12px;
        }

        .hero-logo {
            display: inline-flex;
            align-items: center;
        }

        .hero-logo img {
            height: 80px;
            width: auto;
            display: block;
            margin-bottom: 20px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%), url('assets/bg-hero.jpg') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            padding: 96px 24px 80px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232DD4BF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(45, 212, 191, 0.15);
            border: 1px solid rgba(45, 212, 191, 0.3);
            border-radius: 50px;
            color: var(--aqua);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease forwards;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            max-width: 800px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-title span {
            color: var(--aqua);
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(45, 212, 191, 0.3);
            z-index: -1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--gray-300);
            max-width: 600px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease 0.6s forwards;
            opacity: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            background: var(--gradient-aqua);
            border: none;
            border-radius: 60px;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(45, 212, 191, 0.4);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 60px;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--aqua);
            color: var(--aqua);
        }

        .hero-countdown {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            animation: fadeInUp 0.8s ease 0.8s forwards;
            opacity: 0;
        }

        .countdown-label {
            color: var(--gray-400);
            font-size: 0.9rem;
        }

        .countdown-items {
            display: flex;
            gap: 12px;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            display: block;
            background: var(--aqua);
            color: var(--dark);
            padding: 8px 14px;
            border-radius: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            min-width: 50px;
        }

        .countdown-unit {
            display: block;
            color: var(--gray-400);
            font-size: 0.75rem;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 640px) {
            .hero {
                padding: 96px 18px 64px;
            }

            .hero-container {
                text-align: center;
            }

            .hero-meta {
                align-items: center;
                margin-bottom: 18px;
            }

            .hero-logo img {
                height: 120px;
                width: auto;
                display: block;
                padding-bottom: 20px;
            }

            .hero-badge {
                margin-bottom: 18px;
                justify-content: center;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 2.4rem);
                margin-bottom: 16px;
            }

            .hero-subtitle {
                margin: 0 auto 26px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-bottom: 28px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-countdown {
                width: 100%;
                justify-content: center;
                margin: 0 auto;
            }
        }

        /* Gallery Section */
        .gallery {
            padding: 80px 24px;
            background: var(--white);
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            align-items: stretch;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4 / 3;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            background: var(--gray-100);
            cursor: zoom-in;
            display: flex;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            flex: 1 1 auto;
        }

        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9998;
            padding: 24px;
        }

        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 16px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
        }

        @media (max-width: 640px) {
            .gallery {
                padding: 60px 16px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 12px;
            }
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, minmax(240px, 1fr));
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        /* Fallback para navegadores sem suporte a grid */
        @supports not (display: grid) {
            .gallery-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 16px;
            }

            .gallery-item {
                flex: 1 1 240px;
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 24px;
            background: var(--gray-100);
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(45, 212, 191, 0.1);
            border-radius: 50px;
            color: var(--aqua-dark);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .pricing-card {
            flex: 1 1 300px;
            min-width: 280px;
            max-width: 340px;
            background: var(--white);
            border-radius: 24px;
            padding: 36px;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            border-color: var(--aqua);
            background: linear-gradient(145deg, var(--white) 0%, rgba(45, 212, 191, 0.05) 100%);
        }

        .pricing-card.featured::before {
            content: 'MAIS INDICADO';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 20px;
            background: var(--gradient-aqua);
            border-radius: 50px;
            color: var(--dark);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .pricing-card-header {
            margin-bottom: 24px;
        }

        .pricing-card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .pricing-card-desc {
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        .pricing-card-price {
            margin-bottom: 24px;
        }

        .price-compare {
            display: block;
            font-size: 0.95rem;
            color: var(--aqua-dark);
            text-decoration: line-through;
            margin-bottom: 6px;
            font-weight: 600;
        }

        .price-currency {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray-600);
            vertical-align: top;
        }

        .price-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .price-cents {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-600);
        }

        .price-note {
            display: block;
            font-size: 0.85rem;
            color: var(--aqua-dark);
            margin-top: 4px;
        }

        .pricing-card-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: var(--dark);
            border: none;
            border-radius: 14px;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .pricing-card-btn:hover {
            background: var(--dark-lighter);
            transform: translateY(-2px);
        }

        .pricing-card.featured .pricing-card-btn {
            background: var(--gradient-aqua);
            color: var(--dark);
        }

        .pricing-card.featured .pricing-card-btn:hover {
            box-shadow: 0 10px 30px rgba(45, 212, 191, 0.4);
        }

        .pricing-note {
            text-align: center;
            margin-top: 40px;
            padding: 20px 24px;
            background: var(--aqua);
            border-radius: 16px;
            color: var(--dark);
        }

        .pricing-note strong {
            font-weight: 700;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 24px;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at 100% 50%, rgba(45, 212, 191, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits .section-label {
            background: rgba(45, 212, 191, 0.2);
            color: var(--aqua);
        }

        .benefits .section-title {
            color: var(--white);
        }

        .benefits .section-subtitle {
            color: var(--gray-400);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(45, 212, 191, 0.3);
            transform: translateY(-4px);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-aqua);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--dark);
        }

        .benefit-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
        }

        .benefit-text {
            font-size: 0.95rem;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* Videos Section */
        .videos {
            padding: 100px 24px;
            background: var(--white);
        }

        .videos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .videos-grid {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 60px;
        }

        .video-card {
            background: var(--gray-100);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            width: 48%;
            max-width: 560px;
        }

        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .video-thumb video,
        .video-thumb img,
        .video-thumb iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: 0;
        }

        .video-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .video-card:hover .video-play {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--aqua);
        }

        .video-play svg {
            width: 28px;
            height: 28px;
            color: var(--dark);
            margin-left: 4px;
        }

        @media (max-width: 900px) {
            .video-card {
                width: 100%;
                max-width: none;
            }
        }

        .video-info {
            padding: 24px;
        }

        .video-label {
            display: inline-block;
            padding: 6px 12px;
            background: var(--aqua);
            border-radius: 6px;
            color: var(--dark);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .video-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }

        /* Locations Section */
        .locations {
            padding: 80px 24px;
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--dark) 100%);
        }

        .locations-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .locations .section-title {
            color: var(--white);
            text-align: center;
            margin-bottom: 48px;
        }

        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .location-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .location-item:hover {
            background: rgba(45, 212, 191, 0.15);
            border-color: var(--aqua);
            transform: translateY(-2px);
        }

        .location-icon {
            width: 8px;
            height: 8px;
            background: var(--aqua);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .location-name {
            color: var(--gray-300);
            font-weight: 500;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .location-item:hover .location-name {
            color: var(--white);
        }

        /* Form Section */
        .form-section {
            padding: 100px 24px;
            background: var(--gray-100);
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-wrapper {
            background: var(--white);
            border-radius: 32px;
            padding: 48px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .form-subtitle {
            color: var(--gray-600);
        }

        .form-grid {
            display: grid;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark);
        }

        .form-input,
        .form-select {
            padding: 16px 20px;
            background: var(--gray-100);
            border: 2px solid transparent;
            border-radius: 14px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: var(--dark);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--aqua);
            background: var(--white);
        }

        .form-input::placeholder {
            color: var(--gray-400);
        }

        .form-select {
            cursor: pointer;
            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='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%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: 48px;
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: var(--gradient-aqua);
            border: none;
            border-radius: 16px;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(45, 212, 191, 0.4);
        }

        .form-disclaimer {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        .form-feedback {
            display: none;
            margin-top: 16px;
            padding: 14px 16px;
            border-radius: 12px;
            font-weight: 600;
            text-align: center;
            font-size: 0.95rem;
        }

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

        .form-feedback.success {
            background: #e7f8f3;
            border: 1px solid #34d399;
            color: #0f5132;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.18);
        }

        .form-feedback.error {
            background: #fff1f2;
            border: 1px solid #fca5a5;
            color: #991b1b;
            box-shadow: 0 6px 20px rgba(248, 113, 113, 0.18);
        }

        /* Company Section */
        .company {
            padding: 80px 24px;
            background: var(--white);
        }

        .company-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .company-text {
            font-size: 1.15rem;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .company-highlight {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--gray-100);
            border-radius: 16px;
        }

        .company-highlight svg {
            width: 24px;
            height: 24px;
            color: var(--aqua-dark);
        }

        .company-highlight span {
            font-weight: 600;
            color: var(--dark);
        }

        /* Footer */
        .footer {
            padding: 40px 24px;
            background: var(--dark);
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-icon {
            width: 48px;
            height: 48px;
            background: var(--aqua);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--white);
        }

        .footer-text {
            color: var(--gray-400);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 12px 16px;
            }

            .header-location {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .header-location-text {
                white-space: normal;
                line-height: 1.2;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .countdown-items {
                gap: 8px;
            }

            .countdown-number {
                padding: 6px 10px;
                font-size: 1rem;
                min-width: 40px;
            }

            .pricing-card {
                padding: 28px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-wrapper {
                padding: 32px 24px;
            }

            .popup-content {
                padding: 36px 24px;
            }

            .popup-buttons {
                flex-direction: column;
            }

            .popup-btn-countdown,
            .popup-btn-cta {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-location-text {
                font-size: 0.75rem;
            }

            .logo-text {
                display: none;
            }

            .hero {
                padding: 100px 16px 60px;
            }

            .hero-countdown {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }

            .pricing,
            .benefits,
            .videos,
            .form-section {
                padding: 60px 16px;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .benefits-grid {
                gap: 16px;
            }

            .benefit-card {
                padding: 24px;
            }
        }

        @media (max-width: 360px) {
            .header-location {
                padding: 8px 12px;
            }

            .header-location svg {
                display: none;
            }

            .header-location-text {
                font-size: 0.7rem;
            }
        }

        /* Animations on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating animation for decorative elements */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }
    
