@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: rgba(18, 18, 18, 0.6);
    --bg-card-hover: rgba(28, 28, 30, 0.8);
    --bg-console: #09090b;
    
    --color-primary: #ffffff; /* Premium Pure White */
    --color-primary-glow: rgba(255, 255, 255, 0.15);
    
    --color-secondary: #00e575; /* Premium Emerald Accent */
    --color-secondary-glow: rgba(0, 229, 117, 0.2);
    
    --color-purple: #9d4edd; /* Premium Purple Accent */
    --color-purple-glow: rgba(157, 78, 221, 0.2);
    
    --color-cyan: #00f0ff;
    
    --text-primary: #ffffff;
    --text-muted: #8e8e93; /* Apple-style system gray */
    --text-dark: #000000;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    --font-hebrew: 'Assistant', sans-serif;
    --font-en: 'Outfit', sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Modern ultra-smooth ease-out */
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 50px;
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-hebrew);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 15%, rgba(0, 229, 117, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(157, 78, 221, 0.04) 0%, transparent 40%);
    background-size: 100% 100%;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-hebrew);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Navigation Pill */
header {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1000px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.8rem;
    z-index: 1000;
    transition: var(--transition-normal);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.logo-img--footer {
    width: 44px;
    height: 44px;
    border-radius: 11px;
}

.logo-text {
    white-space: nowrap;
}

.logo-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.1rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 30px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-download-pill {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.btn-download-pill:hover {
    background: #e5e5ea;
    transform: translateY(-1px);
}

.nav-menu-cta {
    display: none;
}

.btn-download-pill--nav {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: var(--radius-sm);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Premium Buttons */
.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-hebrew);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-normal);
}

.cyber-btn-primary {
    background: #ffffff;
    color: #000000;
}

