/* =========================================================
   BUSINESS PAGE
   ========================================================= */

.business-page {
    background: var(--sg-body-bg);
    color: var(--sg-text-main);
}

/* HERO */

.business-hero {
    padding: 140px 40px 100px;
    text-align: center;
}

.business-title {
    font-size: 42px;
    color: var(--sg-text-headline);
    margin-bottom: 20px;
}

.business-subtitle {
    font-size: 20px;
    color: var(--sg-text-subheadline);
    margin-bottom: 30px;
}

.business-hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.business-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--sg-accent-primary);
    color: var(--sg-accent-primary);
    text-decoration: none;
    transition: .3s;
}

.business-cta-btn:hover {
    background: var(--sg-accent-primary);
    color: var(--sg-body-bg);
}

/* FORMATS */

.business-formats {
    padding: 100px 40px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.business-card {
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        var(--sg-block-grad-start),
        var(--sg-block-grad-end)
    );
    color: var(--sg-block-text);
    border: 1px solid var(--sg-border-light);
}

.business-card h2 {
    margin-bottom: 16px;
}

/* VIDEO */

.business-video {
    padding: 120px 40px;
    background: var(--sg-frame-bg);
    color: var(--sg-frame-text);
}

.business-video-title{color: var(--sg-frame-text); padding: 40px 0;}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.video-placeholder {
    height: 260px;
    border: 1px solid var(--sg-border-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-caption {
    margin-top: 12px;
    font-size: 14px;
}

.video-preview {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.video-preview img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}

.video-preview:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--sg-accent-primary);
    position: relative; 
}

.video-play::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 22px;
    border-style: solid;
    border-width: 13px 0 13px 20px;
    border-color: transparent transparent transparent white;
}

/* WHY */

.business-why {
    padding: 120px 40px;
}

.business-why-list {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* APPROACH */

.business-approach {
    padding: 120px 40px;
    background: linear-gradient(
        135deg,
        var(--sg-block-grad-start),
        var(--sg-block-grad-end)
    );
    color: var(--sg-block-text);
}

/* FINAL */

.business-final {
    padding: 140px 40px;
    text-align: center;
}
.business-final h2 {
    padding-bottom: 40px;
}
/* =========================================================
   VIDEO MODAL
   ========================================================= */

.sg-video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.sg-video-modal.is-open {
    display: block;
}

.sg-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
}

.sg-video-modal__dialog { 
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(980px, calc(100vw - 40px));
    transform: translate(-50%, -50%);
    border: 1px solid var(--sg-border-on-dark);
    background: #000;
    border-radius: 14px;
    overflow: hidden;
}

.sg-video-modal__ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.sg-video-modal__ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sg-video-modal__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--sg-border-on-dark);
    background: rgba(0,0,0,0.55);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
}

.sg-video-modal__close:hover {
    background: rgba(0,0,0,0.8);
}