/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

/* iOS Safari data-detector override — prevents auto-detected phone/address/date links */
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

article.product-card {
    display: block;
}

:root {
    --black: #080808;
    --deep: #111111;
    --surface: #1a1a1a;
    --border: #2a2a2a;
    --gold: #c8a84b;
    --gold-dim: #8a7133;
    --white: #f0f0f0;
    --gray: #8a8a8a;
    --danger: #c0392b;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    height: 72px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        border-color 0.4s ease;
}
nav.scrolled {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(200, 168, 75, 0.12);
}

.nav-logo {
    height: 28px;
    width: auto;
    display: block;
}
.footer-logo {
    height: 22px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-btn {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
    color: var(--gold);
}
.lang-sep {
    color: var(--border);
    font-size: 0.7rem;
}

.nav-cta {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 9px 22px;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition:
        background 0.2s,
        transform 0.15s;
}
.nav-cta:hover {
    background: #d4b86a;
    transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transform-origin: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(16px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}
.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.mobile-nav-links a {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s;
    position: relative;
}
.mobile-nav-links a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: var(--white);
}
.mobile-nav-links a:hover::after,
.mobile-nav-links a:focus::after {
    transform: scaleX(1);
}
.mobile-nav-cta {
    font-size: 0.85rem;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 4vw 80px;
    position: relative;
    overflow: hidden;
}

.reticle-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.reticle-scan::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    animation: scanline 3s ease-in-out forwards;
    animation-delay: 0.5s;
}
@keyframes scanline {
    0% {
        top: 5%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        top: 95%;
        opacity: 0;
    }
}

.reticle-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}
.reticle-corner::before,
.reticle-corner::after {
    content: "";
    position: absolute;
    background: var(--gold);
    opacity: 0;
    animation: corner-appear 0.6s ease forwards;
}
.reticle-corner.tl {
    top: 100px;
    left: 4vw;
    animation-delay: 1.5s;
}
.reticle-corner.tr {
    top: 100px;
    right: 4vw;
    animation-delay: 1.7s;
}
.reticle-corner.bl {
    bottom: 40px;
    left: 4vw;
    animation-delay: 1.9s;
}
.reticle-corner.br {
    bottom: 40px;
    right: 4vw;
    animation-delay: 2.1s;
}

.reticle-corner.tl::before {
    top: 0;
    left: 0;
    width: 16px;
    height: 1px;
    animation-delay: 1.5s;
}
.reticle-corner.tl::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 16px;
    animation-delay: 1.5s;
}
.reticle-corner.tr::before {
    top: 0;
    right: 0;
    width: 16px;
    height: 1px;
    animation-delay: 1.7s;
}
.reticle-corner.tr::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 16px;
    animation-delay: 1.7s;
}
.reticle-corner.bl::before {
    bottom: 0;
    left: 0;
    width: 16px;
    height: 1px;
    animation-delay: 1.9s;
}
.reticle-corner.bl::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 16px;
    animation-delay: 1.9s;
}
.reticle-corner.br::before {
    bottom: 0;
    right: 0;
    width: 16px;
    height: 1px;
    animation-delay: 2.1s;
}
.reticle-corner.br::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 16px;
    animation-delay: 2.1s;
}

@keyframes corner-appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 168, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 75, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* ── HERO BACKGROUND SLIDESHOW ── */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(8, 8, 8, 0.92) 0%,
            rgba(8, 8, 8, 0.6) 50%,
            rgba(8, 8, 8, 0.45) 100%
        ),
        linear-gradient(to top, rgba(8, 8, 8, 0.7) 0%, transparent 40%);
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38) contrast(1.1) saturate(0.7) blur(3px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-up 0.7s ease forwards;
    animation-delay: 2.5s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-label::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.95;
    color: var(--white);
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 2.7s;
    margin-bottom: 8px;
}
.hero-title .accent {
    color: var(--gold);
}

.hero-sub {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 2.9s;
    margin-bottom: 32px;
}

.hero-desc {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    line-height: 1.7;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 3.1s;
    margin-bottom: 48px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 3.3s;
}

