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

:root {
    --primary-color: #1a4d7c;
    --secondary-color: #2c5f8d;
    --accent-color: #3a7bb5;
    --dark-color: #0d3b5c;
    --light-color: #f5f8fa;
    --text-color: #333;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-link:focus-visible {
    outline: 3px solid rgba(58, 123, 181, 0.55);
    outline-offset: 6px;
    border-radius: 10px;
}

.logo img {
    height: 42px;
    max-height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 34px;
        max-height: 34px;
        max-width: 150px;
    }
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    display: block;
    opacity: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.main-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown toggle caret */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transform: translateY(1px);
    opacity: 0.85;
}

.nav-item.is-open > .nav-toggle::after {
    transform: translateY(1px) rotate(180deg);
}

/* Mega dropdown panel */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: none;
    min-width: 560px;
    max-width: min(860px, 92vw);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
    padding: 1rem;
    z-index: 1200;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
}

.nav-dropdown--right {
    left: auto;
    right: 0;
}

.nav-item.is-open > .nav-dropdown {
    display: grid;
}

.nav-dropdown__title {
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 0.65rem;
    letter-spacing: 0.2px;
}

.nav-dropdown__link {
    display: block;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 650;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus {
    background: rgba(26, 77, 124, 0.08);
    color: var(--primary-color);
    outline: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Header actions (account/cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.lang-select {
    border: 1px solid rgba(0,0,0,0.12);
    background: var(--white);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.lang-select:focus {
    outline: none;
    border-color: rgba(58, 123, 181, 0.9);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.15);
}

.icon-btn {
    background: transparent;
    border: 1px solid rgba(26, 77, 124, 0.25);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.05s;
    white-space: nowrap;
}

.icon-btn:hover {
    background: rgba(26, 77, 124, 0.06);
    border-color: rgba(26, 77, 124, 0.45);
}

.icon-btn:active {
    transform: translateY(1px);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.45rem;
    margin-left: 0.35rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark-color);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* Prevent invisible slides from intercepting clicks/taps */
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    gap: 4rem;
}

.slide-text {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}

.slide-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Product card buttons - blue background */
.product-card .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-card .btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-card .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-card .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Product actions container */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-actions .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-actions .btn-primary:hover {
    background: #0a4f7d;
    border-color: #0a4f7d;
    color: var(--white);
}

.product-actions .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.product-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        min-width: unset;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2a40 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.cta-section p {
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Newsletter Banner */
.newsletter-banner {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

.newsletter-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-banner p {
    font-size: 1.1rem;
    margin: 0;
}

/* Products Section */

/* Help / Contact CTA (homepage) */
.help-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    background: radial-gradient(1200px 600px at 50% 20%, rgba(58, 123, 181, 0.35), rgba(13, 59, 92, 0.96)),
        linear-gradient(135deg, rgba(13, 59, 92, 0.95), rgba(26, 77, 124, 0.92));
    overflow: hidden;
}

.help-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.32)),
        radial-gradient(800px 300px at 20% 40%, rgba(255,255,255,0.10), transparent 55%),
        radial-gradient(900px 350px at 80% 55%, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}

.help-cta .container {
    position: relative;
    z-index: 1;
}

.help-cta__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.help-cta__lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 3rem;
    max-width: 62ch;
}

.help-cta__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 3.5rem;
    align-items: start;
    max-width: 1050px;
    margin: 0 auto;
}

.help-cta__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: var(--white);
    padding: 0.25rem 0;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.help-cta__item:hover,
.help-cta__item:focus {
    transform: translateY(-3px);
    opacity: 0.98;
    outline: none;
}

.help-cta__icon {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
}

.help-cta__icon svg {
    width: 92px;
    height: 92px;
    color: rgba(255,255,255,0.95);
}

.help-cta__text {
    font-size: 1.15rem;
    font-weight: 900;
    color: rgba(255,255,255,0.98);
    text-decoration: none;
}

