﻿/* בסיס כללי – Mobile first */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050814;
    color: #f5f7ff;
}

a {
    color: #6dd8ff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* ===== HEADER + NAV (כולל המבורגר) ===== */

.sc-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(109, 216, 255, 0.2);
}

.sc-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.sc-logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sc-logo {
    width: 180px;
    height: auto;
}

@media (min-width: 768px) {
    .sc-logo {
        width: 147px;
        height:138px;
    }
}

@media (min-width: 1200px) {
    .sc-logo {
        width: 260px;
    }
}


.sc-logo-text {
    font-weight: 700;
    font-size: 1.05rem;
}

/* כפתור המבורגר – מוצג במובייל, מוסתר בדסקטופ */

.sc-nav-toggle {
    display: none;
}

.sc-nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

    .sc-nav-toggle-label span {
        width: 22px;
        height: 2px;
        background: #f5f7ff;
        border-radius: 999px;
    }

/* התפריט עצמו – במובייל נפתח מתחת לכותרת */

.sc-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #050814;
    border-bottom: 1px solid rgba(109, 216, 255, 0.25);
    display: none;
    flex-direction: column;
    padding: 0.5rem 1rem 0.75rem;
    gap: 0.35rem;
}

    .sc-nav a {
        padding: 0.35rem 0.2rem;
        border-radius: 999px;
        font-size: 0.9rem;
    }

.sc-nav-cta {
    border: 1px solid rgba(109, 216, 255, 0.7);
    text-align: center;
}

/* כשמסמנים את הצ'קבוקס – פותחים את התפריט */

.sc-nav-toggle:checked ~ .sc-nav {
    display: flex;
}

/* ===== HERO & SECTIONS – MOBILE FIRST ===== */


.hero-title {
    font-size: clamp(5rem, 6vw, 6rem); /* responsive size */
    color: #007FFF; /* Azure */
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 2.6rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #6dd8ff !important; /* Azure */
    line-height: 1.3;
}

/*.sc-hero-content h2.hero-subtitle {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #007FFF !important;*/ /* Azure */
    /*line-height: 1.3;
    margin-bottom: 1rem;
}*/



.sc-hero {
    max-width: 1100px;
    margin: 1.8rem auto 1.5rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .sc-hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

.sc-hero-subtitle {
    color: #6dd8ff !important;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    text-align: center;
}

.sc-hero-actions {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.sc-primary-btn,
.sc-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
}

.sc-primary-btn {
    background: linear-gradient(135deg, #1bbfff, #6dd8ff);
    color: #050814;
    font-weight: 600;
}

    .sc-primary-btn:hover {
        filter: brightness(1.05);
    }

.sc-ghost-btn {
    border-color: rgba(109, 216, 255, 0.6);
    color: #f5f7ff;
    background: transparent;
}

    .sc-ghost-btn:hover {
        background: rgba(109, 216, 255, 0.08);
    }

.sc-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #a4abd8;
    font-size: 0.9rem;
}

    .sc-hero-bullets li::before {
        content: "• ";
        color: #6dd8ff;
    }

.sc-hero-media {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sc-video-wrapper {
    position: relative;
    width: 100%;
    /* אם יש padding-bottom: 56.25% מה־YouTube – אפשר להשאיר או להסיר לפי הצורך */
    /* padding-bottom: 56.25%; */ /* נסה קודם בלי זה */
    overflow: hidden;
    border-radius: 12px;
}
.vg-video {
    width: 100%;
    height: auto;
    display: block;
}

/*.vg-sound-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}*/
.vg-sound-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45); /* שקיפות 45% */
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

    /*.vg-sound-toggle:hover {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.85);
    }*/
    .vg-sound-toggle:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: scale(1.08);
    }

    /*.vg-sound-toggle:active {
        transform: translateY(0);
        opacity: 0.85;
    }*/
    .vg-sound-toggle:active {
        transform: scale(0.96);
        background: rgba(0, 0, 0, 0.40);
    }

