/**
 * Agency Hosting - Page Specific Styles
 * ========================================
 * Hero section, use cases, dashboard highlight,
 * growth path, and responsive overrides.
 *
 * Shared component styles (pricing, features, FAQ,
 * CTA, support, marquee) come from style.css + hosting.css.
 */


/* ===================================
   Agency Color Variables
   =================================== */
:root {
    --agency-primary: #10b981;
    --agency-secondary: #06b6d4;
    --agency-tertiary: #3b82f6;
    --agency-gradient: linear-gradient(135deg, #10b981, #06b6d4, #3b82f6);
    --agency-glow: rgba(16, 185, 129, 0.4);
}


/* ===================================
   Gradient Text - Agency
   =================================== */
.gradient-text-agency {
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===================================
   HERO SECTION
   =================================== */
.agency-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.agency-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.agency-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.agency-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.agency-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    top: -20%;
    right: -10%;
    animation: agencyFloat 20s ease-in-out infinite;
}

.agency-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -10%;
    left: -5%;
    animation: agencyFloat 25s ease-in-out infinite reverse;
}

.agency-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #22c55e);
    top: 40%;
    left: 30%;
    animation: agencyFloat 30s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes agencyFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -10px) scale(1.02); }
}

/* Hero Wrapper - Two Column */
.agency-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content (Left) */
.agency-hero-content {
    max-width: 560px;
}

.agency-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.agency-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
}

.agency-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.agency-hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #059669, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.agency-hero-title .title-sub {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.agency-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero CTAs */
.agency-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.agency-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--agency-gradient);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.agency-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.agency-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a2e;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.agency-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

/* Hero Trust Row */
.agency-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.agency-hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
}

.agency-hero-trust .trust-item i {
    color: var(--agency-primary);
    font-size: 1rem;
}


/* Hero Visual (Right) - Client Dashboard */
.agency-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.agency-dashboard-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.agency-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.agency-dashboard-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.agency-dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--agency-primary);
}

.agency-dashboard-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--agency-primary);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Client Site Rows */
.agency-client-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.agency-client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.agency-client-row:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.agency-client-row .client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agency-client-row .client-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.client-icon.ci-1 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.client-icon.ci-2 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.client-icon.ci-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.client-icon.ci-4 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }

.agency-client-row .client-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.agency-client-row .client-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.client-status.active {
    color: var(--agency-primary);
}

.client-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--agency-primary);
}

.agency-client-row .client-response {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Dashboard Footer */
.agency-dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.agency-dashboard-footer .stat {
    text-align: center;
}

.agency-dashboard-footer .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.agency-dashboard-footer .stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Floating Badges */
.agency-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 600;
    color: #6ee7b7;
    white-space: nowrap;
}

.agency-float-badge i {
    font-size: 0.9rem;
    color: var(--agency-primary);
}

.float-badge-1 {
    top: -10px;
    right: -20px;
    animation: floatBadge 6s ease-in-out infinite;
}

.float-badge-2 {
    bottom: 20px;
    left: -30px;
    animation: floatBadge 8s ease-in-out infinite reverse;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ===================================
   MARQUEE - Agency variant
   =================================== */
.marquee-agency {
    background: linear-gradient(135deg, #0a1a14, #0b1520);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.marquee-agency .marquee-inner span {
    color: rgba(255, 255, 255, 0.6);
}

.marquee-agency .marquee-inner .divider {
    color: var(--agency-primary);
}


/* ===================================
   USE CASES SECTION
   =================================== */
.agency-usecases {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agency-usecases-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.agency-usecases-bg .usecase-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
}

.usecase-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--agency-primary);
    top: -10%;
    right: -5%;
}

.usecase-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--agency-secondary);
    bottom: -10%;
    left: -5%;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.usecase-card {
    padding: 2.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--agency-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
}

.usecase-card:hover::before {
    opacity: 1;
}

.usecase-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.usecase-card-icon i {
    font-size: 1.5rem;
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usecase-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.usecase-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}


/* ===================================
   AGENCY DASHBOARD HIGHLIGHT SECTION
   =================================== */
.agency-management {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-elevated, #f8f9fa);
}

.agency-management-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.agency-management-bg .mgmt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
}

.mgmt-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--agency-primary);
    top: -10%;
    left: -5%;
}

.mgmt-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--agency-tertiary);
    bottom: -10%;
    right: -5%;
}

