﻿:root {
            --google-blue: #4285f4;
            --google-red: #ea4335;
            --google-yellow: #fbbc05;
            --google-green: #34a853;
            --google-gray: #5f6368;
            --light-bg: #f8f9fa;
            --text-color: #202124;
            --light-text: #5f6368;
            --border-color: #dadce0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Google Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--google-blue), var(--google-green));
            color: white;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
        }
        
        .tagline {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 300;
            position: relative;
            margin-bottom: 25px;
        }
        
        .google-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            position: relative;
            flex-wrap: wrap;
        }
        
        .google-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        /* Plans Section */
        .plans-section, .trials-section {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--google-blue);
            margin-bottom: 35px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--google-blue), var(--google-green));
            border-radius: 2px;
        }
        
        /* Plans Container */
        .plans-container, .trials-container {
            display: flex;
            /* flex-wrap: wrap; */
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .plan-card, .trial-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .plan-card:hover, .trial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--google-red);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .plan-card:nth-child(2) .plan-badge {
            background: var(--google-yellow);
            color: #333;
        }
        
        .plan-header, .trial-header {
            padding: 25px;
            text-align: center;
            color: white;
        }
        
        .starter-plan .plan-header {
            background: linear-gradient(135deg, var(--google-blue), #669df6);
        }
        
        .growth-plan .plan-header {
            background: linear-gradient(135deg, var(--google-green), #34a853);
        }
        
        .scale-plan .plan-header {
            background: linear-gradient(135deg, var(--google-gray), #5f6368);
        }
        
        .plan-title, .trial-title {
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .plan-price, .trial-price {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .plan-period, .trial-period {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .plan-best-for {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 20px;
            margin-top: 15px;
            font-size: 0.9rem;
            display: inline-block;
        }
        
        .plan-content, .trial-content {
            padding: 25px;
        }
        
        .plan-section, .trial-section {
            margin-bottom: 25px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--google-blue);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
            font-weight: 600;
        }
        
        .features-list {
            list-style-type: none;
        }
        
        .features-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            border-bottom: 1px dashed #eee;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--google-green);
            font-weight: bold;
        }
        
        .not-included-list li:before {
            content: '✗';
            color: var(--google-red);
        }
        
        /* Google Colors for Features */
        .search-feature:before {
            color: var(--google-blue) !important;
        }
        
        .display-feature:before {
            color: var(--google-red) !important;
        }
        
        .youtube-feature:before {
            color: var(--google-red) !important;
        }
        
        /* Important Notes */
        .important-notes {
            background-color: #fff8e1;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border-left: 6px solid var(--google-yellow);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .important-notes h3 {
            color: var(--google-yellow);
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Trial Policy Section */
        .trial-policy-intro {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 6px solid var(--google-blue);
        }
        
        .trial-policy-intro h3 {
            color: var(--google-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .trial-warning {
            background-color: #ffeaa7;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #fdcb6e;
        }
        
        .trial-warning i {
            color: #e17055;
            margin-right: 10px;
        }
        
        /* Trial Cards */
        .trial-starter .trial-header {
            background: linear-gradient(135deg, var(--google-blue), #669df6);
        }
        
        .trial-growth .trial-header {
            background: linear-gradient(135deg, var(--google-green), #34a853);
        }
        
        .trial-scale .trial-header {
            background: linear-gradient(135deg, var(--google-gray), #5f6368);
        }
        
        .trial-terms {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-top: 25px;
            border-left: 4px solid var(--google-blue);
        }
        
        .trial-terms h4 {
            color: var(--google-blue);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        /* Google Platform Icons */
        .google-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 20px 0;
        }
        
        .google-icon {
            font-size: 2.5rem;
            color: white;
            background: var(--google-blue);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-icon {
            background: var(--google-blue);
        }
        
        .display-icon {
            background: var(--google-red);
        }
        
        .youtube-icon {
            background: var(--google-red);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
            color: var(--light-text);
            border-top: 1px solid var(--border-color);
        }
        
        .company-name {
            font-size: 2rem;
            color: var(--google-blue);
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--google-blue), var(--google-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .company-tagline {
            font-size: 1.2rem;
            color: var(--google-green);
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-top: 20px;
            font-size: 0.95rem;
        }
        
        /* Controls */
.btn {
            padding: 16px 32px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 200px;
            justify-content: center;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--google-blue), var(--google-green));
            color: white;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--google-green), var(--google-blue));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
        }
        
        .btn-secondary {
            background: white;
            color: var(--google-blue);
            border: 2px solid var(--google-blue);
        }
        
        .btn-secondary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .plans-container, .trials-container {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card, .trial-card {
                width: 100%;
                max-width: 400px;
            }
.btn {
                width: 100%;
                max-width: clamp(140px, 22vw, 240px);
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .google-badges {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .plan-card, .trial-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .plan-card:nth-child(1) { animation-delay: 0.1s; }
        .plan-card:nth-child(2) { animation-delay: 0.2s; }
        .plan-card:nth-child(3) { animation-delay: 0.3s; }

.logo-img {
    width: clamp(140px, 22vw, 240px);
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.price-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #05070d, #0b1220 45%, #111827);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.price-footer a {
    color: #7dd3fc;
    font-weight: 600;
    text-decoration: none;
}

.price-footer a:hover {
    text-decoration: underline;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