.btn-primary {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition:
        background 0.2s,
        transform 0.15s;
    display: inline-block;
}
.btn-primary:hover {
    background: #d4b86a;
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold-dim);
    padding: 13px 32px;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.15s;
    display: inline-block;
}
.btn-ghost:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    position: absolute;
    bottom: 100px;
    right: 4vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 3.5s;
}
.stat {
    text-align: right;
}
.stat-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}
.stat-divider {
    width: 100%;
    height: 1px;
    background: var(--gold-dim);
}

/* ── SECTIONS COMMON ── */
section {
    padding: 100px 4vw;
}

.section-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 64px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── PRODUCTS ── */
#products {
    background: var(--deep);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
}

.product-card {
    background: var(--surface);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    z-index: 2;
}
.product-card:hover .product-img-wrap::after {
    opacity: 1;
}
.product-card:hover .product-overlay {
    transform: translateY(0);
}
.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: #0f0f0f;
}
.product-img-wrap picture,
.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}
.product-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8, 8, 8, 0.95));
    padding: 32px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.product-overlay-tag {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.product-info {
    padding: 20px;
    border-top: 1px solid var(--border);
}
.product-info h3 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.product-info p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}

.product-details-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 12px;
}
.product-tag {
    display: inline-block;
    margin-top: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    border: 1px solid var(--border);
    padding: 3px 10px;
}
.product-details-link {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.product-card-soon {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.product-card-soon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 18px,
        rgba(200, 168, 75, 0.025) 18px,
        rgba(200, 168, 75, 0.025) 19px
    );
}
.soon-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 24px;
    text-align: center;
}
.soon-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.soon-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 75, 0.2);
    animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.18);
        opacity: 0;
    }
}
.soon-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}
.soon-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}
.soon-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.55;
    max-width: 220px;
}

