/* ==========================================================
   AYS Electronics Ltd. — Stylesheet
   ========================================================== */

:root {
    --color-bg: #ffffff;
    --color-surface: #f6f8fb;
    --color-text: #0d1b2a;
    --color-muted: #4a5b70;
    --color-primary: #0a6cf1;
    --color-primary-dark: #0852b8;
    --color-accent: #00c2a8;
    --color-border: #e3e8ef;
    --color-dark: #0d1b2a;
    --shadow-sm: 0 2px 6px rgba(13, 27, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --container: 1200px;
    --font-en: 'Inter', system-ui, -apple-system, sans-serif;
    --font-he: 'Heebo', system-ui, -apple-system, sans-serif;
    --font: var(--font-en);
    --font-scale: 1;
    --transition: 0.25s ease;
}

html[lang="he"] {
    --font: var(--font-he);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: calc(16px * var(--font-scale));
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover, a:focus-visible { color: var(--color-primary-dark); }

h1, h2, h3 {
    line-height: 1.2;
    margin: 0 0 0.6em;
    color: var(--color-dark);
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--color-muted); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
    color: #fff;
    outline: 3px solid var(--color-accent);
}

/* Accessible focus styles */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.9rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-dark);
    font-weight: 700;
}
.logo:hover { color: var(--color-dark); }
.logo img { width: 64px; height: 64px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-size: 1.5rem; letter-spacing: 0.02em; }
.logo-text small { font-size: 0.82rem; color: var(--color-muted); margin-top: 3px; font-weight: 500; }

.main-nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    position: relative;
}
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: transform var(--transition), opacity var(--transition);
}

.lang-switch {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 3px;
    background: #fff;
}
.lang-switch button {
    border: 0;
    background: transparent;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-muted);
    transition: var(--transition);
}
.lang-switch button.active {
    background: var(--color-dark);
    color: #fff;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-border);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #061a10 0%, #0d3a23 50%, #0d8a3e 100%);
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 230, 118, 0.18) 0, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(13, 138, 62, 0.45) 0, transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.circuit-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
    will-change: opacity;
}
@media (prefers-reduced-motion: reduce) {
    .circuit-canvas { display: none; }
}

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero h1 { color: #fff; }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 620px;
}
.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 230, 118, 0.18);
    color: #5cffa3;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(0, 230, 118, 0.35);
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-cta .btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.hero-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: #fff;
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stats span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-head p { font-size: 1.05rem; }

.eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ===== About ===== */
.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.check-list li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--color-text);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--color-accent);
    font-weight: 800;
}
html[dir="rtl"] .check-list li {
    padding: 0.5rem 1.8rem 0.5rem 0;
}
html[dir="rtl"] .check-list li::before {
    left: auto;
    right: 0;
}

/* ===== Services ===== */
.services { background: var(--color-surface); }
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 108, 241, 0.3);
}
.card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border-radius: 12px;
    margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.95rem; }

/* ===== Clients ===== */
.clients {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.clients::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(10, 108, 241, 0.04) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 194, 168, 0.04) 0, transparent 40%);
    pointer-events: none;
}
.clients > .container { position: relative; }

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

.client-card {
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 180px;
    position: relative;
}
.client-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: var(--transition);
}
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 108, 241, 0.25);
}
.client-card:hover::after { opacity: 1; }

.client-logo {
    width: 100%;
    max-width: 220px;
    transition: var(--transition);
    filter: saturate(0.95);
}
.client-logo svg,
.client-logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    display: block;
}
.client-card:hover .client-logo {
    filter: saturate(1.1);
    transform: scale(1.02);
}

.client-name {
    font-size: 0.78rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-align: center;
}

.clients-more {
    text-align: center;
    margin: 2.5rem auto 0;
    font-size: 1rem;
    color: var(--color-muted);
    font-style: italic;
    max-width: 640px;
}

/* ===== Design Tools ===== */
.tools { background: var(--color-surface); }
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.tool-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 108, 241, 0.25);
}
.tool-logo {
    width: 200px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool-logo svg,
.tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tool-card h3 { margin-bottom: 0.5rem; }
.tool-card p { margin: 0; font-size: 0.95rem; }

/* ===== Expertise ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature {
    padding: 1.5rem;
    border-left: 3px solid var(--color-primary);
    background: var(--color-surface);
    border-radius: 0 var(--radius) var(--radius) 0;
}
html[dir="rtl"] .feature {
    border-left: 0;
    border-right: 3px solid var(--color-primary);
    border-radius: var(--radius) 0 0 var(--radius);
}
.feature-num {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}
.feature h3 { margin-top: 0.4rem; }
.feature p { margin: 0; font-size: 0.95rem; }

/* ===== Contact ===== */
.contact { background: var(--color-surface); }
.contact-info {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1rem;
}
.contact-info li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.2rem;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}
.contact-info strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    font-weight: 700;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.field { margin-bottom: 1.1rem; }
.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-dark);
}
.field input,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--color-text);
    transition: var(--transition);
}
.field input:focus,
.field textarea:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(10, 108, 241, 0.15);
}
.contact-form .btn { width: 100%; }

