﻿/* ==========================================================================
   1. CORE VARIABLES & ISOLATION BOX BOUNDARIES
   ========================================================================== */
:root {
    --ccg-slate-50: #f8fafc;
    --ccg-slate-100: #f1f5f9;
    --ccg-slate-200: #e2e8f0;
    --ccg-slate-300: #cbd5e1;
    --ccg-slate-400: #94a3b8;
    --ccg-slate-500: #64748b;
    --ccg-slate-600: #475569;
    --ccg-slate-700: #334155;
    --ccg-slate-800: #1e293b;
    --ccg-slate-900: #0f172a;
    --ccg-slate-950: #020617;
    --ccg-amber-50: #fffbeb;
    --ccg-amber-100: #fef3c7;
    --ccg-amber-400: #fbbf24;
    --ccg-amber-500: #f59e0b;
    --ccg-amber-600: #d97706;
    --ccg-amber-700: #b45309;
}

.ccg-scope {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--ccg-slate-50);
    color: var(--ccg-slate-800);
    line-height: 1.5;
    box-sizing: border-box;
}

    .ccg-scope *, .ccg-scope *::before, .ccg-scope *::after {
        box-sizing: inherit;
    }

/* ==========================================================================
   2. REUSABLE UTILITIES & SPACING
   ========================================================================== */
.ccg-max-w-4xl {
    max-width: 56rem;
}

.ccg-max-w-6xl {
    max-width: 72rem;
}

.ccg-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ccg-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.ccg-py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.ccg-py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.ccg-space-y-16 > * + * {
    margin-top: 4rem;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.ccg-hero {
    position: relative;
    background-color: var(--ccg-slate-900);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.ccg-hero-gridmask {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 16px 16px;
}

.ccg-hero-tagline {
    display: inline-block;
    color: var(--ccg-amber-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ccg-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .ccg-hero h1 {
        font-size: 3rem;
    }
}

.ccg-hero p {
    font-size: 1.25rem;
    color: var(--ccg-slate-300);
    max-width: 44rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   4. TWO-COLUMN GRID SYSTEM LAYOUT
   ========================================================================== */
.ccg-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ccg-main-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: start;
    }

    .ccg-left-column {
        grid-column: span 7 / span 7;
    }

    .ccg-right-column {
        grid-column: span 5 / span 5;
    }
}

/* ==========================================================================
   5. LEFT SIDE INFO CARDS
   ========================================================================== */
.ccg-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--ccg-slate-200);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    padding: 2rem;
}

@media (min-width: 768px) {
    .ccg-card {
        padding: 3rem;
    }
}

.ccg-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ccg-slate-900);
    margin: 0 0 0.5rem 0;
}

.ccg-card-header p {
    color: var(--ccg-slate-500);
    /*font-size: 0.925rem;*/
    margin: 0 0 2.5rem 0;
}

.ccg-agency-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ccg-agency-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .ccg-agency-item {
        flex-direction: row;
        align-items: flex-start;
    }
}

.ccg-badge-gold {
    background-color: var(--ccg-amber-50);
    border: 1px solid var(--ccg-amber-100);
    color: var(--ccg-amber-700);
    font-weight: 800;
    font-size: 1rem;
    width: 4rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.ccg-agency-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ccg-slate-900);
    margin: 0 0 0.375rem 0;
}

.ccg-agency-item p {
    /*font-size: 0.925rem;*/
    color: var(--ccg-slate-600);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   6. RIGHT SIDE SUBMISSION ACTION SIDEBAR
   ========================================================================== */
.ccg-sticky-panel {
    background-color: var(--ccg-slate-900);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .ccg-sticky-panel {
        position: sticky;
        top: 2rem;
    }
}

.ccg-sticky-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ccg-amber-400);
    margin: 0 0 0.375rem 0;
}

.ccg-panel-sub {
    /*font-size: 0.875rem;*/
    color: var(--ccg-slate-400);
    margin: 0 0 2rem 0;
}

.ccg-action-block {
    background-color: var(--ccg-slate-800);
    border: 1px solid var(--ccg-slate-700);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

    .ccg-action-block:last-of-type {
        margin-bottom: 0;
    }

.ccg-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ccg-slate-100);
}

    .ccg-brand-row img {
        height: 24px;
        width: auto;
        object-fit: contain;
    }

.ccg-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .ccg-btn-group {
        flex-direction: row;
    }

        .ccg-btn-group > a {
            flex: 1;
        }
}

/* Button Components */
.ccg-btn-primary {
    background-color: var(--ccg-amber-500);
    color: var(--ccg-slate-950);
    font-weight: 700;
    /*font-size: 0.875rem;*/
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

    .ccg-btn-primary:hover {
        background-color: var(--ccg-amber-600);
    }

.ccg-btn-outline {
    background-color: transparent;
    color: var(--ccg-slate-200);
    border: 1px solid var(--ccg-slate-600);
    font-weight: 600;
    /*font-size: 0.875rem;*/
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

    .ccg-btn-outline:hover {
        background-color: var(--ccg-slate-700);
        color: #ffffff;
        border-color: var(--ccg-slate-500);
    }

.ccg-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ccg-slate-100);
}

    /* Enhanced high-contrast image containment shield */
    .ccg-brand-row img {
        height: 38px;
        width: auto;
        object-fit: contain;
        background-color: #ffffff; /* Forces white container backing */
        padding: 4px 10px; /* Clean frame padding around logo */
        border-radius: 6px; /* Matches container curvature styling */
        border: 1px solid #ffffff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Soft isolation lift shadow */
    }