.help-cta__item--accent .help-cta__text {
    color: rgba(190, 225, 255, 0.98);
}

.help-cta__item:hover .help-cta__text,
.help-cta__item:focus .help-cta__text {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.help-cta__newsletter {
    margin: 3.25rem auto 0;
    max-width: 720px;
}

.help-cta__newsletterTitle {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.help-cta__newsletterLead {
    color: rgba(255,255,255,0.88);
    margin: 0 auto 1.25rem;
}

.help-cta__newsletterForm {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.help-cta__newsletterInput {
    min-width: min(520px, 92vw);
    max-width: 560px;
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.98);
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    outline: none;
}

.help-cta__newsletterInput::placeholder {
    color: rgba(255,255,255,0.65);
}

.help-cta__newsletterInput:focus {
    border-color: rgba(190, 225, 255, 0.7);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.22);
}

.help-cta__newsletterBtn {
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-weight: 900;
    white-space: nowrap;
}

.help-cta__newsletterMsg {
    margin-top: 1rem;
    color: rgba(255,255,255,0.88);
    min-height: 1.2em;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-cta__newsletterMsg:empty {
    display: none;
}
.products-section {
    padding: 5rem 0;
    background: var(--light-color);
}

/* Products page (views: overview/details/compare) */
.products-page .products-views {
    margin-top: 1.5rem;
}

.view-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 1.5rem;
}

.view-tab {
    appearance: none;
    border: 1px solid rgba(0,0,0,0.12);
    background: var(--white);
    color: var(--dark-color);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.05s;
}

.view-tab:hover {
    background: rgba(26, 77, 124, 0.06);
    border-color: rgba(26, 77, 124, 0.35);
}

.view-tab:active {
    transform: translateY(1px);
}

.view-tab.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.view-panel {
    display: none;
}

.view-panel.is-active {
    display: block;
}

.products-details {
    display: grid;
    gap: 1.25rem;
}

.product-detail {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    padding: 1.25rem;
}

.product-detail__head h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.product-detail__media {
    margin-top: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    background: rgba(245, 248, 250, 0.65);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail__media img {
    width: 100%;
    max-width: 860px;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: start;
}

.product-detail__specs {
    background: rgba(245, 248, 250, 0.7);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1rem;
}

.product-detail__specs h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.spec-list {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0;
    color: var(--gray);
}

.spec-list strong {
    color: var(--dark-color);
}

/* Veridian Gov: VPS document block */
.vps-doc {
    display: grid;
    gap: 0.85rem;
}

.vps-doc__header h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.vps-doc__meta {
    color: var(--gray);
    font-size: 0.95rem;
}

.vps-doc__section {
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(245, 248, 250, 0.55);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.vps-doc__section summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--primary-color);
    outline: none;
}

.vps-doc__section[open] summary {
    margin-bottom: 0.65rem;
}

.vps-doc__section p {
    margin: 0.55rem 0;
}

.vps-doc__section ul,
.vps-doc__section ol {
    margin: 0.55rem 0 0.55rem 1.1rem;
    color: var(--text-color);
}

.vps-doc__section h5 {
    margin-top: 0.65rem;
    color: var(--dark-color);
}

.vps-doc__callout {
    border-inline-start: 4px solid rgba(58, 123, 181, 0.95);
    background: rgba(58, 123, 181, 0.08);
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    color: var(--dark-color);
}

.vps-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0 0.25rem;
}

.vps-table th,
.vps-table td {
    border: 1px solid rgba(0,0,0,0.10);
    padding: 0.6rem 0.75rem;
    vertical-align: top;
    text-align: start;
}

.vps-table thead th {
    background: rgba(26, 77, 124, 0.08);
    color: var(--dark-color);
    font-weight: 900;
}

@media (max-width: 600px) {
    .vps-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vps-table th,
    .vps-table td {
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
    }
}