/* ── STATS ── */
#stats {
    background: var(--black);
    padding: 80px 4vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    position: relative;
}
.stat-item:last-child {
    border-right: none;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.stat-item-num {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-item-num--text {
    letter-spacing: 0.1em;
}

.stat-item-suffix,
.stat-item-prefix {
    font-size: 0.55em;
    color: var(--gold-dim);
}
.stat-item-dec {
    font-size: 1em;
}
.stat-item-unit {
    font-size: 0.4em;
    color: var(--gold-dim);
    letter-spacing: 0.05em;
    align-self: flex-end;
    margin-bottom: 4px;
}

.stat-item-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-item-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ── O NAS ── */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}
.about-big-text {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(7rem, 14vw, 14rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--border);
    letter-spacing: 0.05em;
    user-select: none;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
}
.about-logo-wrap {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.feature {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}
.feature h3 {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.feature p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── KONTAKT ── */
#contact {
    background: var(--deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 20px;
    height: 20px;
}
.contact-tel {
    color: inherit;
    text-decoration: none;
}
.contact-tel:hover {
    color: var(--gold);
}
.contact-phone-hours {
    font-size: 0.78rem;
    margin-top: 4px;
    color: #555;
}
.contact-b2b {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid var(--border);
}
.contact-b2b-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.contact-b2b-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}
.contact-company-meta {
    font-size: 0.78rem;
    margin-top: 3px;
    color: var(--gray);
}
.contact-info-item h3 {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
}
.form-required {
    color: var(--gold);
    margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
    cursor: pointer;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 2px rgba(200, 168, 75, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #444;
}
.form-select option {
    background: var(--surface);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    cursor: text;
}

/* Symfony + JS form errors */
.form-group > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.form-group > ul > li {
    color: #e74c3c;
    font-size: 0.78rem;
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
    border-color: var(--danger);
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.captcha-widget {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}
.captcha-img {
    height: 44px;
    border: 1px solid var(--border);
    display: block;
}
.captcha-refresh {
    width: 38px;
    background: none;
    border: 1px solid var(--border);
    border-left: none;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s,
        background 0.2s;
}
.captcha-refresh svg {
    width: 16px;
    height: 16px;
}
.captcha-refresh:hover {
    color: var(--gold);
    background: rgba(200, 168, 75, 0.06);
}
.captcha-row .form-input,
.captcha-row input {
    flex: 1;
    min-width: 0;
}
.form-submit {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition:
        background 0.2s,
        transform 0.15s;
    align-self: flex-start;
}
.form-submit:hover {
    background: #d4b86a;
}
.form-submit:active {
    transform: scale(0.98);
}

.form-message {
    padding: 12px 16px;
    font-size: 0.85rem;
    border-left: 3px solid;
}
.form-message.success {
    background: rgba(39, 174, 96, 0.1);
    border-color: var(--success);
    color: #2ecc71;
}
.form-message.error {
    background: rgba(192, 57, 43, 0.1);
    border-color: var(--danger);
    color: #e74c3c;
}
.form-message p + p {
    margin-top: 4px;
}

.form-response:not(:empty) {
    margin-top: 16px;
}

/* Consent checkbox */
.form-group--consent {
    margin-top: 4px;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}
.consent-label input[type="checkbox"] {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
}
.consent-label .consent-text {
    font-size: 0.8rem;
    color: var(--gray);
}
.consent-label a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consent-label a:hover {
    color: var(--white);
}

/* Legal pages */
.legal-page {
    padding: 120px 4vw 80px;
    min-height: 70vh;
}
.legal-container {
    max-width: 760px;
    margin: 0 auto;
}
.legal-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}
.legal-updated {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 48px;
}
.legal-section {
    margin-bottom: 36px;
}
.legal-section h2 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 12px;
}
.legal-section p,
.legal-section ul li {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-section ul {
    margin: 8px 0 10px 20px;
}
.legal-section a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-section a:hover {
    color: var(--white);
}
.legal-back {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.legal-back:hover {
    color: var(--gold);
}

.form-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 40px 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-text {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.08em;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--gold);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    nav {
        padding: 0 5vw;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    nav .nav-cta {
        display: none;
    }
    #about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .product-grid > div {
        min-width: 100%;
        flex: 0 0 100%;
    }
    .hero-stats {
        display: none;
    }
    .about-big-text {
        font-size: 6rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ── PRODUCT PAGE ── */
#product-hero {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}
#product-hero picture {
    display: block;
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
}
#product-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#product-details {
    padding: 120px 4vw;
    background: var(--black);
}
.product-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-header {
    margin-bottom: 80px;
}

.product-includes-list + .product-manual-link {
    margin-top: 24px;
}
#product-details h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
}
.product-code,
.product-ean {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}
.product-code {
    margin-bottom: 6px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 120px;
}
.product-grid > div {
    flex: 1;
    min-width: 400px;
}

#product-details h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}
#product-details h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.product-description-text {
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 48px;
}

.product-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-includes-list li {
    padding: 8px 0;
    color: var(--white);
    border-bottom: 1px solid var(--border);
}

.product-spec-item {
    margin-bottom: 32px;
}
.product-spec-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 8px;
}
.product-spec-value {
    font-size: 1rem;
    color: var(--white);
}

.product-tech-specs {
    margin-bottom: 80px;
}
#product-details table {
    width: 100%;
    border-collapse: collapse;
}
#product-details tr {
    border-bottom: 1px solid var(--border);
}
#product-details td {
    padding: 16px 0;
    font-size: 1rem;
    color: var(--white);
}
#product-details td:first-child {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    width: 40%;
}

.product-cta-section {
    text-align: center;
}
.product-cta-section .btn-primary {
    display: inline-block;
}

.product-manual-link {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.product-manual-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── PAGES ── */
.page-section {
    padding: 160px 4vw 120px;
    background: var(--black);
    min-height: 100vh;
}
.page-container {
    max-width: 1200px;
    margin: 0 auto;
}
.page-container-small {
    max-width: 1000px;
    margin: 0 auto;
}
.page-title {
    font-size: 3rem;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    margin-bottom: 48px;
}
.page-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 80px;
}
.page-desc-large {
    font-size: 1.2rem;
}

/* Products page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 4px;
    transition: border-color 0.2s;
}
.product-card-link:hover {
    border-color: var(--gold);
}
.product-card-link picture {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}
.product-card-link img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.product-card-link h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.product-card-link p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}
.product-card-link-cta {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
}

/* About page */
.about-main-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.about-title-highlight {
    color: var(--gold);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}
.feature-box h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.feature-box p {
    line-height: 1.6;
    color: var(--gray);
}
.page-cta-link {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.page-cta-link:hover {
    background: var(--gold);
    color: var(--black);
}
