/* ===================================
   PPC AUDIT CSS v6.9 - CACHE BUSTED
   If you see this comment, the new CSS loaded successfully
   =================================== */

/* Google Ads Audit - Correct CSS */


        /* --- SOPHISTICATED B2B DESIGN SYSTEM --- */
        :root {
            /* Primary Colors */
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --audit-blue: #0052cc;
            
            /* Neutrals */
            --warm-grey: #8B8680;
            --light-bg: #F8F7F5;
            --white: #FFFFFF;
            --border-subtle: #E5E3DF;
            
            /* Status Colors */
            --success: #10b981;
            --danger: #ef4444;
            
            /* Typography */
            --font-serif: 'DM Serif Display', Georgia, serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Transitions */
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #0A1628;
            line-height: 1.7;
            background: #FFFFFF;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        p {
            color: #8B8680;
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navigation */
        .nav-bar {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid #E5E3DF;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #0A1628;
            font-style: italic;
        }

        .logo span {
            color: var(--audit-blue);
            font-weight: 600;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            border-radius: 2px;
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }

        .btn-primary {
            background: #2E5BFF;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(46, 91, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(46, 91, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--audit-blue);
            border: 2px solid var(--audit-blue);
        }

        .btn-outline:hover {
            background: #ebecf0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 120px 0 140px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 30px;
        }

        .hero h1 {
            color: #FFFFFF;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hero-note {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 20px;
        }

        .highlight {
            background: linear-gradient(120deg, rgba(46, 91, 255, 0.2) 0%, rgba(46, 91, 255, 0.2) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
        }

        /* Problem Section */
        .problem-section {
            padding: 120px 0;
            background: #FFFFFF;
        }

        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .problem-section h2 {
            margin-bottom: 25px;
        }

        .problem-intro {
            font-size: 1.1rem;
            color: #8B8680;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .pain-box {
            background: #fef2f2;
            border-left: 4px solid #ef4444;
            padding: 25px;
            border-radius: 4px;
            margin-bottom: 20px;
            transition: all var(--transition-base);
        }

        .pain-box:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .pain-box h4 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #b91c1c;
            margin-bottom: 8px;
        }

        .pain-box p {
            font-size: 1rem;
            color: #991b1b;
            margin: 0;
        }

        .visual-box {
            background: #F8F7F5;
            border: 2px dashed #E5E3DF;
            height: 450px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }

        .visual-box-content {
            color: #8B8680;
        }

        .visual-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        /* Guarantee Section */
        .guarantee-section {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .guarantee-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

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

        .guarantee-box {
            border: 2px dashed rgba(255,255,255,0.2);
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 8px;
            text-align: center;
        }

        .guarantee-section h2 {
            color: white;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .guarantee-section p {
            color: #b3bac5;
            font-size: 18px;
        }

        .guarantee-highlight {
            font-size: 1.25rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 120px 0;
            background: #F8F7F5;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #2E5BFF;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #8B8680;
            margin-top: 20px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .price-card {
            border: 1px solid #E5E3DF;
            border-radius: 4px;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #FFFFFF;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--audit-blue);
        }

        .price-header {
            background: #F8F7F5;
            padding: 30px;
            text-align: center;
            border-bottom: 1px solid #E5E3DF;
        }

        .price-header h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--audit-blue);
            display: block;
        }

        .price span {
            font-size: 1rem;
            color: #6b778c;
            font-weight: normal;
        }

        .price-body {
            padding: 30px;
            flex: 1;
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 15px;
            font-size: 0.95rem;
            padding-left: 25px;
            position: relative;
            color: #8B8680;
        }

        .feature-list li::before {
            content: "✓";
            color: #10b981;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .price-footer {
            padding: 30px;
            text-align: center;
            border-top: 1px solid #E5E3DF;
        }

        /* Bestseller Highlight */
        .bestseller {
            border: 2px solid var(--audit-blue);
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
        }

        .bestseller .price-header {
            background: var(--audit-blue);
            color: white;
        }

        .bestseller .price {
            color: white;
        }

        .bestseller .price span {
            color: rgba(255, 255, 255, 0.7);
        }

        .bestseller h3 {
            color: white;
        }

        .badge {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--accent-gold);
            color: #0A1628;
            text-align: center;
            font-weight: bold;
            font-size: 0.75rem;
            padding: 5px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* FAQ Section */
        .faq-section {
            padding: 120px 0;
            background: #FFFFFF;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #F8F7F5;
            padding: 25px;
            margin-bottom: 15px;
            border-radius: 4px;
            border-left: 4px solid #2E5BFF;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            font-weight: 600;
            margin-bottom: 8px;
            color: #0A1628;
            font-size: 1.05rem;
        }

        .faq-item p {
            margin: 0;
        }

        /* Footer */
        @media (max-width: 968px) {
            .split,
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .bestseller {
                transform: scale(1);
                margin: 20px 0;
            }

            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 640px) {
            .price-card,
            .pain-box,
            .guarantee-box {
                padding: 30px;
            }
        }
    