/* Shop */
.shop-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Support */
.support-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.support-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.support-card p {
    color: var(--gray);
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.support-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.support-panel {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.support-panel h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.table-wrap {
    width: 100%;
    overflow: auto;
}

.updates-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.updates-table th,
.updates-table td {
    text-align: left;
    padding: 0.75rem 0.7rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    vertical-align: top;
}

.updates-table th {
    color: var(--dark-color);
    font-weight: 800;
    background: rgba(245, 248, 250, 0.9);
    position: sticky;
    top: 0;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.link:hover {
    text-decoration: underline;
}

.kb-search input {
    width: 100%;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    outline: none;
    margin-bottom: 1rem;
}

.kb-search input:focus {
    border-color: rgba(58, 123, 181, 0.9);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.15);
}

.kb-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.75rem;
    background: rgba(245, 248, 250, 0.55);
}

.kb-item summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--dark-color);
}

.kb-item p {
    margin-top: 0.65rem;
    color: var(--gray);
}

/* About */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.about-card {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 1.5rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 0.35rem 0;
}

.about-news {
    list-style: none;
}

.about-news li {
    margin-bottom: 0.6rem;
}

.section-lead {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Content sections */
.hero-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2a40 100%);
    color: var(--white);
    text-align: center;
}

.hero-section h1 {
    margin-bottom: 1rem;
    font-size: 2.75rem;
    font-weight: 700;
}

.hero-section p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-section.bg-light {
    background: var(--light-color);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.25rem;
}

/* Representatives + Leasing (info sections) */
.reps-section {
    padding: 5rem 0;
    background: var(--white);
}

.leasing-section {
    padding: 5rem 0;
    background: var(--light-color);
}

