
        :root {
            --primary-color: #149FD6;
            --secondary-color: #2EB8E5;
            --dark-blue: #0B4A66;
            --text-gray: #7C979E;
            --light-gray: #f8fafc;
            --white: #ffffff;
            --success-green: #10B981;
            --warning-orange: #F59E0B;
            --error-red: #EF4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .pricing-hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom;
            background-size: cover;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Billing Toggle */
        .billing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .billing-toggle {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .toggle-label {
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .toggle-label.active {
            color: #FFD700;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-switch::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active::before {
            transform: translateX(30px);
        }

        .toggle-switch.active {
            background: var(--secondary-color);
        }

        .trial-banner {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .trial-banner h2 {
            font-size: 1.8rem;
            margin: 0;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
            justify-items: center;
            padding-top: 30px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: fit-content;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
            position: relative;
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 10px 28px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(20, 159, 214, 0.3);
            white-space: nowrap;
            z-index: 10;
        }

        /* Pricing Badge (Orange) - Perfectly Centered */
        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #F59E0B, #F97316);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
            white-space: nowrap;
            z-index: 10;
            text-align: center;
            display: inline-block;
            margin: 0 auto;
            width: fit-content;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .plan-description {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 30px;
        }

        .price-from {
            font-size: 14px;
            color: var(--text-gray);
            margin-right: 5px;
        }

        .price-currency {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .price-period {
            font-size: 1.1rem;
            color: var(--text-gray);
        }

        .pricing-features {
            margin-bottom: 40px;
        }

        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
            line-height: 1.5;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--success-green);
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }



        /* Feature Comparison */
        .feature-comparison {
            padding: 80px 0;
            background: white;
        }

        .comparison-table-container {
            overflow-x: auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 14px;
        }

        .comparison-table th {
            background: var(--dark-blue);
            color: white;
            font-weight: 600;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .comparison-table th:first-child {
            min-width: 250px;
        }

        .comparison-table tr:hover {
            background: var(--light-gray);
        }

        .comparison-table td:first-child {
            font-weight: 500;
            color: var(--dark-blue);
        }

        .comparison-table .check {
            color: var(--success-green);
            font-weight: bold;
        }

        .comparison-table .cross {
            color: var(--error-red);
            font-weight: bold;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-blue);
            transition: all 0.3s ease;
            background: white;
        }

        .faq-question:hover {
            background: var(--light-gray);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 0 30px 25px;
            max-height: 1000px;
        }

        .faq-answer p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .faq-answer ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .faq-answer li {
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            min-width: 200px;
            width: auto;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Google Cloud Badge */
        .google-cloud-badge {
            text-align: center;
            margin: 40px 0;
        }

        .google-cloud-badge img {
            max-width: 200px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .google-cloud-badge img:hover {
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .billing-toggle-container {
                flex-direction: column;
                gap: 15px;
            }

            .billing-toggle {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 15px 10px;
                font-size: 13px;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .pricing-card {
                padding: 30px 20px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }
        }

        /* Loading States */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* See More Button */
        .see-more-container {
            text-align: center;
            margin: 20px 0;
        }

        .see-more-btn {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .see-more-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .see-more-icon {
            transition: transform 0.3s ease;
        }

        .see-more-btn.expanded .see-more-icon {
            transform: rotate(180deg);
        }

        /* Focus States */
        .btn:focus,
        .toggle-switch:focus,
        .faq-question:focus,
        .see-more-btn:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }
