.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 520px;
}
.hero-left {
    background: #121212;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.65) 0%, rgba(30, 30, 30, 0.3) 100%);
    z-index: 1;
}
.hero-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--white) !important;
}
.hero-title-top {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}
.hero-title-main {
    display: block;
    text-align: left;
    line-height: 1.25;
    margin-bottom: 4px;
}
.hero-title-location {
    display: block;
    text-align: left;
    margin-top: 14px;
    font-size: 0.75em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
    .hero-title {
        line-height: 1.35 !important;
    }
    .hero-title-top {
        margin-bottom: 7px;
    }
    .hero-title-main {
        margin-bottom: 6px;
    }
    .hero-title-location {
        margin-top: 20px;
    }
    .hero-right {
        border-left: none;
        border-top: none;
        box-shadow: none;
    }
    .hero-right::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 64px;
        height: 3px;
        background: var(--red);
        z-index: 10;
    }
}
@media (max-width: 767px) {
    .hero-title-main {
        font-size: 0.88em;
        line-height: 1.20;
    }
    .hero-title-location {
        margin-top: 11px;
    }
}
.hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 12px;
    line-height: 1.4;
}
.hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}
.hero-phone-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-call-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}
.hero-sep-codes {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    display: block;
    text-align: center;
    font-size: 13px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}
.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    background: rgba(21, 21, 21, 0.08);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-stat:hover {
    border-color: var(--red);
    background: rgba(21, 21, 21, 0.25);
    transform: translateY(-2px);
}
.hero-stat-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-stat-stars {
    color: #ffc107;
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}
.hero-right {
    background: var(--white);
    border-left: 1px solid #151515;
    box-shadow: -1px 0 0 var(--red);
    display: flex;
    flex-direction: column;
    position: relative;
}
.hero-right-header {
    background: #151515;
    color: var(--white);
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-line);
}
.hero-right-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.zglos-desc {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}
.hero-right-top {
    padding: 12px 24px 10px;
}
.hero-right-top .zglos-desc {
    margin-bottom: 0;
}
/* Service Selection Cards Grid */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.hero-service-card {
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-service-card:hover {
    border-color: rgba(211, 47, 47, 0.35);
    box-shadow: 0 10px 15px -3px rgba(211, 47, 47, 0.06), 0 4px 6px -2px rgba(211, 47, 47, 0.02);
    transform: translateY(-2px);
}

.hero-service-card .card-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.hero-service-card .card-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-service-card .card-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.hero-service-card .card-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: auto;
}

.hero-service-card .card-link-btn {
    padding: 6px 8px;
    border: 1px solid var(--gray-line);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    background: var(--white);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.hero-service-card .card-link-btn:hover {
    background: #151515;
    color: var(--white);
    border-color: #151515;
    transform: translateY(-1px);
}

.hero-service-card .card-link-btn-full {
    grid-column: span 2;
}

.hero-service-card .card-link-btn-highlight {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.15);
}

.hero-service-card .card-link-btn-highlight:hover {
    background: var(--red-dark);
    color: var(--white);
    border-color: var(--red-dark);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.25);
}

/* Photo and Info Row Styling */
.hero-photo-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
    border-top: 1px solid var(--gray-line);
    padding-top: 16px;
}

.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hero-photo-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right-info {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

.hero-info-text-top {
    margin-bottom: 8px;
}

.hero-info-text-bottom {
    margin: 0;
}

.hero-info-text-bottom strong {
    color: var(--text);
}

@media (max-width: 991px) {
    .hero-photo-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .hero-services-grid {
        grid-template-columns: 1fr;
    }
}
.hero-service-card .card-link-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 2px 5px rgba(15, 23, 42, 0.05);
}

.hero-service-card .card-link-btn:focus-visible {
    outline: 2px solid rgba(211, 47, 47, 0.42);
    outline-offset: 2px;
}
/* Click affordance: small service tiles */
.hero-service-card .card-link-btn {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 3px 8px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.hero-service-card .card-link-btn:hover {
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18), 0 7px 14px rgba(15, 23, 42, 0.12);
}
.hero-service-card .card-link-btn-highlight,
.hero-service-card .card-link-btn-highlight:visited {
    background: linear-gradient(180deg, #ff3b3b 0%, #e11919 52%, #b90f0f 100%);
    color: #fff;
    border-color: rgba(185, 15, 15, 0.95);
    box-shadow: 0 2px 0 #8f0b0b, 0 6px 12px rgba(225, 25, 25, 0.18);
}

.hero-service-card .card-link-btn-highlight:hover {
    background: linear-gradient(180deg, #ff4545 0%, #e11919 52%, #b90f0f 100%);
    color: #fff;
    border-color: rgba(185, 15, 15, 0.95);
    box-shadow: 0 3px 0 #8f0b0b, 0 8px 14px rgba(225, 25, 25, 0.22);
}
/* Captions identify the two real service photos in the hero service panel. */
.hero-photo-card {
    position: relative;
}

.hero-photo-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 7px 9px;
    color: #fff;
    background: rgba(17, 24, 39, .88);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}