/* Legal / Privacy */
.legal-section {
    padding: 5rem 0;
    background: var(--white);
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.legal-content p {
    line-height: 1.75;
    margin: 0.85rem 0;
    color: var(--gray);
}

.legal-content ul {
    margin: 0.75rem 0 1rem 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

html[dir="rtl"] .legal-content ul {
    margin-left: 0;
    margin-right: 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.info-card > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.muted {
    color: var(--gray);
    margin: 0.15rem 0 0.85rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-row {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-row .fineprint {
    margin-top: 0;
    max-width: 760px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.shop-search input,
.shop-filters select {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    min-width: 260px;
    font-size: 1rem;
    outline: none;
}

.shop-search input:focus,
.shop-filters select:focus {
    border-color: rgba(58, 123, 181, 0.9);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.15);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.shop-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shop-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.shop-item__img {
    height: 160px;
    background: linear-gradient(135deg, rgba(26, 77, 124, 0.12), rgba(44, 95, 141, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-item__body {
    padding: 1rem;
}

.shop-item__title {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.shop-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
}

.price {
    font-weight: 800;
    color: var(--dark-color);
}

.pill {
    font-size: 0.8rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(58, 123, 181, 0.12);
    color: var(--secondary-color);
    border: 1px solid rgba(58, 123, 181, 0.18);
    white-space: nowrap;
}

.shop-item__desc {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 0.9rem;
    min-height: 2.6em;
}

.shop-item__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-item__actions .btn {
    padding: 0.55rem 1rem;
    border-radius: 10px;
}

/* Drawer & modal */
.drawer,
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.drawer.is-open,
.modal.is-open {
    display: block;
}

.drawer__backdrop,
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

.drawer__header,
.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.drawer__body,
.modal__body {
    padding: 1rem 1.2rem;
    overflow: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-item__title {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item__meta {
    color: var(--gray);
    font-size: 0.92rem;
    margin-top: 0.15rem;
}

.qty {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.qty button {
    border: 1px solid rgba(0,0,0,0.12);
    background: var(--white);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.qty span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.cart-summary {
    padding-top: 1rem;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
}

.fineprint {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.download-gate {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.download-gate .fineprint {
    margin: 0;
}

.modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, 92vw);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.form-row {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.form-row label {
    font-weight: 700;
    color: var(--dark-color);
}

.form-row input {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    outline: none;
}

.form-row textarea {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    outline: none;
    resize: vertical;
    min-height: 120px;
 }

.form-row input:focus {
    border-color: rgba(58, 123, 181, 0.9);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.15);
}

.form-row textarea:focus {
    border-color: rgba(58, 123, 181, 0.9);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.15);
}

.divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 1rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 4rem 0 2rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Products: compact 3-up layout (homepage) */
.product-grid--compact {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card--compact .product-image img {
    height: 210px;
}

.product-card--compact .product-info {
    padding: 1.25rem;
}

.product-card--compact .product-info h3 {
    font-size: 1.4rem;
}

.product-card--compact .product-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.product-card--compact .product-info p {
    margin-bottom: 1.1rem;
    line-height: 1.65;
}

.product-card--compact .product-features {
    margin-bottom: 1.25rem;
}

.product-card--compact .product-features li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card.featured {
    border-top: 4px solid var(--primary-color);
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Products: quick compare panel */
.product-compare {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin: 0 auto 2rem;
}

.product-compare__title {
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.compare-table th,
.compare-table td {
    text-align: left;
    padding: 0.75rem 0.7rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    vertical-align: top;
}

.compare-table thead th {
    color: var(--dark-color);
    font-weight: 900;
    background: rgba(245, 248, 250, 0.9);
}

.compare-table tbody th {
    font-weight: 800;
    color: var(--text-color);
    width: 34%;
}

.compare-note {
    margin-top: 0.75rem;
    color: var(--gray);
}

/* Accessories Grid */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.accessory-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.accessory-card:hover {
    transform: translateY(-5px);
}

.accessory-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Image lightbox (full-size preview) */
body.img-lightbox-open {
    overflow: hidden;
}

.zoomable-img {
    cursor: zoom-in;
}

.zoomable-img:focus {
    outline: 3px solid rgba(58, 123, 181, 0.65);
    outline-offset: 2px;
}

.img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-lightbox[hidden] {
    display: none;
}

.img-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
}

.img-lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 94vw);
    max-height: 92vh;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.img-lightbox__img {
    display: block;
    max-width: 92vw;
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
}

.img-lightbox__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.img-lightbox__close:hover {
    background: rgba(0,0,0,0.6);
}

.accessory-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 1rem 1rem 0.5rem;
}

.accessory-card p {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.accessory-card .btn {
    margin: 0 1rem 1.5rem;
}

/* Upgrade Section */
.upgrade-section {
    padding: 5rem 0;
    background: var(--white);
}

.upgrade-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.upgrade-image {
    flex: 1;
}

.upgrade-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.upgrade-text {
    flex: 1;
}

.upgrade-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upgrade-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.upgrade-benefits {
    list-style: none;
    margin: 2rem 0;
}

.upgrade-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.upgrade-steps {
    margin-top: 3rem;
}

.upgrade-steps__title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Footer contact form */
.footer .contact-form {
    margin-top: 1.25rem;
}

.footer .contact-form .form-row label {
    color: var(--white);
}

.footer .contact-form input,
.footer .contact-form textarea {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: var(--white);
}

.footer .contact-form input::placeholder,
.footer .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.65);
}

.footer .contact-form input:focus,
.footer .contact-form textarea:focus {
    border-color: rgba(255,255,255,0.55);
    box-shadow: 0 0 0 4px rgba(58, 123, 181, 0.22);
}

.footer .contact-form input[type="email"] {
    direction: ltr;
}

.contact-form__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer .contact-form__msg {
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.footer .contact-form__msg.is-error {
    color: rgba(255, 180, 180, 0.95);
}

.footer .contact-form__msg.is-success {
    color: rgba(180, 255, 210, 0.95);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-news {
    list-style: none;
}

.footer-news li {
    margin-bottom: 0.8rem;
}

.footer-news a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
}

.footer-news a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .slide-text h2 {
        font-size: 2.5rem;
    }

    .upgrade-content {
        flex-direction: column;
    }

    .product-grid:not(.product-grid--compact) {
        grid-template-columns: 1fr;
    }

    .product-grid--compact {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .support-split {
        grid-template-columns: 1fr;
    }
    .help-cta__grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
        gap: 2.25rem;
        max-width: 920px;
    }

    .help-cta__icon {
        width: 110px;
        height: 110px;
    }

    .help-cta__icon svg {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 1.5rem 0;
    }

    .main-nav.is-open {
        right: 0;
    }

    .main-nav ul {
        gap: 0.25rem;
        font-size: 0.95rem;
        flex-direction: column;
        padding: 0 1rem;
    }

    .main-nav .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        color: var(--text-color);
        background: transparent;
        border: none;
        border-radius: 6px;
    }

    .main-nav .nav-link:hover {
        background: var(--light-color);
        color: var(--primary-color);
    }

    .main-nav .nav-item.has-dropdown {
        width: 100%;
    }

    .main-nav .nav-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav .nav-toggle::after {
        content: '▼';
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .main-nav .nav-item.is-open .nav-toggle::after {
        transform: rotate(180deg);
    }

    /* Keep dropdown as an overlay so it doesn't push sections down */
    .nav-dropdown {
        position: static;
        box-shadow: none;
        background: var(--light-color);
        border-radius: 8px;
        margin: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 1rem;
    }

    .nav-item.is-open .nav-dropdown {
        max-height: 600px;
        padding: 1rem;
        left: 0;
        right: auto;
        display: none;
        min-width: min(92vw, 360px);
        max-width: 92vw;
        grid-template-columns: 1fr;
        border: 1px solid rgba(0,0,0,0.10);
        box-shadow: 0 18px 45px rgba(0,0,0,0.14);
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .nav-item.is-open > .nav-dropdown {
        display: grid;
    }

    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .slide-content {
        flex-direction: column;
        padding: 3rem 20px;
        text-align: center;
        gap: 2rem;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slide-buttons {
        justify-content: center;
    }

    .slider-btn {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }

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

    .accessories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .help-cta {
        padding: 4rem 0;
    }

    .help-cta__lead {
        font-size: 1.05rem;
        margin-bottom: 2.25rem;
    }

    .help-cta__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        display: none;
    }

    .slide-text h2 {
        font-size: 1.5rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-grid:not(.product-grid--compact) {
        grid-template-columns: 1fr;
    }

    .product-grid--compact {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* RTL support (Hebrew) */
html[dir="rtl"],
body[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

html[dir="rtl"] .main-nav .nav-link {
    text-align: right;
}

html[dir="rtl"] .nav-dropdown {
    left: auto;
    right: 0;
}

html[dir="rtl"] .nav-dropdown--right {
    right: 0;
}

html[dir="rtl"] .slide-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .slide-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .slider-btn.prev {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .slider-btn.next {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .support-split {
    direction: rtl;
}

html[dir="rtl"] .drawer__panel {
    right: auto;
    left: 0;
    box-shadow: 10px 0 40px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    html[dir="rtl"] .main-nav ul {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.accessory-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   Government Units Page Styles
   =========================== */

/* Page Hero */
.page-hero {
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.page-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero__lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero__lead {
        font-size: 1.125rem;
    }

    .page-hero {
        padding: 3rem 0;
    }
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--light-gray);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.pricing-card--featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.pricing-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card__header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-card__header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-card__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.pricing-card__body {
    padding: 2rem;
}

.pricing-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-card__features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__footer {
    padding: 0 2rem 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.75rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(26, 77, 124, 0.3);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.timeline-duration {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Info Grid & Info Cards */
.info-grid {
    display: grid;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-arrow:hover {
    color: var(--primary-color);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

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

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

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

.faq-item[open] summary::before {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Form Styles for Gov Units */
.contact-form .form-row-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message:empty {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }

    .timeline::before {
        left: 0.75rem;
    }

    .timeline-marker {
        left: -1.75rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .pricing-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

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