
        /* CSS Variables */
        :root {
            --stone-50: #fafaf9;
            --stone-100: #f5f5f4;
            --stone-200: #e7e5e4;
            --stone-300: #d6d3d1;
            --stone-900: #1c1917;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-900: #0f172a;
            --amber-50: #fffbeb;
            --amber-700: #b45309;
            --amber-800: #92400e;
            --amber-900: #78350f;
            --emerald-500: #10b981;
            --emerald-700: #047857;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--stone-50);
            color: var(--slate-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .font-serif {
            font-family: 'Playfair Display', Georgia, serif;
        }

        /* Navigation */
        nav {
            border-bottom: 1px solid var(--stone-200);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none !important;
        }

        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--slate-900);
            text-decoration: none !important;
        }

        .nav-est {
            font-size: 0.75rem;
            color: var(--amber-800);
            border-left: 1px solid var(--stone-300);
            padding-left: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--slate-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--slate-900);
        }

        /* Dropdown Styles */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            cursor: pointer;
        }

        .nav-dropdown-toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.2s;
        }

        .nav-dropdown:hover .nav-dropdown-toggle svg {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            background: white;
            border: 1px solid var(--stone-200);
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s;
            z-index: 100;
            min-width: 200px;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--slate-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            border-bottom: 1px solid var(--stone-100);
        }

        .nav-dropdown-item:last-child {
            border-bottom: none;
        }

        .nav-dropdown-item:hover {
            color: var(--slate-900);
            background: var(--stone-50);
        }

        .nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid var(--stone-100);
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    color: var(--slate-900);
    background: var(--stone-50);
}

