/* ==========================================================================
   HIGH-END AGENCY HERO STYLES
   ========================================================================== */

.agency-hero-section {
    background: #040e2d;
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

/* Background Effects */
.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.15) 0%, rgba(7, 26, 82, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Agency Pill Badge */
.agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 123, 44, 0.3);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff7b2c;
}

.badge-pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #ff7b2c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 123, 44, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 123, 44, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 123, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 123, 44, 0); }
}

/* Typography */
.agency-hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ff9e5e 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agency-hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: #94a3b8;
    max-width: 90%;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 16px;
}

.btn-agency-gradient {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 44, 0.3);
    text-decoration: none !important;
}

.btn-agency-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 123, 44, 0.45);
}

.btn-agency-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-agency-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

/* Stats Row Spacing & Structure Fix */
.border-agency-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.agency-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-item p {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Right Studio Frame Visual */
.agency-visual-container {
    position: relative;
    padding: 20px 0;
}

.studio-browser-frame {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.frame-header {
    background: #1e293b;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.frame-dots {
    display: flex;
    gap: 6px;
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.frame-search-bar {
    background: #0f172a;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 11px;
    color: #94a3b8;
    flex-grow: 1;
}

.frame-canvas {
    padding: 24px;
    background: #090d16;
}

.canvas-wireframe-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 18px;
}

.canvas-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.canvas-card {
    border-radius: 12px;
    padding: 20px;
    min-height: 140px;
}

.card-primary {
    background: linear-gradient(135deg, #ff7b2c 0%, #d95200 100%);
    color: #ffffff;
}

.card-primary h4 { font-size: 16px; font-weight: 800; margin-top: 10px; margin-bottom: 4px; }
.card-primary p { font-size: 12px; margin: 0; opacity: 0.9; }

.wireframe-pill {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 99px;
}

.card-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.wireframe-circle { width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 123, 44, 0.2); }
.wireframe-line { height: 8px; background: rgba(255, 255, 255, 0.08); border-radius: 4px; width: 100%; }
.wireframe-line.short { width: 60%; }

/* Floating Agency Badges */
.floating-agency-badge {
    position: absolute;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.floating-agency-badge strong { display: block; font-size: 13px; color: #ffffff; }
.floating-agency-badge small { color: #94a3b8; font-size: 11px; }

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.icon-orange { background: rgba(255, 123, 44, 0.15); color: #ff7b2c; }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

.badge-top-right {
    top: -10px;
    right: -15px;
    animation: agencyFloat 4s ease-in-out infinite;
}

.badge-bottom-left {
    bottom: -15px;
    left: -15px;
    animation: agencyFloat 4s ease-in-out infinite 2s;
}

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

@media (max-width: 991px) {
    .agency-hero-title { font-size: 38px; }
    .agency-hero-subtitle { max-width: 100%; }
    .badge-top-right { right: 0; }
    .badge-bottom-left { left: 0; }
}

@media (max-width: 575px) {
    .agency-stats-row {
        gap: 15px;
        flex-wrap: wrap;
    }
    .stat-divider {
        display: none;
    }
}