/*@media (max-width: 600px) {
    .vg-sound-toggle {
        bottom: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 12px;
    }
}*/
@media (max-width: 600px) {
    .vg-sound-toggle {
        bottom: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

    .sc-video-wrapper iframe,
    .sc-video-wrapper video {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

.sc-video-caption {
    font-size: 0.8rem;
    color: #c1c7ff;
}

/* Sections */

.sc-section {
    max-width: 1100px;
    margin: 2.2rem auto;
    padding: 0 1rem;
}

.sc-section-alt {
    background: radial-gradient(circle at top, rgba(9, 45, 92, 0.6), rgba(5, 8, 20, 0.95));
    border-top: 1px solid rgba(109, 216, 255, 0.18);
    border-bottom: 1px solid rgba(109, 216, 255, 0.18);
}

    .sc-section-alt .sc-section-inner {
        padding-top: 1.6rem;
        padding-bottom: 1.8rem;
    }

.sc-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
/*
.sc-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}*/

.sc-section-lead {
    color: #c1c7ff;
    max-width: 700px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

/* גרידים – במובייל אחד מתחת לשני */

.sc-cards-grid,
.sc-feature-list,
.sc-testimonials,
.sc-about-grid,
.sc-contact-grid,
.sc-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sc-card,
.sc-feature-item,
.sc-testimonial,
.sc-compare-column,
.sc-contact-form {
    background: rgba(9, 16, 40, 0.95);
    border-radius: 0.9rem;
    padding: 0.9rem;
    border: 1px solid rgba(109, 216, 255, 0.25);
    font-size: 0.9rem;
}

/* Compare */

.sc-compare-highlight {
    border-color: #6dd8ff;
}

/* Testimonials */

.sc-testimonial-name {
    display: block;
    margin-top: 0.6rem;
    color: #c1c7ff;
    font-size: 0.8rem;
}

/* Contact */

.sc-contact-section {
    margin-bottom: 2.4rem;
}

.sc-contact-form {
    border-color: rgba(109, 216, 255, 0.35);
}

.sc-form-field {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .sc-form-field label {
        font-size: 0.8rem;
        color: #c1c7ff;
    }

    .sc-form-field input,
    .sc-form-field select,
    .sc-form-field textarea {
        background: #050814;
        border-radius: 0.5rem;
        border: 1px solid rgba(109, 216, 255, 0.4);
        padding: 0.4rem 0.55rem;
        color: #f5f7ff;
        font-size: 0.9rem;
    }

        .sc-form-field input:focus,
        .sc-form-field select:focus,
        .sc-form-field textarea:focus {
            outline: none;
            border-color: #6dd8ff;
        }

.sc-contact-note {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: #c1c7ff;
}

.sc-contact-details {
    font-size: 0.9rem;
}

    .sc-contact-details ul {
        list-style: none;
        padding: 0;
    }

    .sc-contact-details li {
        margin-bottom: 0.35rem;
    }

/* Footer */

.sc-footer {
    border-top: 1px solid rgba(109, 216, 255, 0.25);
    padding: 0.9rem 1rem 1.2rem;
    background: #040612;
}

.sc-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #a4abd8;
}

.sc-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* ===== BREAKPOINT – TABLET (min-width: 768px) ===== */

@media (min-width: 768px) {

    .sc-header-inner {
        padding: 0.75rem 1.5rem;
    }

    .sc-hero {
        margin-top: 2.4rem;
        padding: 0 1.5rem;
    }

    .sc-section {
        padding: 0 1.5rem;
    }

        .sc-section h2 {
            font-size: 1.4rem;
        }

    /* גרידים בטאבלט – 2 בעמודה כשאפשר */
    .sc-cards-grid,
    .sc-feature-list,
    .sc-testimonials,
    .sc-about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sc-contact-grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    }

    .sc-compare {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== BREAKPOINT – DESKTOP (min-width: 1024px) ===== */

@media (min-width: 1024px) {

    /* תפריט מלא – ללא המבורגר */
    .sc-nav-toggle-label {
        display: none;
    }

    .sc-nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        border-bottom: none;
        padding: 0;
        gap: 1rem;
        align-items: center;
    }

        .sc-nav a {
            font-size: 0.95rem;
            padding: 0.35rem 0.6rem;
        }

    .sc-header-inner {
        padding: 0.75rem 1.5rem;
    }

    /* HERO – שתי עמודות בדסקטופ */
   /* .sc-hero {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
        gap: 2rem;
        align-items: center;
    }*/

    .sc-hero h1 {
        text-align: center;
        width: 100%;
        display: block;
    }
    .sc-hero h2 {
        text-align: center;
        width: 100%;
        display: block;
    }

    .sc-section h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    @media (min-width: 1024px) {
        .sc-hero h1 {
            font-size: 5rem;
            color: #007FFF
        }
    }


    .sc-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