/* Mobile Menu Styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
    color: var(--slate-600);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-content {
    padding: 1rem 1.5rem;
}

.mobile-menu-item {
    display: block;
    padding: 0.75rem 0;
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--stone-100);
}

.mobile-menu-item:hover {
    color: var(--slate-900);
}

.mobile-menu-section {
    margin: 1rem 0;
}

.mobile-menu-title {
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Update existing responsive styles */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-est {
        display: none;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-button {
        display: none;
    }
}

        .btn-primary {
            background: var(--amber-700);
            color: white;
            padding: 0.625rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--amber-800);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--stone-50) 0%, white 50%, #fffbeb 100%);
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 1.5rem 5rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(180, 83, 9, 0.05);
            border: 1px solid rgba(180, 83, 9, 0.2);
            color: var(--amber-900);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--slate-900);
        }

        h1 .italic {
            font-style: italic;
            color: var(--amber-800);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--slate-600);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 40rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            border: 2px solid var(--stone-300);
            background: transparent;
            color: var(--slate-900);
            padding: 1rem 2rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: var(--stone-400);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--stone-200);
            font-size: 0.875rem;
            color: var(--slate-500);
        }

        .hero-stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-stat svg {
            width: 16px;
            height: 16px;
            color: var(--amber-700);
        }

        /* Dashboard Card */
        .dashboard {
            background: white;
            border: 2px solid var(--stone-200);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            padding: 2rem;
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--stone-200);
        }

        .dashboard-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--emerald-700);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--emerald-500);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .metric-card {
            background: var(--stone-50);
            border: 1px solid var(--stone-200);
            padding: 1rem;
        }

        .metric-label {
            font-size: 0.75rem;
            color: var(--slate-500);
            margin-bottom: 0.25rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .metric-value {
            font-size: 1.875rem;
            font-weight: 700;
        }

        .metric-value.amber { color: var(--amber-800); }
        .metric-value.slate { color: var(--slate-900); }
        .metric-value.emerald { color: var(--emerald-700); }

        /* Chart */
        .chart {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chart-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .chart-label {
            font-size: 0.75rem;
            color: var(--slate-500);
            width: 3rem;
            font-weight: 500;
        }

        .chart-bar-container {
            flex: 1;
            background: var(--stone-200);
            height: 12px;
            position: relative;
            overflow: hidden;
        }

        .chart-bar {
            position: absolute;
            inset: 0;
            height: 12px;
            background: linear-gradient(90deg, var(--amber-700), var(--amber-800));
        }

        .chart-bar.emerald {
            background: linear-gradient(90deg, var(--amber-700), var(--emerald-700));
        }

        .chart-value {
            font-size: 0.75rem;
            color: var(--slate-600);
            width: 4rem;
            text-align: right;
            font-weight: 500;
        }

        .dashboard-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--stone-200);
            font-size: 0.75rem;
            color: var(--slate-500);
            font-style: italic;
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-header {
            max-width: 48rem;
            margin-bottom: 4rem;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--slate-900);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* Problem Section */
        .problem-section {
            background: white;
            border-top: 1px solid var(--stone-200);
            border-bottom: 1px solid var(--stone-200);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            border-left: 4px solid var(--amber-700);
            padding-left: 1.5rem;
        }

        .problem-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.75rem;
            color: var(--stone-200);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--slate-900);
        }

        .problem-card p {
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* Approach Section */
        .approach-section {
            background: linear-gradient(135deg, var(--stone-50) 0%, white 100%);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .approach-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .approach-item {
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--stone-200);
        }

        .approach-item:last-child {
            border-bottom: none;
        }

        .approach-item h3 {
            margin-bottom: 0.75rem;
        }

        .approach-item p {
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* Case Study Card */
        .case-study {
            background: rgba(255, 251, 235, 0.5);
            border: 2px solid rgba(180, 83, 9, 0.2);
            padding: 2rem;
        }

        .case-study-label {
            font-size: 0.75rem;
            color: var(--amber-900);
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .case-study h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .case-study-text {
            color: var(--slate-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(180, 83, 9, 0.2);
        }

        .case-metric-value {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--amber-800);
            margin-bottom: 0.25rem;
        }

        .case-metric-label {
            font-size: 0.75rem;
            color: var(--slate-600);
            font-weight: 500;
        }

        .case-quote {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(180, 83, 9, 0.2);
        }

        .case-quote p {
            font-size: 0.875rem;
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .case-quote cite {
            font-size: 0.75rem;
            color: var(--slate-500);
            font-style: normal;
        }

        /* Experience Section */
        .experience-section {
            background: white;
            border-top: 1px solid var(--stone-200);
            border-bottom: 1px solid var(--stone-200);
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .experience-card {
            border: 2px solid var(--stone-200);
            padding: 2rem;
            background: white;
            transition: all 0.3s;
        }

        .experience-card:hover {
            border-color: rgba(180, 83, 9, 0.3);
        }

        .experience-card h3 {
            margin-bottom: 0.75rem;
        }

        .experience-card p {
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* Trust Section */
        .trust-section {
            background: linear-gradient(135deg, var(--stone-50) 0%, white 100%);
            border-top: 1px solid var(--stone-200);
            border-bottom: 1px solid var(--stone-200);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .trust-card {
            background: white;
            border: 1px solid var(--stone-200);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .trust-card:hover {
            border-color: rgba(180, 83, 9, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .trust-indicator {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--amber-50), rgba(180, 83, 9, 0.1));
            border: 2px solid rgba(180, 83, 9, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--amber-800);
        }

        .trust-card h3 {
            margin-bottom: 1rem;
            color: var(--slate-900);
        }

        .trust-card p {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* FAQ Section Styles */
        .faq-section {
            background: white;
            padding: 6rem 0;
            border-top: 1px solid var(--stone-200);
            border-bottom: 1px solid var(--stone-200);
        }

        .faq-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .faq-header {
            max-width: 48rem;
            margin-bottom: 4rem;
        }

        .faq-list {
            max-width: 56rem;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--stone-200);
        }

        .faq-question {
            width: 100%;
            padding: 1.75rem 0;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--amber-700);
        }

        .faq-question-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--slate-900);
            transition: color 0.2s;
        }

        .faq-question:hover .faq-question-text {
            color: var(--amber-700);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--slate-900);
            transition: all 0.3s ease;
        }

        .faq-icon::before {
            width: 24px;
            height: 2px;
            top: 11px;
            left: 0;
        }

        .faq-icon::after {
            width: 2px;
            height: 24px;
            top: 0;
            left: 11px;
        }

        .faq-item.active .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding-bottom: 1.75rem;
        }

        .faq-answer-text {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--stone-900) 0%, var(--slate-900) 100%);
            color: white;
        }

        .cta-content {
            max-width: 56rem;
            margin: 0 auto;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: var(--stone-300);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-button {
            background: var(--amber-700);
            color: white;
            padding: 1.25rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button:hover {
            background: var(--amber-800);
        }

        .cta-note {
            font-size: 0.875rem;
            color: var(--stone-400);
            margin-top: 2rem;
        }

        /* Footer */
        footer {
            border-top: 2px solid var(--stone-200);
            background: white;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            font-size: 0.875rem;
            color: var(--slate-600);
        }

        .footer-title {
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: var(--slate-600);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--slate-900);
        }

        .footer-bottom {
            border-top: 1px solid var(--stone-200);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: var(--slate-500);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .approach-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .nav-est {
                display: none;
            }

            /* Mobile menu button - you'll want to add this */
            .mobile-menu-button {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0.5rem;
            }

            .mobile-menu-button svg {
                width: 24px;
                height: 24px;
                color: var(--slate-600);
            }
        }

        @media (min-width: 1025px) {
            .mobile-menu-button {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .case-metrics {
                grid-template-columns: 1fr;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                text-align: center;
            }

            .footer-bottom > div:first-child {
                flex-direction: column;
                gap: 1rem;
            }
        }


/*Paid Media Portfolio Management*/

.service-hero {
    background: linear-gradient(135deg, var(--stone-50) 0%, white 50%, #fffbeb 100%);
    padding: 4rem 0 3rem;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    color: var(--amber-900);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.service-hero-badge svg {
    width: 16px;
    height: 16px;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.7;
    max-width: 48rem;
    margin-bottom: 2rem;
}

.service-hero-cta {
    margin-top: 2rem;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--amber-700);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background: var(--amber-800);
    transform: translateY(-1px);
}

.btn-primary-large svg {
    width: 20px;
    height: 20px;
}

/* Service Sections */
.service-section {
    padding: 3rem 0;
}

.service-section.alt-bg {
    background: white;
}

.section-content {
    max-width: 56rem;
    margin: 0 auto;
}

.section-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--slate-700);
}

/* Highlight Boxes */
.highlight-box {
    background: rgba(180, 83, 9, 0.05);
    border-left: 4px solid var(--amber-700);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: var(--slate-900);
}

.translation-box {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: var(--slate-900);
    text-align: center;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.problem-card.surface-deception {
    border-left: 4px solid var(--red-600);
}

.problem-card.strategic-blindness {
    border-left: 4px solid var(--amber-700);
}

.problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--slate-900);
}

.problem-list, .strategic-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .strategic-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    line-height: 1.6;
}