.agency-mgmt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.agency-mgmt-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.agency-mgmt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(6, 182, 212, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.agency-mgmt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(16, 185, 129, 0.15);
}

.agency-mgmt-card:hover::before {
    opacity: 1;
}

.agency-mgmt-card.card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
}

.agency-mgmt-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
}

.agency-mgmt-card .card-icon i {
    font-size: 1.25rem;
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-mgmt-card.card-large .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.agency-mgmt-card.card-large .card-icon i {
    font-size: 1.5rem;
}

.agency-mgmt-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.agency-mgmt-card.card-large h3 {
    font-size: 1.4rem;
}

.agency-mgmt-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.agency-mgmt-card .card-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.agency-mgmt-card .card-stat {
    text-align: center;
}

.agency-mgmt-card .card-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-mgmt-card .card-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Large card visual - mockup panel */
.agency-panel-visual {
    background: #0f172a;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.agency-panel-visual .panel-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-panel-visual .panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.panel-dot.red { background: #ef4444; }
.panel-dot.yellow { background: #f59e0b; }
.panel-dot.green { background: #22c55e; }

.agency-panel-visual .panel-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
}

.panel-accounts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 0.75rem;
}

.panel-account-row .acc-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.panel-account-row .acc-sites {
    color: rgba(255, 255, 255, 0.4);
}

.panel-account-row .acc-status {
    color: var(--agency-primary);
    font-weight: 600;
}


/* ===================================
   GROWTH PATH SECTION
   =================================== */
.agency-growth {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.growth-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.growth-path.growth-path-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Connecting line - positioned to align with dot centers (24px from top of stage) */
.growth-path::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(90deg, var(--agency-primary), rgba(16, 185, 129, 0.4), rgba(99, 102, 241, 0.3));
    z-index: 0;
    border-radius: 2px;
}

.growth-path.growth-path-2::before {
    left: 25%;
    right: 25%;
}

.growth-stage {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.growth-stage-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.growth-stage-dot i {
    font-size: 1.25rem;
    color: #6b7280;
}

.growth-stage:hover .growth-stage-dot {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.growth-stage.current .growth-stage-dot {
    background: var(--agency-gradient);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.growth-stage.current .growth-stage-dot i {
    color: #fff;
}

.growth-stage h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.growth-stage.current h3 {
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-stage .stage-clients {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.growth-stage .stage-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.growth-stage .stage-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--agency-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.growth-stage .stage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.growth-stage .stage-link:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-1px);
}


/* ===================================
   FEATURES - Agency accent override
   =================================== */
.agency-features .feature-card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
}

.agency-features .feature-card-icon i {
    background: var(--agency-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-features .feature-card:hover {
    border-color: rgba(16, 185, 129, 0.15);
}

.agency-features .feature-card::after {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 70%);
}

.agency-features .feature-list li i {
    color: var(--agency-primary);
}


/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 991px) {
    .agency-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .agency-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .agency-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .agency-hero-title {
        font-size: 2.75rem;
    }

    .agency-hero-ctas {
        justify-content: center;
    }

    .agency-hero-trust {
        justify-content: center;
    }

    .agency-hero-visual {
        display: flex;
        justify-content: center;
    }

    .agency-float-badge {
        display: none;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agency-mgmt-grid {
        grid-template-columns: 1fr;
    }

    .agency-mgmt-card.card-large {
        grid-template-columns: 1fr;
    }

    .growth-path {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .growth-path::before {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .agency-hero-title {
        font-size: 2.25rem;
    }

    .agency-hero-title .title-sub {
        font-size: 1.35rem;
    }

    .agency-hero-desc {
        font-size: 1rem;
    }

    .agency-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .agency-btn-primary,
    .agency-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .agency-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .agency-dashboard-card {
        max-width: 100%;
    }

    .usecase-card {
        padding: 2rem;
    }

    .agency-mgmt-card {
        padding: 1.5rem;
    }

    .agency-mgmt-card.card-large {
        padding: 1.5rem;
    }

    .growth-stage {
        padding: 1.5rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .agency-hero {
        padding: 100px 0 40px;
    }

    .agency-hero-title {
        font-size: 2rem;
    }

    .agency-hero-title .title-sub {
        font-size: 1.2rem;
    }

    .agency-dashboard-footer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .agency-dashboard-footer .stat {
        flex: 1;
        min-width: 60px;
    }

    .agency-mgmt-card .card-stats {
        flex-wrap: wrap;
    }
}
