:root {
    --bg-main: #050816;
    --bg-card: #0b1020;
    --bg-soft: #111827;
    --accent: #ff6b1a;
    --accent-soft: rgba(255,107,26,0.15);
    --text-main: #ffffff;
    --text-muted: #a7b0c6;
    --border-soft: #23283b;
    --radius-lg: 22px;
    --radius-md: 14px;
    --max-w: 1440px;
}

* { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, #1f2937 0, transparent 55%),
        radial-gradient(circle at bottom right, #111827 0, transparent 55%),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a { 
    color: inherit; 
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--accent);
    color: var(--bg-main);
    padding: 0.5rem 1rem;
    z-index: 100;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility widget */
.a11y-widget {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.a11y-toggle {
    background: var(--accent);
    color: #0b0b0b;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.a11y-panel {
    display: none;
    min-width: 220px;
    background: rgba(10,12,24,0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.a11y-panel.is-open {
    display: grid;
    gap: 0.5rem;
}

.a11y-panel button {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    cursor: pointer;
    text-align: right;
    font-size: 0.9rem;
}

.lang-en .a11y-panel button {
    text-align: left;
}

.a11y-panel button:hover {
    border-color: var(--accent);
}

body.a11y-large-text {
    font-size: 18px;
}

body.a11y-high-contrast {
    filter: contrast(1.15) brightness(1.05);
}

body.a11y-underline-links a {
    text-decoration: underline !important;
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5,8,22,0.9), rgba(5,8,22,0.78));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.85rem;
}

nav a { 
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover { 
    color: var(--text-main);
}

nav a:hover::after {
    width: 100%;
}

.nav-system-link {
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,107,26,0.3);
    background: rgba(255,107,26,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-system-link:hover {
    color: var(--accent) !important;
    background: rgba(255,107,26,0.2);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-soft);
    padding: 4rem 1.5rem 2rem;
    z-index: 55;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.mobile-menu nav a {
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem 0;
}

.mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 54;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-pill {
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.lang-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-pill.active {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(255,107,26,0.06);
}

.btn-primary {
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    background: var(--accent);
    color: #050816;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover { 
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,26,0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* MAIN */

main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.4rem 4rem;
}

/* HERO עם תמונה */

.hero {
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.7fr) minmax(0, 2.3fr);
    background: linear-gradient(135deg, #070b17 0%, #050816 45%, #020617 100%);
    align-items: stretch; /* Keep image panel aligned to text height */
}

.hero-text {
    padding: 2.4rem 2.6rem;
    position: relative;
}

.hero-kicker-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
    flex-wrap: wrap;
}

.hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.hero-experience {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.03em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 1.1rem;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

.hero-title span { 
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 40rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.8s forwards;
}

.btn-secondary {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--text-main);
    transform: translateY(-1px);
}

.hero-note {
    margin-top: 0.9rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-metrics {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.6s ease 1s forwards;
}

.metric {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    background:
        radial-gradient(circle at top right, rgba(255,107,26,0.18), transparent 60%),
        rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.4);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255,107,26,0.2);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.metric-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-image-panel {
    position: relative;
    background-color: var(--bg-soft);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 100%;
    align-self: stretch;
}

.hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
    max-height: 620px;
    filter: brightness(1.08) contrast(1.05) saturate(1.05);
}

/* English hero image: match text column height */
.lang-en .hero-image-panel {
    height: 100%;
    align-self: stretch;
    max-height: none;
    position: relative;
    display: block;
}

.lang-en .hero-image-panel img {
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    width: 100%;
}

.hero-image-panel img.loaded {
    opacity: 1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left, rgba(5,8,22,0.08), rgba(5,8,22,0.75));
}

.hero-image-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6rem;
}

.hero-image-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 0.78rem;
}

.hero-image-caption {
    font-size: 0.82rem;
    color: #e5e7eb;
    max-width: 18rem;
}

/* SECTIONS */

.section { 
    margin-top: 2.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Reduce spacing specifically between Solutions and International sections */
#international.section {
    margin-top: 1.2rem;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    text-align: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.9rem;
}

