/* ===== FONTS ===== */
@font-face { font-family:"Benzin"; src:url("../fonts/Benzin Regular.ttf") format("truetype"); font-weight:400; font-display:swap; }
@font-face { font-family:"Benzin"; src:url("../fonts/Benzin Medium.ttf") format("truetype"); font-weight:500; font-display:swap; }
@font-face { font-family:"Benzin"; src:url("../fonts/Benzin Semibold.ttf") format("truetype"); font-weight:600; font-display:swap; }
@font-face { font-family:"Benzin"; src:url("../fonts/Benzin Bold.ttf") format("truetype"); font-weight:700; font-display:swap; }
@font-face { font-family:"Benzin"; src:url("../fonts/Benzin Extra Bold.ttf") format("truetype"); font-weight:800; font-display:swap; }

/* ===== BASE ===== */
:root {
    --purple: #7C3AED;
    --purple-dark: #6D28D9;
    --gray: #6B7280;
    --light: #F3F4F6;
    --border: #E5E7EB;
}

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

body {
    font-family: "Benzin", "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

h1,h2,h3,h4,h5,h6 {
    font-family: "Benzin", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

a { text-decoration: none; color: inherit; }

.text-purple { color: var(--purple) !important; }

.section-spacing { padding: 4rem 0; }

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
}

.section-desc {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.6;
    max-width: 480px;
    margin-top: 0.75rem;
}

@media (min-width:768px) {
    .section-title { font-size: 2.2rem; }
}

/* ===== BUTTONS ===== */
.btn-purple {
    display: inline-block;
    background: var(--purple);
    color: #fff;
    font-family: "Benzin", sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-purple:hover { background: var(--purple-dark); color: #fff; }

.btn-outline {
    display: inline-block;
    border: 2px solid var(--purple);
    color: var(--purple);
    font-family: "Benzin", sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    padding: 0.45rem 1.4rem;
    transition: all 0.2s;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

/* ===== NAVBAR ===== */
.navbar-nyza {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 0.6rem 0;
    z-index: 1000;
}
.navbar-nyza .navbar-brand img { height: 26px; }
.navbar-nyza .nav-link {
    font-family: "Benzin", sans-serif;
    font-weight: 700;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    padding: 0.4rem 0.6rem !important;
    transition: color 0.2s;
}
.navbar-nyza .nav-link:hover { color: var(--purple); }

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(124,58,237,0.07);
    top: -50px; left: 10%;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: rgba(124,58,237,0.05);
    bottom: 0; right: 10%;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
@media (min-width:768px) { .hero-title { font-size: 2.8rem; } }

.hero-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 1rem auto 1.5rem;
}

.hero-devices {
    position: relative;
    max-width: 700px;
    margin: 2.5rem auto 0;
}

.hero-device-tablet {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    position: relative;
    z-index: 1;
}

.hero-device-phone {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 30%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    z-index: 2;
}

@media (min-width:768px) {
    .hero-device-phone { right: 2%; bottom: 0; width: 28%; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width:768px) { .trust-logos { gap: 2.5rem; } }

.trust-logo {
    font-family: "Benzin", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #D1D5DB;
    cursor: default;
    transition: color 0.2s;
}
.trust-logo:hover { color: var(--purple); }

/* ===== REFERENCES ===== */
.ref-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.ref-card > img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.ref-card:hover > img { transform: scale(1.04); }

.ref-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}

.ref-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    z-index: 2;
}
.ref-label p {
    color: #fff;
    font-family: "Benzin", sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

.marquee-track span {
    font-family: "Benzin", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot { color: var(--purple); margin: 0 0.5rem; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (min-width:768px) {
    .marquee-track span { font-size: 4.5rem; }
    .marquee-dot { margin: 0 0.75rem; }
}

/* ===== PRODUCTS ===== */
.product-monitor { text-align: center; }
.product-monitor img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.product-features {
    background: var(--light);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.15rem 0;
    font-size: 0.45rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray);
    margin-top: 1rem;
}
.product-features .feat-dot {
    color: var(--purple);
    margin: 0 0.4rem;
    font-size: 0.6rem;
}

.btn-price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple);
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-family: "Benzin", sans-serif;
    transition: background 0.2s;
}
.btn-price:hover { background: var(--purple-dark); color: #fff; }
.price-value { font-weight: 800; font-size: 1.3rem; }
.price-unit { font-weight: 400; font-size: 0.7rem; opacity: 0.7; }
.price-arrow { font-size: 1.1rem; }

/* ===== BENTO GRID ===== */
.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

@media (min-width:768px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

.bento-item {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.bento-item.bento-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.bento-purple { background: var(--purple); }
.bento-light { background: var(--light); }
.bento-dark { background: #111; }

.bento-item.bento-purple,
.bento-item.bento-light {
    padding: 1rem;
    justify-content: space-between;
}

.bento-center-text {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.bento-logo-white {
    width: 65%;
    filter: brightness(0) invert(1);
}

.bento-small-text {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-heading-sm {
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    margin: 0;
}

.bento-heading-white {
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.bento-icon {
    width: 45%;
    max-width: 80px;
    height: auto;
    margin-top: 0.5rem;
}

.bento-photo {
    padding: 0 !important;
}
.bento-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.bento-img-contain {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.bento-big-number {
    font-family: "Benzin", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.bento-tiny-text {
    font-size: 0.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== FAQ ===== */
.faq-section { background: #fff; }

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.25rem;
}

.faq-divider {
    border: none;
    border-top: 2px solid #000;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.faq-section .accordion-item {
    border: 1px solid var(--border);
    border-radius: 0.6rem !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-family: "Benzin", sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.25rem;
    box-shadow: none !important;
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--purple);
    color: #fff;
}

.faq-section .accordion-button::after { filter: none; }
.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.7;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
}

/* ===== CONTACT ===== */
.contact-plane {
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
}

.contact-input {
    border: 1px solid var(--border) !important;
    border-radius: 0.5rem !important;
    padding: 0.6rem 0.8rem !important;
    font-family: "Benzin", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.55rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    transition: border-color 0.2s !important;
}
.contact-input::placeholder {
    color: #D1D5DB !important;
}
.contact-input:focus {
    border-color: var(--purple) !important;
    box-shadow: none !important;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
}

.footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.5rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width:768px) {
    .footer-row {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #9CA3AF;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple); }