.cyber-btn-primary:hover {
    background: #e5e5ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.cyber-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cyber-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    box-shadow: 0 0 6px var(--color-secondary);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    font-weight: 800;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title span {
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Download Badges */
.download-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a.badge-store--link {
    text-decoration: none;
    color: inherit;
}

.badge-store {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.badge-store:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
}

.badge-store:hover {
    border-color: #ffffff;
    background: #121212;
    transform: translateY(-2px);
}

.badge-store i {
    font-size: 1.4rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.badge-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.badge-main {
    font-weight: 700;
    font-size: 0.85rem;
}

/* Three phone mockups with in-frame screenshots (390×844 app aspect) */
.phone-showcase {
    --phone-aspect: 2.1641; /* 844 / 390 */
    --phone-w: clamp(92px, 20vw, 116px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    max-width: min(100%, 420px);
    margin: 2.5rem auto 0 auto;
    padding: 0 0.25rem;
    position: relative;
    overflow: visible;
    z-index: 10;
    animation: fadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-phone {
    --bezel: clamp(4px, 1.1vw, 9px);
    --radius-outer: clamp(20px, 5.5vw, 42px);
    --radius-inner: clamp(15px, 4.2vw, 34px);
    position: relative;
    flex: 0 0 var(--phone-w);
    width: var(--phone-w);
    height: auto; /* Let the height wrap the screen aspect-ratio perfectly! */
    padding: var(--bezel);
    background: linear-gradient(
        135deg,
        #6e6e73 0%,
        #3a3a3c 15%,
        #242426 40%,
        #151517 70%,
        #0a0a0b 100%
    );
    border-radius: var(--radius-outer);
    border: 1px solid rgba(255, 255, 255, 0.12); /* Clean titanium hairline border */
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.8), /* Dark bezel separation */
        0 24px 50px rgba(0, 0, 0, 0.65), /* Deep rich shadow */
        inset 0 1.5px 2px rgba(255, 255, 255, 0.28), /* Core titanium metallic highlight */
        inset 0 -1.5px 2px rgba(0, 0, 0, 0.6);
    overflow: visible;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease,
        box-shadow 0.45s ease;
    display: block;
    isolation: isolate;
}

/* Beautiful ambient neon glow bloom matching the screen colors */
.mockup-phone::before {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: inherit;
    background: var(--glow-color, transparent);
    filter: blur(24px);
    z-index: -1;
    opacity: 0.45;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-phone:hover::before {
    opacity: 0.8;
    filter: blur(28px);
}

.phone-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 390 / 844; /* Strictly lock to screenshot aspect ratio */
    border-radius: var(--radius-inner);
    overflow: hidden;
    background: #000;
    box-shadow:
        inset 0 0 0 1.5px rgba(0, 0, 0, 0.95),
        inset 0 0 12px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Dynamic Island with camera lens reflection */
.phone-island {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 3.8%;
    min-height: 8px;
    max-height: 18px;
    background: #000000;
    border-radius: 999px;
    z-index: 5;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.8),
        inset 0 -1px 1px rgba(255, 255, 255, 0.05);
}

.phone-island::after {
    content: "";
    position: absolute;
    right: 18%;
    top: 25%;
    width: 14%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 45, 90, 0.8) 0%, rgba(3, 15, 30, 0.2) 60%, transparent 100%);
    box-shadow: 
        0 0 2px rgba(0,0,0,0.5),
        inset 0 0.5px 0.5px rgba(255,255,255,0.15);
}

/* Home indicator */
.phone-home-indicator {
    position: absolute;
    bottom: 1.6%;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: clamp(3px, 0.45vw, 5px);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

/* Interactive shifting glass reflection glare */
.phone-glare {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.06) 22%,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: inherit;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
    transform: translateX(-40%) translateY(-20%) rotate(5deg) scale(1.4);
    opacity: 0.85;
}

.mockup-phone:hover .phone-glare {
    transform: translateX(10%) translateY(5%) rotate(5deg) scale(1.4);
    opacity: 1;
}

/* Extruded physical side hardware buttons */
.phone-btn {
    position: absolute;
    z-index: 2;
    background: linear-gradient(to bottom, #5a5a5e, #2c2c2e);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.5),
        inset 0 0.5px 0.5px rgba(255,255,255,0.25);
    transition: background 0.3s ease;
}

.phone-btn--power {
    right: -2px; /* Extrude outward */
    top: 24%;
    width: clamp(2px, 0.4vw, 4px);
    height: 11%;
    border-radius: 0 3px 3px 0;
}

.phone-btn--silent {
    left: -2px;
    top: 18%;
    width: clamp(2px, 0.4vw, 4px);
    height: 5%;
    border-radius: 3px 0 0 3px;
}

.phone-btn--vol-up {
    left: -2px;
    top: 26%;
    width: clamp(2px, 0.4vw, 4px);
    height: 8%;
    border-radius: 3px 0 0 3px;
}

.phone-btn--vol-down {
    left: -2px;
    top: 36%;
    width: clamp(2px, 0.4vw, 4px);
    height: 8%;
    border-radius: 3px 0 0 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #000000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 0.8rem;
    scrollbar-width: none;
    flex: 1;
    min-height: 0;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* App screenshots — full UI visible inside frame */
.phone-screen-img {
    position: absolute;
    inset: 0;
    padding: 0;
    overflow: hidden;
    background: #050505;
    border-radius: 0;
}

.phone-screen-img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* CHANGED FROM contain TO cover for a perfect borderless fit */
    object-position: center top;
    border-radius: 0;
    user-select: none;
    -webkit-user-drag: none;
}

/* Mobile / narrow: flex row — all three visible, overlapping slightly */
.phone-left {
    --glow-color: rgba(161, 68, 255, 0.35); /* Cyber Purple Glow */
    z-index: 1;
    margin-inline-end: calc(var(--phone-w) * -0.22);
    transform: rotate(-7deg) translateY(6px) scale(0.92);
    opacity: 0.88;
}

.phone-middle {
    --glow-color: rgba(0, 229, 117, 0.30); /* Cyber Green Glow */
    z-index: 3;
    --phone-w: clamp(104px, 23vw, 132px);
    width: var(--phone-w);
    flex: 0 0 var(--phone-w);
    height: auto;
    margin-inline: calc(var(--phone-w) * -0.12);
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 32px 64px rgba(0, 0, 0, 0.82),
        0 0 48px rgba(0, 229, 117, 0.08);
}

.phone-right {
    --glow-color: rgba(0, 245, 255, 0.35); /* Cyber Cyan Glow */
    z-index: 2;
    margin-inline-start: calc(var(--phone-w) * -0.22);
    transform: rotate(7deg) translateY(6px) scale(0.92);
    opacity: 0.88;
}

@media (hover: hover) {
    .phone-showcase:hover .phone-left {
        transform: rotate(-8deg) translateY(2px) scale(0.94);
        opacity: 1;
    }

    .phone-showcase:hover .phone-right {
        transform: rotate(8deg) translateY(2px) scale(0.94);
        opacity: 1;
    }

    .phone-showcase:hover .phone-middle {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Tablet+ — fan layout with absolute positioning */
@media (min-width: 768px) {
    .phone-showcase {
        --phone-w: 118px;
        display: block;
        height: 320px; /* Mathematically adjusted to clear tallest phone bounds */
        max-width: min(100%, 520px);
        min-height: 0;
        padding: 0;
    }

    .mockup-phone {
        position: absolute;
        left: 50%;
        bottom: 0;
        margin-inline: 0;
        flex: none;
        width: var(--phone-w);
        height: auto;
        --bezel: 7px;
        --radius-outer: 34px;
        --radius-inner: 28px;
        transform-origin: center bottom;
    }

    .phone-left {
        margin: 0;
        transform: translate(calc(-50% + 72px), 12px) rotate(-8deg) scale(0.9);
        opacity: 0.82;
    }

    .phone-middle {
        --phone-w: 138px;
        width: var(--phone-w);
        height: auto;
        margin: 0;
        transform: translate(-50%, 0);
    }

    .phone-right {
        margin: 0;
        transform: translate(calc(-50% - 72px), 12px) rotate(8deg) scale(0.9);
        opacity: 0.82;
    }

    .phone-showcase:hover .phone-left {
        transform: translate(calc(-50% + 92px), 6px) rotate(-10deg) scale(0.93);
        opacity: 1;
    }

    .phone-showcase:hover .phone-right {
        transform: translate(calc(-50% - 92px), 6px) rotate(10deg) scale(0.93);
        opacity: 1;
    }

    .phone-showcase:hover .phone-middle {
        transform: translate(-50%, -8px) scale(1.02);
    }
}

@media (min-width: 1024px) {
    .phone-showcase {
        --phone-w: 168px;
        height: 450px; /* Mathematically adjusted from 400px to fit 198px width */
        max-width: min(100%, 680px);
        margin-top: 2.5rem;
    }

    .phone-left {
        transform: translate(calc(-50% + 96px), 14px) rotate(-8deg) scale(0.92);
        opacity: 0.88;
    }

    .phone-middle {
        --phone-w: 198px;
        width: var(--phone-w);
        height: auto;
    }

    .phone-right {
        transform: translate(calc(-50% - 96px), 14px) rotate(8deg) scale(0.92);
        opacity: 0.88;
    }

    .phone-showcase:hover .phone-left {
        transform: translate(calc(-50% + 124px), 6px) rotate(-10deg) scale(0.95);
    }

    .phone-showcase:hover .phone-right {
        transform: translate(calc(-50% - 124px), 6px) rotate(10deg) scale(0.95);
    }

    .phone-showcase:hover .phone-middle {
        transform: translate(-50%, -10px) scale(1.02);
    }
}

/* Desktop / PC — hero phone showcase */
@media (min-width: 1280px) {
    .phone-showcase {
        --phone-w: 188px;
        height: 520px; /* Mathematically adjusted from 460px to fit 228px width */
        max-width: min(100%, 860px);
        margin-top: 2.75rem;
    }

    .mockup-phone {
        --bezel: 8px;
        --radius-outer: 38px;
        --radius-inner: 30px;
    }

    .phone-left {
        transform: translate(calc(-50% + 108px), 16px) rotate(-8deg) scale(0.92);
    }

    .phone-middle {
        --phone-w: 228px;
        width: var(--phone-w);
        height: auto;
    }

    .phone-right {
        transform: translate(calc(-50% - 108px), 16px) rotate(8deg) scale(0.92);
    }

    .phone-showcase:hover .phone-left {
        transform: translate(calc(-50% + 138px), 8px) rotate(-10deg) scale(0.94);
    }

    .phone-showcase:hover .phone-right {
        transform: translate(calc(-50% - 138px), 8px) rotate(10deg) scale(0.94);
    }

    .phone-showcase:hover .phone-middle {
        transform: translate(-50%, -12px) scale(1.02);
    }
}

@media (min-width: 1440px) {
    .phone-showcase {
        --phone-w: 200px;
        height: 570px; /* Mathematically adjusted from 480px to fit 248px width */
        max-width: min(100%, 920px);
    }

    .mockup-phone {
        --bezel: 9px;
        --radius-outer: 42px;
        --radius-inner: 34px;
    }

    .phone-middle {
        --phone-w: 248px;
        width: var(--phone-w);
        height: auto;
    }

    .phone-left {
        transform: translate(calc(-50% + 118px), 18px) rotate(-8deg) scale(0.93);
    }

    .phone-right {
        transform: translate(calc(-50% - 118px), 18px) rotate(8deg) scale(0.93);
    }

    .phone-showcase:hover .phone-left {
        transform: translate(calc(-50% + 148px), 8px) rotate(-10deg) scale(0.95);
    }

    .phone-showcase:hover .phone-right {
        transform: translate(calc(-50% - 148px), 8px) rotate(10deg) scale(0.95);
    }
}

/* FAQ (SEO + UX) */
.faq-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
}

.faq-lead {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.25rem 1.25rem;
    backdrop-filter: blur(12px);
    transition: border-color var(--transition-fast);
}

.faq-item[open] {
    border-color: rgba(0, 229, 117, 0.35);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    padding: 1rem 0;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: left;
    font-family: var(--font-en);
    color: var(--color-secondary);
    font-weight: 600;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 1.1rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

.faq-item a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Premium Card styling */
.cyber-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.cyber-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

/* Pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* Roadmaps Section Layout */
.roadmap-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.roadmap-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
}

.roadmap-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 520px;
    overflow-y: auto;
    padding-inline-end: 0.5rem;
}

.roadmap-menu-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roadmap-menu-item:hover, .roadmap-menu-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.roadmap-menu-item.active {
    background: rgba(255, 255, 255, 0.08);
}

.menu-item-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.roadmap-menu-item.active .menu-item-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.menu-item-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.menu-item-nodes {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.roadmap-display-card {
    border-color: rgba(255, 255, 255, 0.08);
}

.roadmap-display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.roadmap-display-title-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
}

.roadmap-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.roadmap-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.roadmap-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.roadmap-bullet i {
    color: #ffffff;
    font-size: 0.8rem;
}

/* Console Simulator Demo Layout */
.simulator-demo {
    background: #000000;
}

.sim-container {
    max-width: 820px;
    margin: 0 auto;
}

.console-container {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.console-header {
    background: #121214;
    padding: 0.8rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-title {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.console-lights {
    display: flex;
    gap: 0.4rem;
}

.console-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.console-modes-nav {
    display: flex;
    background: #09090b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-mode-btn {
    flex: 1;
    padding: 0.8rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.console-mode-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 -2px 0 #ffffff;
}

.console-body {
    padding: 1.8rem;
    min-height: 360px;
}

.sim-pane {
    display: none;
}

.sim-pane.active {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeIn 0.4s ease-out;
}

.sim-terminal {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    font-family: monospace;
    color: #e4e4e7;
    direction: ltr;
    text-align: left;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.term-line.prompt::before {
    content: '$ ';
    color: #ffffff;
}

.term-line.success {
    color: var(--color-secondary);
}

.sim-input-row {
    display: flex;
    gap: 0.8rem;
    direction: ltr;
}

.sim-input {
    flex: 1;
    background: #0c0c0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: monospace;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    outline: none;
    transition: var(--transition-fast);
}

.sim-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
}

.sim-hint-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
}

.sim-hint-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sim-hint-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* IDF Units Hub Style */
.idf-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.idf-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.idf-tab-btn:hover, .idf-tab-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.idf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.idf-card-title h3 {
    font-size: 1.8rem;
}

.idf-card-title p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.idf-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.idf-card-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.idf-unit-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.idf-unit-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.6rem;
}

.metric-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.metric-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing Grid Clean style */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.pricing-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.pricing-label.active {
    color: #ffffff;
}

.pricing-switch-bg {
    width: 52px;
    height: 28px;
    background: #1c1c1e;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.pricing-switch-handle {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
    transition: var(--transition-normal);
}

.pricing-switch-bg.yearly .pricing-switch-handle {
    right: 27px;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-inline-start: 0.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card-header {
    margin-bottom: 1.8rem;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-val-container {
    display: flex;
    align-items: baseline;
    margin-top: 1.2rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-value {
    font-family: var(--font-en);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-feature i {
    margin-top: 0.2rem;
    font-size: 0.8rem;
    color: #ffffff;
}

.pricing-feature.disabled {
    opacity: 0.25;
}

/* FAQ Clean style */
.faq-list {
    max-width: 760px;
    margin: 2.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: right;
    font-family: var(--font-hebrew);
}

.faq-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer & Disclaimers */
footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 40px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-grid-four {
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-link a:hover {
    color: #ffffff;
}

.disclaimer-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-badge-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

body.nav-menu-open {
    overflow: hidden;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .roadmap-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-menu {
        max-height: 240px;
    }
    
    .idf-card-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    header {
        width: calc(100% - 1.5rem);
        padding: 0.45rem 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 0.15rem;
        background: rgba(10, 10, 10, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        padding: 0.65rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
        max-height: min(70vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 0.85rem;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-menu-cta {
        display: list-item;
        list-style: none;
        margin-top: 0.25rem;
        padding-top: 0.35rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-container {
        position: relative;
        gap: 0.5rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.45rem;
        min-width: 0;
    }

    .logo-img {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    
    .hero {
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
        line-height: 1.35;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
        margin-bottom: 1rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    .download-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        padding: 0 0.25rem;
    }

    .badge-store {
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .phone-showcase {
        max-width: 100%;
        margin-top: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cyber-card {
        padding: 1.5rem;
    }

    .disclaimer-box {
        font-size: 0.8rem;
        line-height: 1.55;
    }
    
    .footer-grid,
    .footer-grid-four {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Small phones — keep all three mockups, scaled down */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    header {
        width: calc(100% - 1rem);
    }

    .logo-badge {
        display: none;
    }

    .hero {
        padding-top: 6.75rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .phone-showcase {
        --phone-w: clamp(86px, 22vw, 110px);
        max-width: 100%;
        margin-top: 1.25rem;
    }

    .phone-middle {
        --phone-w: clamp(98px, 25vw, 125px);
    }

    .footer-badge-container .badge-store {
        max-width: none;
    }
}

/* Store badges — coming soon toast (no alert) */
.store-toast {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: min(92vw, 400px);
    padding: 1rem 1.15rem;
    background: rgba(18, 18, 20, 0.95);
    border: 1px solid rgba(0, 229, 117, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.store-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.store-toast__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 229, 117, 0.15);
    color: var(--color-secondary);
    font-size: 1rem;
}

.store-toast__body {
    flex: 1;
    min-width: 0;
}

.store-toast__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.store-toast__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.store-toast__close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    font-size: 1.1rem;
    line-height: 1;
    transition: color var(--transition-fast);
}

.store-toast__close:hover {
    color: #fff;
}

/* 404 page */
.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    text-align: center;
}

.page-404__code {
    font-family: var(--font-en);
    font-size: clamp(5rem, 18vw, 8rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.25) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.page-404__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
}

.page-404__desc {
    max-width: 28rem;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.page-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.page-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.page-404__btn--primary {
    background: #fff;
    color: #000;
}

.page-404__btn--primary:hover {
    background: var(--color-secondary);
    color: #000;
}

.page-404__btn--ghost {
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

.page-404__btn--ghost:hover {
    border-color: var(--border-hover);
    color: #fff;
}

.page-404__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: center;
    font-size: 0.9rem;
}

.page-404__links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.page-404__links a:hover {
    color: var(--color-secondary);
}

.page-404__logo {
    margin-bottom: 1.5rem;
}

.page-404__logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