/* ===== Social Links ===== */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.social-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-inline-end: 0.25rem;
}
.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-dark);
    transition: var(--transition);
}
.social-links a:hover, .social-links a:focus-visible {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}
.footer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}
.footer-social a:hover, .footer-social a:focus-visible {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* ===== Accessibility Statement Section ===== */
.a11y-section { background: #fff; padding: 4rem 0; }
.a11y-section .container { max-width: 900px; }

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.site-footer p { color: inherit; margin: 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--color-accent); }

/* ===== Accessibility Toggle Button ===== */
.a11y-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: grid;
    place-items: center;
    transition: var(--transition);
}
html[dir="rtl"] .a11y-toggle { right: auto; left: 24px; }
.a11y-toggle:hover, .a11y-toggle:focus-visible {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

/* ===== Accessibility Panel ===== */
.a11y-panel {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 998;
    border: 1px solid var(--color-border);
    overflow: hidden;
}
html[dir="rtl"] .a11y-panel { right: auto; left: 24px; }
.a11y-panel[hidden] { display: none; }

.a11y-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--color-dark);
    color: #fff;
}
.a11y-header h2 { margin: 0; color: #fff; font-size: 1.1rem; }
.a11y-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}
.a11y-controls { padding: 1.2rem; }
.a11y-group { margin-bottom: 1.1rem; }
.a11y-group h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin: 0 0 0.5rem;
}
.a11y-buttons {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.a11y-buttons button {
    flex: 1;
    min-width: 70px;
    padding: 0.5rem 0.6rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
}
.a11y-buttons button:hover, .a11y-buttons button:focus-visible {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.a11y-buttons button.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.a11y-reset-all {
    width: 100%;
    padding: 0.7rem;
    background: var(--color-dark);
    color: #fff;
    border: 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
}
.a11y-statement {
    margin: 0.8rem 0 0;
    font-size: 0.85rem;
    text-align: center;
}

/* ===== Accessibility Modes ===== */
body.a11y-high-contrast {
    --color-bg: #000;
    --color-surface: #000;
    --color-text: #fff;
    --color-muted: #ffe600;
    --color-primary: #ffe600;
    --color-primary-dark: #ffec47;
    --color-accent: #ffe600;
    --color-border: #fff;
    --color-dark: #000;
}
body.a11y-high-contrast h1,
body.a11y-high-contrast h2,
body.a11y-high-contrast h3 { color: #fff; }
body.a11y-high-contrast .hero { background: #000; }
body.a11y-high-contrast .card,
body.a11y-high-contrast .contact-info li,
body.a11y-high-contrast .contact-form,
body.a11y-high-contrast .feature { background: #000; border-color: #fff; }
body.a11y-high-contrast .site-header { background: #000; }
body.a11y-high-contrast .btn-primary,
body.a11y-high-contrast .lang-switch button.active { background: #ffe600; color: #000; }

body.a11y-inverted { filter: invert(1) hue-rotate(180deg); }
body.a11y-inverted img { filter: invert(1) hue-rotate(180deg); }

body.a11y-grayscale { filter: grayscale(1); }
body.a11y-grayscale.a11y-inverted { filter: grayscale(1) invert(1) hue-rotate(180deg); }

body.a11y-highlight-links a {
    background: #ffe600 !important;
    color: #000 !important;
    text-decoration: underline !important;
    padding: 0 4px;
    border-radius: 3px;
}

body.a11y-readable-font,
body.a11y-readable-font * {
    font-family: Arial, Verdana, sans-serif !important;
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
}

/* ===== RTL adjustments ===== */
html[dir="rtl"] .main-nav ul { flex-direction: row-reverse; }
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .hero-stats { direction: rtl; }
html[dir="rtl"] .footer-inner { direction: rtl; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .section { padding: 3.5rem 0; }
    .hero { padding: 3.5rem 0 4.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stats strong { font-size: 1.6rem; }
}

@media (max-width: 720px) {
    .menu-toggle { display: block; }
    .main-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .main-nav ul.open {
        max-height: 400px;
    }
    .main-nav li { width: 100%; }
    .main-nav a {
        display: block;
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }
    .main-nav a::after { display: none; }
    .header-inner { gap: 1rem; }
    .logo-text small { display: none; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