.strategic-list {
    margin-top: 1rem;
}

/* Solution Framework */
.solution-framework h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--slate-900);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.framework-item {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    position: relative;
}

.framework-number {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--amber-700);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.framework-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.framework-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

/* Case Study */
.case-study-card {
    background: white;
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--amber-700);
    padding: 2rem;
    margin: 2rem 0;
}

.case-study-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-900);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.case-study-content > div {
    margin-bottom: 1.5rem;
}

.case-study-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin-left: 1rem;
}

.case-study-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.case-study-content li:before {
    content: "•";
    color: var(--amber-700);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Assessment Importance */
.assessment-importance {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.assessment-importance h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--slate-900);
    text-align: center;
}

.assessment-importance .large-text {
    margin-bottom: 1.5rem;
}

.expertise-statement {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--slate-900);
    line-height: 1.5;
}

/* Tighter typography for headings */
h1.font-serif {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--slate-900);
}

.solution-framework h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--slate-900);
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-primary-large {
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Animation for framework items */
.framework-item {
    transition: transform 0.2s, box-shadow 0.2s;
}

.framework-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Additional service page utilities */
.metric-highlight {
    display: inline-block;
    background: rgba(180, 83, 9, 0.1);
    color: var(--amber-900);
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0.25rem 0.5rem 0.25rem 0;
}

.service-nav-breadcrumb {
    background: var(--stone-100);
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.service-nav-breadcrumb a {
    color: var(--amber-700);
    text-decoration: none;
}

.service-nav-breadcrumb a:hover {
    text-decoration: underline;
}

/* GTM-Specific Styles */
.gtm-problem-item {
    background: white;
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--red-600);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.gtm-problem-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.gtm-problem-item p {
    color: var(--slate-600);
    line-height: 1.5;
}

/* GTM Layers */
.gtm-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gtm-layer {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gtm-layer.featured {
    border-left: 4px solid var(--amber-700);
    background: rgba(180, 83, 9, 0.02);
}

.gtm-layer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.layer-number {
    position: absolute;
    top: -16px;
    left: 2rem;
    background: var(--amber-700);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.gtm-layer.featured .layer-number {
    background: var(--amber-800);
}

.layer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.layer-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 1rem;
}

.layer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.layer-features li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
    color: var(--slate-600);
}

.layer-features li:before {
    content: "•";
    color: var(--amber-700);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.layer-impact {
    background: rgba(180, 83, 9, 0.1);
    border: 1px solid rgba(180, 83, 9, 0.2);
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--slate-900);
}

/* Technical Grid */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.technical-item {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 1.5rem;
}

.technical-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.technical-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

/* Accuracy Guarantee */
.accuracy-guarantee {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald-500);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.accuracy-guarantee h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

/* ROI Comparison */
.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.roi-before, .roi-after {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.roi-before {
    border-left: 4px solid var(--red-600);
}

.roi-after {
    border-left: 4px solid var(--emerald-500);
}

.roi-before h4, .roi-after h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.roi-metrics {
    list-style: none;
    padding: 0;
}

.roi-metrics li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.roi-metrics.negative li {
    color: var(--red-600);
}

.roi-metrics.positive li {
    color: var(--emerald-700);
}

.roi-metrics.negative li:before {
    content: "✗";
    color: var(--red-600);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.roi-metrics.positive li:before {
    content: "✓";
    color: var(--emerald-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Investment Breakdown */
.investment-breakdown {
    margin: 3rem 0;
    text-align: center;
}

.investment-breakdown h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--slate-900);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.investment-item {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem 1rem;
    text-align: center;
}

.investment-item.highlighted {
    border-left: 4px solid var(--amber-700);
    background: rgba(180, 83, 9, 0.02);
}

.investment-cost {
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-700);
    margin-bottom: 0.5rem;
}

.investment-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.investment-detail {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-tier {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-tier.featured {
    border-left: 4px solid var(--amber-700);
    background: rgba(180, 83, 9, 0.02);
}

.service-tier:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--amber-700);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-tier h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-700);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
    color: var(--slate-600);
}

.service-features li:before {
    content: "✓";
    color: var(--emerald-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-ideal {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: italic;
    border-top: 1px solid var(--stone-200);
    padding-top: 1rem;
}

/* Responsive Design for GTM */
@media (max-width: 768px) {
    .roi-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gtm-layers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Analytics-Specific Styles */
.crisis-callout {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid var(--red-600);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--slate-900);
    text-align: center;
}

.analytics-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.analytics-problem-card {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.analytics-problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analytics-problem-card.statistical-lie {
    border-left: 4px solid var(--red-600);
}

.analytics-problem-card.directional-drift {
    border-left: 4px solid var(--amber-700);
}

.analytics-problem-card.intuition-over-insight {
    border-left: 4px solid var(--slate-500);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.analytics-problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.problem-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 1rem;
}

.analytics-problem-card p:not(.problem-label) {
    color: var(--slate-600);
    line-height: 1.6;
}

/* Analytics Framework */
.analytics-framework {
    margin: 3rem 0;
}

.framework-step {
    background: white;
    border: 1px solid var(--stone-200);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.framework-step:nth-child(odd) {
    border-left: 4px solid var(--amber-700);
}

.framework-step:nth-child(even) {
    border-left: 4px solid var(--emerald-500);
}

.step-number {
    position: absolute;
    top: 2rem;
    left: -20px;
    background: var(--amber-700);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid white;
}

.framework-step:nth-child(even) .step-number {
    background: var(--emerald-500);
}

.step-content {
    padding: 2rem 2rem 2rem 4rem;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.step-subtitle {
    font-size: 1rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.step-details {
    margin: 1.5rem 0;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.detail-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

.step-analogy {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* GA4 Migration */
.migration-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.migration-phase {
    background: white;
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--amber-700);
    padding: 1.5rem;
}

.migration-phase h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.migration-phase p {
    color: var(--slate-600);
    line-height: 1.6;
}

.ga4-guarantee {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald-500);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.ga4-guarantee h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.ga4-guarantee p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--slate-700);
}

/* Before/After Grid */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.before-state, .after-state {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.before-state {
    border-left: 4px solid var(--red-600);
}

.after-state {
    border-left: 4px solid var(--emerald-500);
}

.before-state h4, .after-state h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.state-list {
    list-style: none;
    padding: 0;
}

.state-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.state-list.negative li {
    color: var(--red-600);
}

.state-list.positive li {
    color: var(--emerald-700);
}

.state-list.negative li:before {
    content: "✗";
    color: var(--red-600);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.state-list.positive li:before {
    content: "✓";
    color: var(--emerald-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.analogy-box {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-left: 4px solid var(--amber-700);
    padding: 2rem;
    margin: 3rem 0;
}

.analogy-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.analogy-box p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--slate-700);
}

.analogy-box p:last-child {
    margin-bottom: 0;
}

/* Analytics Services Grid */
.analytics-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.analytics-service-tier {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.analytics-service-tier.featured {
    border-left: 4px solid var(--amber-700);
    background: rgba(180, 83, 9, 0.02);
}

.analytics-service-tier:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.analytics-service-tier h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.service-approach {
    font-size: 1rem;
    font-weight: 600;
    color: var(--amber-700);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

/* Consultation Approach */
.consultation-approach {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-left: 4px solid var(--amber-700);
    padding: 2rem;
    margin: 3rem 0;
}

.consultation-approach h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.consultation-approach p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
}

.consultation-note {
    background: white;
    border: 1px solid rgba(180, 83, 9, 0.3);
    padding: 1rem;
    font-size: 1rem;
    color: var(--slate-900);
}

/* Responsive Design for Analytics */
@media (max-width: 768px) {
    .analytics-problems {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .migration-approach {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analytics-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-content {
        padding: 2rem 1.5rem 2rem 3rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        left: -16px;
    }
}

/* Conversion Optimization & Funnel Building Styles */
.funnel-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.funnel-problem-card {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.funnel-problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.funnel-problem-card.blame-game {
    border-left: 4px solid var(--red-600);
}

.funnel-problem-card.bloat-tax {
    border-left: 4px solid var(--amber-700);
}

.funnel-problem-card.creative-misalignment {
    border-left: 4px solid var(--slate-500);
}

.funnel-problem-card .problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.funnel-problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.problem-description {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.problem-impact {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* Conversion Pillars */
.conversion-pillars {
    margin: 3rem 0;
}

.conversion-pillar {
    background: white;
    border: 1px solid var(--stone-200);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.conversion-pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.conversion-pillar:nth-child(1) {
    border-left: 4px solid var(--emerald-500);
}

.conversion-pillar:nth-child(2) {
    border-left: 4px solid var(--amber-700);
}

.conversion-pillar:nth-child(3) {
    border-left: 4px solid var(--blue-600);
}

.pillar-number {
    position: absolute;
    top: 2rem;
    left: -20px;
    background: var(--emerald-500);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid white;
}

.conversion-pillar:nth-child(2) .pillar-number {
    background: var(--amber-700);
}

.conversion-pillar:nth-child(3) .pillar-number {
    background: var(--blue-600);
}

.pillar-content {
    padding: 2rem 2rem 2rem 4rem;
}

.pillar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.pillar-subtitle {
    font-size: 1rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.pillar-details {
    margin: 1.5rem 0;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.detail-section p {
    color: var(--slate-600);
    line-height: 1.6;
}

.pillar-metric {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* Solution Comparison */
.solution-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.traditional-approach, .axbridge-approach {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.traditional-approach {
    border-left: 4px solid var(--red-600);
}

.axbridge-approach {
    border-left: 4px solid var(--emerald-500);
}

.traditional-approach h4, .axbridge-approach h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.coordination-issue, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.issue-icon, .benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.coordination-issue h5, .benefit-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--slate-900);
}

.coordination-issue p, .benefit-item p {
    color: var(--slate-600);
    line-height: 1.5;
    font-size: 0.9rem;
}

.guarantee-statement {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald-500);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.guarantee-statement h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.guarantee-statement p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--slate-700);
}

/* Tech Stack Comparison */
.tech-stack-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.old-way, .new-way {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.old-way {
    border-left: 4px solid var(--red-600);
}

.new-way {
    border-left: 4px solid var(--emerald-500);
}

.old-way h4, .new-way h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.bloat-issues, .performance-benefits {
    list-style: none;
    padding: 0;
}

.bloat-issues li, .performance-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.bloat-issues li {
    color: var(--red-600);
}

.performance-benefits li {
    color: var(--emerald-700);
}

.bloat-issues li:before {
    content: "✗";
    color: var(--red-600);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.performance-benefits li:before {
    content: "✓";
    color: var(--emerald-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Performance Metrics */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: white;
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--amber-700);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-700);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.metric-note {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Conversion Services */
.conversion-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.conversion-service-card {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.conversion-service-card.featured {
    border-left: 4px solid var(--amber-700);
    background: rgba(180, 83, 9, 0.02);
}

.conversion-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.conversion-service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

/* Responsive Design for Conversion */
@media (max-width: 768px) {
    .funnel-problems {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-stack-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .conversion-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-content {
        padding: 2rem 1.5rem 2rem 3rem;
    }
    
    .pillar-content h3 {
        font-size: 1.5rem;
    }
    
    .pillar-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        left: -16px;
    }
    
    .coordination-issue, .benefit-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .issue-icon, .benefit-icon {
        align-self: center;
    }
}

/* Portfolio Management Styles */
.philosophy-statement {
    background: rgba(180, 83, 9, 0.1);
    border: 1px solid rgba(180, 83, 9, 0.3);
    border-left: 4px solid var(--amber-700);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: var(--slate-900);
    text-align: center;
    font-weight: 600;
}

/* Portfolio Problems */
.portfolio-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.portfolio-problem-card {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-problem-card.volatility {
    border-left: 4px solid var(--red-600);
}

.portfolio-problem-card.silos {
    border-left: 4px solid var(--amber-700);
}

.portfolio-problem-card.vanity-metrics {
    border-left: 4px solid var(--slate-500);
}

.portfolio-problem-card .problem-icon {
    display: none;
}

.portfolio-problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.problem-description {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.problem-consequence {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* Portfolio Framework */
.portfolio-framework {
    margin: 3rem 0;
}

.framework-pillar {
    background: white;
    border: 1px solid var(--stone-200);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.framework-pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.framework-pillar:nth-child(1) {
    border-left: 4px solid var(--blue-600);
}

.framework-pillar:nth-child(2) {
    border-left: 4px solid var(--emerald-500);
}

.framework-pillar:nth-child(3) {
    border-left: 4px solid var(--amber-700);
}

.framework-pillar .pillar-number {
    position: absolute;
    top: 2rem;
    left: -20px;
    background: var(--blue-600);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid white;
}

.framework-pillar:nth-child(2) .pillar-number {
    background: var(--emerald-500);
}

.framework-pillar:nth-child(3) .pillar-number {
    background: var(--amber-700);
}

.framework-pillar .pillar-content {
    padding: 2rem 2rem 2rem 4rem;
}

.framework-pillar .pillar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.framework-pillar .pillar-subtitle {
    font-size: 1rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Asset Classes */
.asset-classes {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.asset-class {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid var(--stone-200);
    padding: 1.5rem;
    border-radius: 4px;
}

.asset-class.core {
    border-left: 4px solid var(--emerald-500);
}

.asset-class.growth {
    border-left: 4px solid var(--amber-700);
}

.asset-class.research {
    border-left: 4px solid var(--blue-600);
}

.asset-class h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.asset-class p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.asset-examples {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--slate-700);
}

/* Temperament Principles */
.temperament-principles {
    margin: 2rem 0;
}

.principle-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone-200);
}

.principle-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.principle-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.principle-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

.temperament-analogy {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* Alignment Strategies */
.alignment-strategies {
    margin: 2rem 0;
}

.strategy-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone-200);
}

.strategy-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.strategy-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.strategy-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

.alignment-result {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--slate-900);
    border-radius: 4px;
}

/* Approach Comparison */
.approach-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.traditional-media-buying, .portfolio-management {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
}

.traditional-media-buying {
    border-left: 4px solid var(--red-600);
}

.portfolio-management {
    border-left: 4px solid var(--emerald-500);
}

.traditional-media-buying h4, .portfolio-management h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.characteristic {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--stone-300);
}

.characteristic.negative {
    border-left-color: var(--red-500);
}

.characteristic.positive {
    border-left-color: var(--emerald-500);
}

.char-icon {
    display: none;
}

.characteristic h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--slate-900);
}

.characteristic p {
    color: var(--slate-600);
    line-height: 1.5;
    font-size: 0.9rem;
}

.paradigm-shift {
    background: rgba(180, 83, 9, 0.05);
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-left: 4px solid var(--amber-700);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.paradigm-shift h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.paradigm-shift p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--slate-700);
}

/* Channel Portfolio */
.channel-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.channel-asset {
    background: white;
    border: 1px solid var(--stone-200);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.channel-asset:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.channel-asset.google-ads {
    border-left: 4px solid var(--blue-600);
}

.channel-asset.paid-social {
    border-left: 4px solid var(--purple-600);
}

.channel-asset.shopping {
    border-left: 4px solid var(--emerald-500);
}

.channel-asset.programmatic {
    border-left: 4px solid var(--amber-700);
}

.channel-icon {
    display: none;
}

.channel-asset h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.channel-asset h4 a {
    color: var(--slate-900);
    text-decoration: none;
}

.channel-asset h4 a:hover {
    color: var(--amber-700);
    text-decoration: underline;
}

.channel-role {
    font-size: 0.875rem;
    color: var(--amber-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.channel-asset p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.channel-strategy {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid var(--stone-200);
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--slate-700);
}

/* Portfolio Coordination */
.portfolio-coordination {
    margin: 3rem 0;
}

.portfolio-coordination h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--slate-900);
    text-align: center;
}

.coordination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coordination-principle {
    background: white;
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--amber-700);
    padding: 1.5rem;
}

.coordination-principle h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.coordination-principle p {
    color: var(--slate-600);
    line-height: 1.6;
}

/* Portfolio Guarantee */
.portfolio-guarantee {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald-500);
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.portfolio-guarantee h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.portfolio-guarantee > p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--slate-700);
    margin-bottom: 2rem;
}

.guarantee-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--emerald-500);
    padding: 1.5rem;
    text-align: left;
}

.guarantee-icon {
    display: none;
}

.guarantee-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.guarantee-item p {
    color: var(--slate-600);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-problems {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .channel-portfolio {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coordination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-principles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .framework-pillar .pillar-content {
        padding: 2rem 1.5rem 2rem 3rem;
    }
    
    .framework-pillar .pillar-content h3 {
        font-size: 1.5rem;
    }
    
    .characteristic {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .char-icon {
        align-self: center;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guarantee-icon {
        align-self: center;
    }
}