/* video.css — Video Call Explainer page styles */

[dir="rtl"] .video-steps-grid { direction: rtl; }
[dir="rtl"] .video-connect-grid { direction: rtl; }

/* Hero */
.video-hero {
    background: var(--grey-900);
    color: var(--white);
    padding: 120px 40px 100px;
    text-align: center;
}

.video-hero-inner { max-width: 700px; margin: 0 auto; }

.video-section-label {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.video-section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 20px;
}

.video-hero-icon {
    display: block;
    margin: 0 auto 32px;
    opacity: 1;
}

.video-hero-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* Content Sections */
.video-section {
    padding: 120px 40px;
}

.video-section-white { background: var(--white); }
.video-section-grey { background: var(--grey-100); }

.video-inner { max-width: 960px; margin: 0 auto; }

.video-section-header {
    text-align: center;
    margin-bottom: 72px;
}

.video-section-icon {
    display: block;
    margin: 0 auto 16px;
    color: var(--grey-300);
}

.video-section-header .video-section-label {
    color: var(--jade-medium);
}

.video-heading {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--grey-900);
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.video-section-intro {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.9;
}

/* Two Ways to Connect — 2 Cards */
.video-connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.video-connect-card {
    padding: 48px 40px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 2px solid var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.video-connect-card:hover {
    border-color: var(--jade-light);
    border-top-color: var(--gold);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.video-connect-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.video-connect-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.2;
}

.video-connect-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.video-connect-card p {
    font-size: .88rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.video-connect-platforms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.video-connect-platforms li {
    font-size: .82rem;
    color: var(--grey-600);
    padding-left: 16px;
    position: relative;
}

.video-connect-platforms li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.video-connect-tagline {
    display: block;
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(196,162,101,.08), rgba(196,162,101,.02));
    border: 1px solid rgba(196,162,101,.2);
    border-radius: 2px;
    font-size: .8rem;
    color: var(--gold);
    line-height: 1.6;
    font-style: italic;
}

/* How It Works — 4 Steps */
.video-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.video-step-card {
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
    text-align: center;
    transition: all .3s;
}

.video-step-card:hover {
    border-color: var(--jade-light);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.video-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--jade-deep);
    color: var(--white);
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.video-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
}

.video-step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.video-step-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.video-step-card p {
    font-size: .82rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* What You'll See — Feature Grid */
.video-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.video-feature-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
    text-align: center;
    transition: all .3s;
}

.video-feature-card:hover {
    border-color: var(--jade-light);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.video-feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
}

.video-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.video-feature-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 6px;
}

.video-feature-card p {
    font-size: .8rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* FAQ */
.video-faq-list { max-width: 740px; margin: 0 auto; }

.video-faq-item {
    border-bottom: 1px solid var(--grey-200);
}

.video-faq-item:first-child { border-top: 1px solid var(--grey-200); }

.video-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--grey-900);
}

.video-faq-q:hover { color: var(--jade-deep); }

.video-faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--grey-400);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s;
}

.video-faq-item.open .video-faq-q svg { transform: rotate(180deg); }

.video-faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: .88rem;
    color: var(--grey-500);
    line-height: 1.8;
}

.video-faq-item.open .video-faq-a { display: block; }

/* CTA */
.video-cta {
    padding: 100px 40px;
    text-align: center;
    background: var(--white);
}

.video-cta-inner { max-width: 500px; margin: 0 auto; }

.video-cta p {
    font-size: .95rem;
    color: var(--grey-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.video-cta a {
    display: inline-block;
    padding: 16px 48px;
    background: var(--jade-deep);
    color: var(--white);
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background .3s;
    border-radius: 2px;
}

.video-cta a:hover { background: var(--jade-medium); }

.page-disclaimer {
    padding: 24px 40px;
    background: var(--grey-900);
    border-top: 1px solid rgba(255,255,255,.04);
}

.page-disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    font-size: .68rem;
    color: rgba(255,255,255,.25);
    line-height: 1.7;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .video-hero { padding: 80px 20px 60px; }
    .video-hero-icon { width: 60px; height: 50px; margin-bottom: 24px; }
    .video-section-title, .video-heading { font-size: 1.8rem; }
    .video-section { padding: 80px 20px; }
    .video-connect-grid { grid-template-columns: 1fr; }
    .video-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .video-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .video-cta { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .video-section-title, .video-heading { font-size: 1.5rem; }
    .video-steps-grid { grid-template-columns: 1fr; }
    .video-feature-grid { grid-template-columns: 1fr; }
}
