* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080808;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 1px solid #282828;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 78px;
    padding: 12px 24px;

    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    text-decoration: none;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-photo {
    color: #ffffff;
}

.logo-hub {
    color: #ff5a00;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.main-nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #ff5a00;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.order-button,
.partners-button {
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.order-button {
    background: #ff5a00;
    color: #fff;
}

.order-button:hover {
    background: #ff741f;
}

.partners-button {
    color: #ff5a00;
    border: 1px solid #ff5a00;
}

.partners-button:hover {
    background: #ff5a00;
    color: #fff;
}

/* LANGUAGES */

.language-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 9px;

    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.language-bar a {
    min-width: 42px;
    padding: 5px 9px;

    border: 1px solid #333;
    border-radius: 6px;

    color: #aaa;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.language-bar a:hover,
.language-bar a.active {
    border-color: #ff5a00;
    color: #ff5a00;
}

/* MAIN */

main {
    min-height: 70vh;
}

/* HERO */

.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 40%, rgba(255, 90, 0, 0.16), transparent 35%),
        #080808;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-label {
    color: #ff5a00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;
    margin: 0 0 22px;

    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-text > p {
    max-width: 720px;
    margin: 0;

    color: #aaa;
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-primary,
.hero-secondary {
    padding: 15px 22px;
    border-radius: 9px;

    text-decoration: none;
    font-weight: 800;
}

.hero-primary {
    background: #ff5a00;
    color: #fff;
}

.hero-primary:hover {
    background: #ff741f;
}

.hero-secondary {
    border: 1px solid #555;
    color: #fff;
}

.hero-secondary:hover {
    border-color: #ff5a00;
    color: #ff5a00;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: min(100%, 430px);
    min-height: 300px;
    padding: 45px;

    display: flex;
    flex-wrap: wrap;
    align-content: center;

    border: 1px solid #333;
    border-radius: 24px;

    background:
        linear-gradient(145deg, #181818, #0b0b0b);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.hero-card span,
.hero-card strong {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
}

.hero-card span {
    color: #fff;
}

.hero-card strong {
    color: #ff5a00;
}

.hero-card p {
    width: 100%;
    margin-top: 22px;

    color: #aaa;
    line-height: 1.6;
}

@media (max-width: 850px) {

    .hero {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-card {
        width: 100%;
        min-height: 220px;
    }
}

/* FOOTER */

footer {
    margin-top: 70px;
    background: #111;
    border-top: 1px solid #292929;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-inner strong {
    color: #ff5a00;
    font-size: 20px;
}

.footer-inner p {
    color: #999;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact a {
    color: #ff5a00;
    text-decoration: none;
    font-weight: bold;
}

/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;

    padding: 13px 17px;
    border-radius: 30px;

    background: #25D366;
    color: #fff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.45);
}

.whatsapp-link {
    color: #25D366 !important;
}

/* HEBREW */

html[dir="rtl"] .header-inner,
html[dir="rtl"] .footer-inner {
    direction: rtl;
}

html[dir="rtl"] .language-bar {
    justify-content: flex-start;
}

/* MOBILE */

@media (max-width: 1050px) {

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .header-actions {
        margin-left: auto;
    }

    html[dir="rtl"] .header-actions {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 650px) {

    .header-inner {
        padding: 10px 14px;
        gap: 12px;
    }

    .logo {
        font-size: 22px;
    }

    .header-actions {
        width: 100%;
    }

    .order-button,
    .partners-button {
        flex: 1;
        text-align: center;
    }

    .language-bar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}