.pill-dot {
    width: 8px; 
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-title {
    font-size: 2rem;
    margin: 0.5rem 0 0;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 52rem;
    line-height: 1.4;
}

/* Accessibility Section */
.accessibility-section .section-header {
    margin-bottom: 1.2rem;
}

.accessibility-card {
    background: linear-gradient(145deg, rgba(11,15,31,0.96), rgba(9,13,26,0.96));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.6rem 1.8rem;
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.accessibility-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(255,107,26,0.5);
    background: #0a0a0a;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-icon img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.accessibility-body p {
    margin: 0 0 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.accessibility-body p:last-child {
    margin-bottom: 0;
}

.accessibility-note {
    color: var(--text-main);
    font-weight: 600;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    grid-auto-flow: row;
    margin-bottom: 0.8rem;
}

/* Solutions section has 3 cards only; avoid an empty second row */
#solutions .cards-grid {
    grid-template-rows: none;
    align-content: start;
}

.card {
    background: linear-gradient(135deg, #111827 0%, #0F172A 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px;
    font-size: 0.86rem;
    transition: all 0.3s ease;
    min-height: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
}

.card p {
    margin: 0;
    font-size: 14px;
    color: #CBD5E1;
    line-height: 1.6;
}

.card-label {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.card-list {
    margin: 0.45rem 0 0;
    padding: 0 1.1rem 0 0;
    list-style: disc;
    color: #CBD5E1;
    font-size: 0.85rem;
    line-height: 1.5;
}

.card-list li {
    margin-bottom: 0.35rem;
}

.tag-list {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.4);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.panel {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1rem 1.1rem;
    font-size: 0.86rem;
    transition: all 0.3s ease;
}

/* Center wide panels under centered section headers */
.section .panel,
.section .two-col {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.section .two-col {
    width: 100%;
    gap: 1.6rem;
}

/* Keep international panel text aligned with centered header */
#international .panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
    text-align: right;
}

.panel:hover {
    border-color: rgba(255,107,26,0.3);
}

.panel strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.4rem;
}

.panel ul {
    list-style: none;
    margin: 0.6rem 1.1rem 0 0;
    padding: 0;
}

.panel ul li {
    position: relative;
    padding-right: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.panel ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: bold;
}

.logos-row {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.logo-pill {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px dashed rgba(148,163,184,0.7);
    transition: all 0.3s ease;
}

.logo-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.logos-row {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.logos-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.logos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.logos-list img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.9;
}

.logos-list img:hover {
    filter: grayscale(0%) brightness(1.05);
    opacity: 1;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 1rem;
}

/* Contact Form */
.contact-form {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    font-size: 0.85rem;
    display: none;
}

.form-message.success {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
    display: block;
}

.form-message.error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
    display: block;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,107,26,0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.2rem 1rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255,107,26,0.15);
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.testimonial-author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Advantages Section */
.section-advantages {
    margin-top: 3rem;
}

.section-advantages .section-header {
    display: block;
    text-align: center;
    margin-bottom: 1.6rem;
}

.section-advantages .section-header-main {
    max-width: 640px;
    margin: 0 auto;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.9rem;
}

.section-advantages .section-title {
    font-size: 1.7rem;
    margin: 0.45rem 0 0;
}

.section-advantages .section-subtitle {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #a5b0c5;
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
}

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

.adv-card {
    background: #0b1020;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 22px 22px 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.adv-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(235,60,52,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb3c34;
    background: rgba(235,60,52,0.1);
}

.adv-icon svg {
    width: 20px;
    height: 20px;
}

.adv-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.adv-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #a5b0c5;
    line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 40;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,107,26,0.3);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255,107,26,0.4);
}

/* CONTACT */

.contact-cta {
    margin-top: 3rem;
    padding: 1.4rem 1.2rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(255,107,26,0.25), transparent 60%),
        #050816;
    border: 1px solid rgba(255,107,26,0.5);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
    font-size: 0.88rem;
}

.contact-cta strong { 
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-lead {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.82rem;
}

.contact-form {
    grid-column: 2;
}

.contact-details a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

footer {
    margin-top: 2.4rem;
    border-top: 1px solid rgba(148,163,184,0.3);
    padding: 1rem 1.4rem 1.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* Privacy Consent Banner */
.privacy-consent {
    position: fixed;
    right: 1.2rem;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 120;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(9, 13, 26, 0.98);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 16px 38px rgba(0,0,0,0.35);
    color: var(--text-main);
}

.privacy-consent__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.privacy-consent__text a {
    color: var(--accent);
    text-decoration: underline;
}

.privacy-consent__actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.privacy-consent.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .privacy-consent {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Privacy Policy Section */
.privacy-section {
    margin-top: 2.2rem;
}

.privacy-card {
    background: linear-gradient(145deg, rgba(11,15,31,0.96), rgba(9,13,26,0.96));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.6rem 1.8rem;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.privacy-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.privacy-card p {
    margin: 0 0 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.privacy-card ul {
    margin: 0 0 0.9rem;
    padding: 0 1.2rem 0 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.privacy-card li {
    margin-bottom: 0.35rem;
}

.privacy-note {
    color: var(--text-main);
    font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    nav { 
        display: none; 
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lang-switch {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-system-link {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
    }

    .lang-pill {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .btn-primary {
        padding: 0.4rem 0.95rem;
        font-size: 0.8rem;
    }

    .brand-logo-img {
        height: 50px;
    }
    
    .hero-kicker-wrapper {
        gap: 0.8rem;
    }
    
    .hero-kicker,
    .hero-experience {
        font-size: 0.85rem;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .hero-text {
        order: 2;
        padding: 1.7rem 1.4rem 1.6rem;
    }
    
    .hero-image-panel {
        order: 1;
        min-height: 220px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 24px;
    }
    
    .card {
        min-height: 200px;
        height: 100%;
        padding: 24px;
    }

    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .section-advantages .section-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-advantages .section-subtitle {
        max-width: 100%;
    }

    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 640px) {
    main {
        padding: 0 1rem 3rem;
    }

    .nav-inner {
        padding: 0.7rem 1rem;
    }

    .brand-logo-img {
        height: 44px;
    }

    .lang-switch {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-system-link,
    .lang-switch .btn-primary {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-text {
        padding: 1.4rem 1.1rem 1.4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 1.4rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-image-panel {
        min-height: 200px;
        max-height: 300px;
    }

    .hero-image-panel img {
        max-height: 300px;
    }

    .section {
        margin-top: 1.6rem;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pill {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-sub {
        font-size: 0.95rem;
    }

    .section-advantages .section-header {
        flex-direction: column;
    }
    
    .advantages-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
        gap: 20px;
    }
    
    .card {
        min-height: 180px;
        height: 100%;
        padding: 20px;
    }

    .contact-cta {
        padding: 1.1rem;
        gap: 1.2rem;
    }

    .contact-details {
        font-size: 0.78rem;
    }

    .contact-form {
        grid-column: auto;
    }

    .accessibility-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .accessibility-icon {
        margin: 0 auto;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print Styles */
@media print {
    header,
    .mobile-menu-toggle,
    .scroll-to-top,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
}
/* מונע התנגשות בין הנגישות לבאנר הפרטיות */
#a11y-widget {
    position: fixed;
    right: 20px;
    bottom: 120px !important; /* מעלה את הכפתור קצת מעל הבאנר */
    z-index: 9999;
}
