* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1b1f23;
    background: #f4f7fb;
    line-height: 1.6;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0f172a;
    text-decoration: none;
}

.brand:hover {
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
}

.nav a:hover {
    background: #eef4ff;
    color: #0d6efd;
    text-decoration: none;
}

.hero {
    padding: 76px 0 56px;
    background: linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
}

.hero-inner {
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.1;
}

.subtitle {
    max-width: 800px;
    margin: 18px auto 0;
    color: #334155;
    font-size: 1.12rem;
    font-weight: 600;
}

.subtitle-he {
    max-width: 800px;
    margin: 10px auto 0;
    color: #475569;
    font-size: 1.12rem;
    font-weight: 600;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: #0d6efd;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0b5ed7;
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border-color: #cbd5e1;
}

.btn-secondary:hover {
    background: #f8fafc;
    color: #0f172a;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 780px;
    height: 360px;
    margin: 50px auto 0;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
}

.graphic-circle-1 {
    width: 230px;
    height: 230px;
    left: 70px;
    top: 30px;
    background: rgba(13, 110, 253, 0.14);
}

.graphic-circle-2 {
    width: 180px;
    height: 180px;
    right: 90px;
    bottom: 16px;
    background: rgba(25, 135, 84, 0.14);
}

.graphic-card {
    position: absolute;
    inset: 26px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-screen {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    padding: 18px;
}

.graphic-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.graphic-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
}

.graphic-center {
    text-align: center;
    padding: 18px 0 10px;
}

.graphic-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.05em;
}

.graphic-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-top: 6px;
}

.graphic-lines {
    margin-top: 18px;
}

.graphic-lines div {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dbeafe 0%, #bfdbfe 100%);
    margin-bottom: 14px;
}

.graphic-lines .short {
    width: 55%;
}

.section {
    padding: 38px 0;
}

.section-light {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.section-card h2,
.section-heading {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 2rem;
    color: #0f172a;
}

.hebrew {
    text-align: right;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.project-grid-he {
    margin-top: 20px;
}

.project-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
}

.project-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0f172a;
}

.site-footer {
    padding: 28px 0;
    background: #ffffff;
}

.footer-inner {
    text-align: center;
    color: #64748b;
}

.footer-inner p {
    margin: 4px 0;
}

@media (max-width: 980px) {
    .dual-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .nav {
        justify-content: center;
    }

    .hero-graphic {
        height: 280px;
    }

    .graphic-card {
        inset: 20px 20px;
    }

    .graphic-circle-1 {
        left: 10px;
    }

    .graphic-circle-2 {
        right: 10px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 52px;
    }

    .hero-graphic {
        height: 220px;
    }

    .section-card,
    .project-card {
        padding: 20px;
    }

    .graphic-title {
        font-size: 1.35rem;
    }
}

.hero-photo-wrap {
    margin-top: 36px;
    text-align: center;
}

.hero-photo {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

