/* ============================================
   Industry Portfolio Mockups - CSS-Based
   Realistic Hero Section Previews
   ============================================ */

/* Base Mockup Browser Window */
.mockup-browser {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-browser:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    background: #e8e8e8;
    border-bottom: 1px solid #d5d5d5;
}

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

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

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

/* Hide URL bar - removed to prevent customers from checking fake sites */
.mockup-url-bar {
    display: none;
}

/* Mockup Content Area */
.mockup-content {
    position: relative;
    min-height: 320px;
    height: auto;
    overflow: visible;
    padding-bottom: 20px;
}

/* ============================================
   LAW FIRM MOCKUP
   ============================================ */
.mockup-law-firm .mockup-content {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
}

.mockup-law-firm .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-law-firm .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-law-firm .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-law-firm .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.mockup-law-firm .mockup-menu {
    display: flex;
    gap: 16px;
}

.mockup-law-firm .mockup-menu-item {
    width: 40px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.mockup-law-firm .mockup-hero-content {
    padding: 30px 20px;
    text-align: center;
}

.mockup-law-firm .mockup-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 20px;
    color: #d4af37;
    font-size: 0.625rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-law-firm .mockup-headline {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mockup-law-firm .mockup-headline span {
    background: linear-gradient(135deg, #c9a227, #e8d48a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mockup-law-firm .mockup-subheadline {
    color: rgba(255,255,255,0.7);
    font-size: 0.6875rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-law-firm .mockup-cta-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-law-firm .mockup-cta-primary {
    padding: 8px 16px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    color: #0f2744;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 6px;
}

.mockup-law-firm .mockup-cta-secondary {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.6875rem;
    border-radius: 6px;
}

.mockup-law-firm .mockup-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mockup-law-firm .mockup-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.5625rem;
}

.mockup-law-firm .mockup-trust-badge span:first-child {
    color: #d4af37;
    font-weight: 700;
}

/* ============================================
   DENTAL MOCKUP
   ============================================ */
.mockup-dental .mockup-content {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.mockup-dental .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid #e0f2fe;
}

.mockup-dental .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dental .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-dental .mockup-logo-text {
    color: #0891b2;
    font-weight: 700;
    font-size: 0.875rem;
}

.mockup-dental .mockup-hero-content {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
}

.mockup-dental .mockup-hero-text {
    flex: 1;
}

.mockup-dental .mockup-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #ecfeff;
    color: #0891b2;
    font-size: 0.5625rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.mockup-dental .mockup-headline {
    color: #134e5e;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.mockup-dental .mockup-headline span {
    color: #0891b2;
}

.mockup-dental .mockup-subheadline {
    color: #64748b;
    font-size: 0.625rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.mockup-dental .mockup-cta-primary {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: white;
    font-weight: 700;
    font-size: 0.625rem;
    border-radius: 6px;
    display: inline-block;
}

.mockup-dental .mockup-hero-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.mockup-dental .mockup-hero-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed #0891b2;
    border-radius: 50%;
    opacity: 0.3;
}

.mockup-dental .mockup-features {
    display: flex;
    gap: 12px;
    padding: 0 20px;
}

.mockup-dental .mockup-feature {
    flex: 1;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.mockup-dental .mockup-feature-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.mockup-dental .mockup-feature-text {
    font-size: 0.5rem;
    color: #64748b;
    font-weight: 500;
}

/* ============================================
   MEDICAL/HEALTHCARE MOCKUP
   ============================================ */
.mockup-medical .mockup-content {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
}

.mockup-medical .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-bottom: 2px solid #10b981;
}

.mockup-medical .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-medical .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.mockup-medical .mockup-logo-text {
    color: #065f46;
    font-weight: 700;
    font-size: 0.8125rem;
}

.mockup-medical .mockup-hero-content {
    padding: 24px 20px;
    text-align: center;
}

.mockup-medical .mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #d1fae5;
    color: #059669;
    font-size: 0.5625rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.mockup-medical .mockup-headline {
    color: #065f46;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.mockup-medical .mockup-headline span {
    color: #10b981;
}

.mockup-medical .mockup-subheadline {
    color: #64748b;
    font-size: 0.625rem;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-medical .mockup-cta-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.mockup-medical .mockup-cta-primary {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    font-size: 0.625rem;
    border-radius: 6px;
}

.mockup-medical .mockup-cta-secondary {
    padding: 8px 16px;
    background: white;
    border: 1px solid #10b981;
    color: #059669;
    font-size: 0.625rem;
    border-radius: 6px;
}

.mockup-medical .mockup-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mockup-medical .mockup-trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.5rem;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.mockup-medical .mockup-trust-badge span:first-child {
    color: #10b981;
}

/* ============================================
   HVAC MOCKUP
   ============================================ */
.mockup-hvac .mockup-content {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.mockup-hvac .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #0f172a;
}

.mockup-hvac .mockup-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-hvac .mockup-logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mockup-hvac .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
}

.mockup-hvac .mockup-phone-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    padding: 4px 10px;
    border-radius: 4px;
}

.mockup-hvac .mockup-phone-bar span {
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
}

.mockup-hvac .mockup-hero-content {
    padding: 24px 20px;
    text-align: center;
}

.mockup-hvac .mockup-emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #f97316;
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.mockup-hvac .mockup-headline {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mockup-hvac .mockup-headline span {
    color: #fbbf24;
}

.mockup-hvac .mockup-subheadline {
    color: rgba(255,255,255,0.8);
    font-size: 0.625rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.mockup-hvac .mockup-cta-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.mockup-hvac .mockup-cta-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-hvac .mockup-cta-secondary {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.6875rem;
    border-radius: 6px;
}

.mockup-hvac .mockup-services {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mockup-hvac .mockup-service {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.5625rem;
}

.mockup-hvac .mockup-service-icon {
    font-size: 16px;
}

/* ============================================
   CONSTRUCTION MOCKUP
   ============================================ */
.mockup-construction .mockup-content {
    background: linear-gradient(135deg, #292524 0%, #44403c 100%);
    position: relative;
}

.mockup-construction .mockup-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, transparent 100%);
}

.mockup-construction .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.mockup-construction .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-construction .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #eab308, #fbbf24);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-construction .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
}

.mockup-construction .mockup-hero-content {
    padding: 24px 20px;
    position: relative;
    z-index: 1;
}

.mockup-construction .mockup-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: #fbbf24;
    font-size: 0.5625rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mockup-construction .mockup-headline {
    color: white;
    font-size: 1.1875rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mockup-construction .mockup-headline span {
    color: #fbbf24;
}

.mockup-construction .mockup-subheadline {
    color: rgba(255,255,255,0.7);
    font-size: 0.625rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 280px;
}

.mockup-construction .mockup-cta-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-construction .mockup-cta-primary {
    padding: 10px 18px;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #1c1917;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 4px;
}

.mockup-construction .mockup-cta-secondary {
    padding: 10px 18px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.6875rem;
    border-radius: 4px;
}

.mockup-construction .mockup-stats {
    display: flex;
    gap: 24px;
}

.mockup-construction .mockup-stat {
    text-align: left;
}

.mockup-construction .mockup-stat-number {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.mockup-construction .mockup-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.5rem;
}

/* ============================================
   REAL ESTATE MOCKUP
   ============================================ */
.mockup-realestate .mockup-content {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%);
    position: relative;
}

.mockup-realestate .mockup-hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
}

.mockup-realestate .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.mockup-realestate .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-realestate .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.mockup-realestate .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
}

.mockup-realestate .mockup-hero-content {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mockup-realestate .mockup-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    font-size: 0.5625rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.mockup-realestate .mockup-headline {
    color: white;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.mockup-realestate .mockup-headline span {
    background: linear-gradient(135deg, #6366f1, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mockup-realestate .mockup-subheadline {
    color: rgba(255,255,255,0.7);
    font-size: 0.5625rem;
    margin-bottom: 14px;
}

.mockup-realestate .mockup-search-bar {
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    max-width: 300px;
    margin: 0 auto 16px;
}

.mockup-realestate .mockup-search-input {
    flex: 1;
    height: 28px;
    background: #f1f5f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.5625rem;
    color: #94a3b8;
}

.mockup-realestate .mockup-search-btn {
    padding: 0 14px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    border-radius: 4px;
}

.mockup-realestate .mockup-properties {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mockup-realestate .mockup-property {
    width: 90px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mockup-realestate .mockup-property-image {
    height: 50px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mockup-realestate .mockup-property-info {
    padding: 6px;
}

.mockup-realestate .mockup-property-price {
    color: #4f46e5;
    font-size: 0.625rem;
    font-weight: 700;
}

.mockup-realestate .mockup-property-details {
    color: #64748b;
    font-size: 0.4375rem;
}

/* ============================================
   RESTAURANT MOCKUP
   ============================================ */
.mockup-restaurant .mockup-content {
    background: linear-gradient(180deg, #1c1917 0%, #292524 100%);
    position: relative;
}

.mockup-restaurant .mockup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.15) 0%, transparent 60%);
}

.mockup-restaurant .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
}

.mockup-restaurant .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-restaurant .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-restaurant .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    font-style: italic;
}

.mockup-restaurant .mockup-hero-content {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mockup-restaurant .mockup-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
    font-size: 0.5rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mockup-restaurant .mockup-headline {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    font-style: italic;
}

.mockup-restaurant .mockup-headline span {
    color: #f87171;
}

.mockup-restaurant .mockup-subheadline {
    color: rgba(255,255,255,0.7);
    font-size: 0.5625rem;
    margin-bottom: 14px;
}

.mockup-restaurant .mockup-cta-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mockup-restaurant .mockup-cta-primary {
    padding: 10px 18px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 700;
    font-size: 0.625rem;
    border-radius: 4px;
}

.mockup-restaurant .mockup-cta-secondary {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.625rem;
    border-radius: 4px;
}

.mockup-restaurant .mockup-features {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mockup-restaurant .mockup-feature {
    text-align: center;
}

.mockup-restaurant .mockup-feature-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.mockup-restaurant .mockup-feature-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.4375rem;
}

/* ============================================
   ROOFING MOCKUP
   ============================================ */
.mockup-roofing .mockup-content {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    position: relative;
}

.mockup-roofing .mockup-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.mockup-roofing .mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0,0,0,0.2);
    border-bottom: 3px solid #10b981;
    position: relative;
    z-index: 1;
}

.mockup-roofing .mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-roofing .mockup-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-roofing .mockup-logo-text {
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
}

.mockup-roofing .mockup-phone-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-size: 0.625rem;
    font-weight: 600;
}

.mockup-roofing .mockup-hero-content {
    padding: 24px 20px;
    position: relative;
    z-index: 1;
}

.mockup-roofing .mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #10b981;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-roofing .mockup-headline {
    color: white;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mockup-roofing .mockup-headline span {
    color: #34d399;
}

.mockup-roofing .mockup-subheadline {
    color: rgba(255,255,255,0.7);
    font-size: 0.625rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 280px;
}

.mockup-roofing .mockup-cta-group {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.mockup-roofing .mockup-cta-primary {
    padding: 10px 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-roofing .mockup-cta-secondary {
    padding: 10px 18px;
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
    font-size: 0.6875rem;
    border-radius: 4px;
}

.mockup-roofing .mockup-trust-badges {
    display: flex;
    gap: 16px;
}

.mockup-roofing .mockup-trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.7);
    font-size: 0.5rem;
}

.mockup-roofing .mockup-trust-badge span:first-child {
    color: #34d399;
    font-size: 12px;
}

/* ============================================
   Portfolio Grid Styles
   ============================================ */
.portfolio-mockups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.portfolio-mockup-item {
    position: relative;
}

.portfolio-mockup-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.portfolio-mockup-label .industry-emoji {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-mockups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .portfolio-mockups-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 20px;
        margin: 0 -16px 32px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .portfolio-mockups-grid::-webkit-scrollbar {
        display: none;
    }
    
    .portfolio-mockup-item {
        flex: 0 0 88vw;
        max-width: 360px;
        scroll-snap-align: center;
    }
    
    .mockup-content {
        min-height: 280px;
        padding-bottom: 16px;
    }
    
    .mockup-browser {
        border-radius: 10px;
    }
    
    .mockup-browser-bar {
        padding: 8px 12px;
    }
    
    .mockup-dots span {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .portfolio-mockup-item {
        flex: 0 0 92vw;
        max-width: 100%;
    }
    
    .mockup-content {
        min-height: 260px;
    }
    
    /* Adjust text sizes for very small screens */
    .mockup-headline {
        font-size: 1rem !important;
    }
    
    .mockup-subheadline {
        font-size: 0.625rem !important;
    }
    
    .mockup-cta-primary,
    .mockup-cta-secondary {
        padding: 8px 14px !important;
        font-size: 0.625rem !important;
    }
    
    .mockup-trust-badge {
        font-size: 0.5rem !important;
    }
    
    .portfolio-mockup-label {
        font-size: 0.875rem;
    }
}

/* Industry Mockup Showcase Section Responsive */
.industry-mockup-showcase .mockup-browser {
    max-width: 100%;
}

@media (max-width: 768px) {
    .industry-mockup-showcase .mockup-showcase-wrapper {
        max-width: 100% !important;
        padding: 0 16px;
    }
    
    .industry-mockup-showcase .mockup-content {
        height: auto !important;
        min-height: 300px;
    }
}
