/* ============================================
   NorthMoravians — Potisk textilu
   Brand: #F9CE14 (yellow), #000 (black), #FFF (white)
   Font: Roboto
   Theme: DARK
   ============================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}
button { cursor: pointer; }

/* --- VARIABLES --- */
:root {
    --yellow: #F9CE14;
    --yellow-dark: #c9a800;
    --black: #000000;
    --white: #ffffff;
    --gray-900: #0a0a0a;
    --gray-800: #111111;
    --gray-700: #1a1a1a;
    --gray-600: #333333;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-100: #222222;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 4px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --transition: 0.3s ease;
    --container: 1200px;
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.text-accent { color: var(--yellow); }
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.section-title--left { text-align: left; }
.section-subtitle {
    text-align: center;
    color: var(--gray-300);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition);
    white-space: nowrap;
    gap: 8px;
}
.btn--primary {
    background: var(--yellow);
    color: #000;
}
.btn--primary:hover {
    background: #e0b800;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249,206,20,0.3);
}
.btn--outline {
    border: 2px solid #fff;
    color: #fff;
}
.btn--outline:hover {
    background: #fff;
    color: #000;
}
.btn--small {
    padding: 8px 20px;
    font-size: 0.875rem;
}
.btn--lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
}
.btn--full { width: 100%; }
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   1. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}
.navbar__logo img { height: 32px; width: auto; }
.navbar__menu {
    display: flex;
    gap: 28px;
    align-items: center;
}
.navbar__menu a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-300);
    transition: color var(--transition);
    position: relative;
}
.navbar__menu a:hover { color: #fff; }
.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}
.navbar__menu a:hover::after { width: 100%; }
.navbar__cta { margin-left: auto; }
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(ellipse at 20% 50%, rgba(249,206,20,0.07) 0%, transparent 60%),
                #000000;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.hero__subtitle {
    margin-top: 24px;
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 520px;
    line-height: 1.7;
}
.hero__ctas {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__visual { position: relative; }
.hero__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.technology__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.hero__placeholder svg,
.technology__placeholder svg,
.b2b__placeholder svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--gray-700);
}
.hero__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.badge {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-800);
    border-radius: var(--radius);
    border: 1px solid var(--gray-700);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.badge__number {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--yellow);
}
.badge__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-300);
    margin-top: 4px;
}

/* ============================================
   3. SEGMENTS
   ============================================ */
.segments {
    padding: 100px 0;
    background: var(--gray-900);
}
.segments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 1024px) {
    .segments__grid { grid-template-columns: repeat(2, 1fr); }
}
.segment-card {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.segment-card .btn {
    margin-top: auto;
    align-self: flex-start;
}
.segment-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.segment-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}
.segment-card__icon svg { width: 48px; height: 48px; }
.segment-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.segment-card p {
    color: var(--gray-300);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}
.segment-card__benefits {
    margin-bottom: 24px;
}
.segment-card__benefits li {
    position: relative;
    padding-left: 20px;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 8px;
}
.segment-card__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

/* ============================================
   4. PROCESS
   ============================================ */
.process {
    padding: 100px 0;
    background: #000000;
}
.process__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}
.process__step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.process__number {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}
.process__step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.process__step p {
    font-size: 0.875rem;
    color: var(--gray-300);
}
.process__time {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    background: rgba(249, 206, 20, 0.12);
    border: 1px solid rgba(249, 206, 20, 0.35);
    border-radius: 999px;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.process__connector {
    width: 60px;
    height: 2px;
    background: var(--gray-600);
    margin-top: 27px;
    flex-shrink: 0;
}

/* ============================================
   5. TECHNOLOGY
   ============================================ */
.technology {
    padding: 100px 0;
    background: var(--gray-900);
}
.technology__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.technology__desc {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.7;
}
.technology__benefits li {
    margin-bottom: 20px;
    padding-left: 0;
}
.technology__benefits li strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.technology__benefits li span {
    font-size: 0.9375rem;
    color: var(--gray-300);
}
.technology-comparison {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}
.technology__comparison {
    margin-top: 40px;
}
.technology__comparison h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-700);
}
.comparison-table th {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-300);
}
.comparison-table__highlight {
    background: rgba(249,206,20,0.08) !important;
    color: var(--yellow) !important;
    font-weight: 700 !important;
}
.comparison-table td.comparison-table__highlight {
    color: #ffffff !important;
    font-weight: 500;
}

/* Mobile karty — skryté na desktopu */
.comparison-cards { display: none; }
@media (max-width: 768px) {
    .comparison-table-wrapper { display: none; }
    .comparison-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .comp-card {
        background: var(--gray-800);
        border: 1px solid var(--gray-700);
        border-radius: 12px;
        padding: 18px 20px;
    }
    .comp-card--highlight {
        border: 2px solid var(--yellow);
        background: rgba(249, 206, 20, 0.04);
    }
    .comp-card__title {
        font-size: 1.125rem;
        font-weight: 700;
        margin: 0 0 12px;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .comp-card--highlight .comp-card__title { color: var(--yellow); }
    .comp-card__badge {
        background: var(--yellow);
        color: #000;
        font-size: 0.6875rem;
        padding: 3px 10px;
        border-radius: 999px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    .comp-card__list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
    }
    .comp-card__list > div {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 8px 0;
        border-bottom: 1px solid var(--gray-700);
        gap: 12px;
    }
    .comp-card__list > div:last-child { border-bottom: none; }
    .comp-card__list dt {
        color: var(--gray-400);
        font-size: 0.8125rem;
        margin: 0;
        font-weight: 400;
    }
    .comp-card__list dd {
        color: #ffffff;
        font-size: 0.875rem;
        font-weight: 500;
        margin: 0;
        text-align: right;
    }
    .comp-card--highlight .comp-card__list dd { color: var(--yellow); font-weight: 600; }
}

/* ============================================
   6. CATALOG
   ============================================ */
.catalog {
    padding: 100px 0;
    background: #000000;
}
/* Brand logo selector */
.brand-logos {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.brand-logo-btn {
    padding: 12px 28px;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.brand-logo-btn:hover { border-color: var(--yellow); }
.brand-logo-btn--active {
    border-color: var(--yellow);
    background: rgba(249, 206, 20, 0.08);
}
.brand-logo-btn img {
    transition: filter var(--transition);
}
.brand-logo-btn--active img { filter: none; }
.brand-logo-btn__text {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--gray-300);
}
.brand-logo-btn--active .brand-logo-btn__text { color: var(--yellow); }

/* Color swatches on product cards */
.product-card__swatches {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.card-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
}
.card-swatch--more {
    width: auto;
    border-radius: 8px;
    padding: 0 6px;
    font-size: 0.625rem;
    line-height: 16px;
    background: var(--gray-600);
    color: #ffffff;
    border: none;
}

/* Gender label on cards */
.product-card__gender {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.6875rem;
}

/* Size selection buttons */
.size-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.size-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 14px;
    background: var(--gray-100);
    border: 2px solid var(--gray-600);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition);
    min-width: 48px;
    text-align: center;
    line-height: 1.1;
}
.size-btn:hover:not(:disabled) { border-color: var(--yellow); }
.size-btn__status {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: 1;
}
.size-btn__status--in { color: #4ade80; }
.size-btn__status--out { color: var(--gray-400); }
.size-btn--out, .size-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.size-btn--out:hover { border-color: var(--gray-600); }
.size-btn--active {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

/* Catalog Search */
.catalog__search {
    position: relative;
    max-width: 640px;
    margin: 0 auto 24px;
}
.catalog__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    color: var(--gray-400);
    pointer-events: none;
    overflow: hidden;
    flex-shrink: 0;
}
.catalog__search-icon * {
    max-width: 20px;
    max-height: 20px;
}
.catalog__search-input {
    width: 100%;
    padding: 14px 44px 14px 48px;
    border-radius: 50px;
    border: 1px solid var(--gray-700);
    background: var(--gray-100);
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.catalog__search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 206, 20, 0.15);
}
.catalog__search-input::placeholder {
    color: var(--gray-400);
}
.catalog__search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-600);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.catalog__search-clear:hover {
    background: var(--gray-400);
}

.catalog__filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.catalog__filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.catalog__filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    white-space: nowrap;
}
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-pill {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
    transition: all var(--transition);
}
.filter-pill:hover {
    border-color: var(--yellow);
    color: #ffffff;
}
.filter-pill--active {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
/* Featured / Bestseller */
.product-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(249, 206, 20, 0.15);
}
.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.product-card__badge--out {
    background: var(--gray-700);
    color: #ffffff;
    top: 8px;
    right: 8px;
    left: auto;
}
.product-card--out { opacity: 0.55; }
.product-card--out .product-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    pointer-events: none;
}
.product-card--out .product-card__add {
    background: var(--gray-700);
    color: var(--gray-300);
    cursor: not-allowed;
}
.product-card--out .product-card__add:hover { background: var(--gray-700); }
.product-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #ffffff;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    overflow: hidden;
    position: relative;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.product-card__body {
    padding: 20px;
}
.product-card__brand {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.product-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.product-card__material {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-card__price-wrap {
    display: flex;
    flex-direction: column;
}
.product-card__price-exvat {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 400;
}
.product-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--yellow);
}
.product-card__price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
}
.product-card__add {
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all var(--transition);
}
.product-card__add:hover {
    background: var(--yellow);
    color: #000;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal.is-open {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}
.modal__content {
    position: relative;
    background: #111111;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: color var(--transition);
    z-index: 1;
}
.modal__close:hover { color: #ffffff; }
.modal__body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.modal__body .modal-brand {
    color: var(--yellow);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.modal__body .modal-desc {
    color: var(--gray-300);
    margin-bottom: 20px;
    line-height: 1.6;
}
.modal__body .modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.modal__body .modal-spec {
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}
.modal__body .modal-spec strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.modal__body .modal-price {
    color: var(--yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.modal__body .modal-price__amount {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.modal__body .modal-price__currency {
    font-size: 1.5rem;
    font-weight: 800;
}
.modal__body .modal-price__vat {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-200);
    margin-left: 4px;
}
.modal__body .modal-price__unit {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-400);
}
.modal-colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.modal-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--gray-600);
    cursor: pointer;
    transition: border-color var(--transition);
}
.modal-color:hover { border-color: var(--yellow); }
.modal-color--out {
    opacity: 0.35;
    cursor: not-allowed;
    position: relative;
}
.modal-color--out::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 1.5px;
    background: var(--gray-400);
    transform: rotate(-45deg);
}
.modal-color--out:hover { border-color: var(--gray-600); }

/* Compact detail modal layout */
.modal-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.modal-detail__img {
    background: #fff;
    border-radius: var(--radius);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: sticky;
    top: 0;
}
.modal-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}
.modal-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.modal-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--gray-600);
    flex-shrink: 0;
    background: #fff;
    transition: border-color 0.2s;
}
.modal-thumb--active {
    border-color: var(--accent);
}
.modal-thumb:hover {
    border-color: var(--accent);
}
.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}
.modal-detail__right {
    display: flex;
    flex-direction: column;
}
.modal-detail__right .modal-brand {
    margin-bottom: 4px;
}
@media (max-width: 640px) {
    .modal-detail {
        grid-template-columns: 1fr;
    }
    .modal-detail__img {
        aspect-ratio: 4/3;
        position: static;
    }
}

/* ============================================
   7. CALCULATOR
   ============================================ */
.calculator {
    padding: 100px 0;
    background: var(--gray-900);
}
.calculator__wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}
.calc-section {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.calc-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.calc-step {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 900;
    flex-shrink: 0;
}
.calc-empty {
    text-align: center;
    padding: 32px;
    color: var(--gray-400);
}
.calc-empty p { margin-bottom: 16px; }

/* Calculator items */
.calc-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.calc-item__main {
    display: flex;
    align-items: center;
    gap: 16px;
}
.calc-item__info { flex: 1; min-width: 0; }
.calc-item__name {
    font-weight: 500;
    font-size: 0.9375rem;
}
.calc-item__meta {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calc-item__swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-700);
    flex-shrink: 0;
}
.calc-item__price {
    font-size: 0.8125rem;
    color: var(--yellow);
    margin-top: 2px;
}
.calc-item__breakdown {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 6px;
}
.calc-item__line-total {
    font-size: 0.875rem;
    color: var(--gray-200);
    margin-top: 4px;
}
.calc-item__line-total strong {
    color: var(--yellow);
    font-weight: 700;
    font-size: 1rem;
    margin-left: 4px;
}
.calc-item__qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.calc-item__qty button {
    width: 32px;
    height: 32px;
    background: var(--gray-600);
    border-radius: var(--radius-xs);
    color: #ffffff;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.calc-item__qty button:hover { background: var(--yellow); color: #000; }
.calc-item__qty input {
    width: 48px;
    text-align: center;
    background: #1a1a1a;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xs);
    padding: 6px;
    font-weight: 500;
    color: #ffffff;
}
.calc-item__remove {
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: color var(--transition);
}
.calc-item__remove:hover { color: #ff4444; }

/* Per-product print chips */
.calc-item__prints {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-700);
}
.calc-item__prints-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-right: 4px;
}
.calc-print-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1.5px solid var(--gray-700);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.calc-print-chip:hover {
    border-color: var(--yellow);
    color: #fff;
}
.calc-print-chip--active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}
.calc-print-chip--active:hover {
    color: #000;
}
.calc-print-chip__price {
    font-weight: 600;
    font-size: 0.75rem;
    opacity: 0.85;
}
@media (max-width: 480px) {
    .calc-item__main { flex-wrap: wrap; }
    .calc-item__info { flex: 1 1 100%; }
    .calc-print-chip { padding: 5px 10px; font-size: 0.75rem; }
}

/* Print checkboxes */
.calc-prints { display: flex; flex-direction: column; gap: 12px; }
.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
}
.calc-checkbox:hover { background: var(--gray-700); }
.calc-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--yellow);
    flex-shrink: 0;
}
.calc-checkbox span:nth-child(2) { flex: 1; font-weight: 400; }
.calc-checkbox__price {
    color: var(--yellow);
    font-weight: 500;
    font-size: 0.875rem;
}
.calc-checkbox__note {
    font-size: 0.8125rem;
    color: var(--gray-400);
}
.calc-design-help { margin-top: 16px; }
.calc-design-help--standalone { margin-top: 24px; }

/* Summary */
.calculator__summary {
    background: var(--gray-800);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 96px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.calculator__summary h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.summary__line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9375rem;
}
.summary__line--discount { color: #16a34a; }
.summary__divider {
    height: 1px;
    background: var(--gray-700);
    margin: 8px 0;
}
.summary__line--total {
    font-size: 1.5rem;
    font-weight: 900;
    padding: 12px 0;
}
.summary__line--total span:last-child { color: var(--yellow); }
.summary__line--perpiece {
    font-size: 0.875rem;
    color: var(--gray-300);
}
.summary__upsell {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(249,206,20,0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(249,206,20,0.2);
}
.summary__upsell p {
    font-size: 0.875rem;
    color: var(--yellow);
}
.summary__actions { margin-top: 24px; }
.summary__note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* ============================================
   8. REFERENCES
   ============================================ */
.references {
    padding: 100px 0;
    background: #000000;
}
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}
.testimonial {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 206, 20, 0.4);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.testimonial__quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--yellow);
    opacity: 0.18;
    width: 48px;
    height: 48px;
}
.testimonial__stars {
    color: var(--yellow);
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}
.testimonial__text {
    font-size: 0.9375rem;
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial__author strong {
    display: block;
    font-weight: 700;
    color: #ffffff;
}
.testimonial__author span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Gallery */
.gallery { margin-bottom: 60px; }
.gallery__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.gallery__filter {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.gallery__filter:hover { border-color: var(--accent); color: var(--accent); }
.gallery__filter.active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 600; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.4s, box-shadow 0.3s;
    background: var(--gray-800);
    border: none;
    padding: 0;
    width: 100%;
    display: block;
}
.gallery__item:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.gallery__item.hidden {
    display: none;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery__item:hover img {
    transform: scale(1.08);
}
.gallery__category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: var(--yellow);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}
.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    text-align: left;
}
.gallery__item:hover .gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}
.gallery__overlay-title {
    display: block;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.gallery__overlay-desc {
    display: block;
    color: var(--gray-300);
    font-size: 0.8125rem;
    font-weight: 400;
}

/* Lightbox */
.reference-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.reference-lightbox.is-open { display: flex; }
.reference-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}
.reference-lightbox__figure {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.reference-lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.reference-lightbox__caption {
    text-align: center;
    color: #fff;
    max-width: 600px;
}
.reference-lightbox__title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 4px;
}
.reference-lightbox__desc {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-300);
}
.reference-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.reference-lightbox__close:hover { background: rgba(255,255,255,0.2); }
.reference-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.reference-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.reference-lightbox__nav--prev { left: 20px; }
.reference-lightbox__nav--next { right: 20px; }
@media (max-width: 640px) {
    .reference-lightbox__nav { width: 40px; height: 40px; font-size: 1.5rem; }
    .reference-lightbox__nav--prev { left: 8px; }
    .reference-lightbox__nav--next { right: 8px; }
}
.gallery__placeholder svg {
    width: 100%;
    height: 100%;
}

/* Counters */
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.counter {
    text-align: center;
    padding: 32px;
    background: var(--gray-800);
    border-radius: var(--radius);
    border: 1px solid var(--gray-700);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.counter__number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.counter__label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-top: 8px;
}

/* ============================================
   9. B2B
   ============================================ */
.b2b {
    padding: 100px 0;
    background: var(--gray-900);
}
.b2b__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.b2b__content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin: 24px 0 32px;
    line-height: 1.7;
}
.b2b__benefits li {
    margin-bottom: 20px;
}
.b2b__benefits li strong {
    display: block;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.b2b__benefits li span {
    font-size: 0.9375rem;
    color: var(--gray-300);
}
.b2b__content .btn { margin-top: 16px; }

/* ============================================
   10. FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: #000000;
}
.faq__list {
    max-width: 800px;
    margin: 48px auto 0;
}
.faq__item {
    border-bottom: 1px solid var(--gray-700);
}
.faq__question {
    padding: 20px 0;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color var(--transition);
}
.faq__question:hover { color: var(--yellow); }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--yellow);
    transition: transform var(--transition);
}
.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}
.faq__answer {
    padding: 0 0 20px;
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   11. CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--gray-900);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}
.contact-form {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-300);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    color: #ffffff;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: #111111; }
.form-order-summary {
    background: rgba(249, 206, 20, 0.06);
    border: 1px solid rgba(249, 206, 20, 0.35);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--gray-300);
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0;
}
.form-order-clear {
    margin-top: 8px;
    background: transparent;
    border: none;
    color: var(--yellow);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    transition: opacity var(--transition);
}
.form-order-clear:hover { opacity: 0.75; }
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--gray-300);
    cursor: pointer;
}
.form-checkbox input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--yellow);
    flex-shrink: 0;
}
.form-checkbox a {
    color: var(--yellow);
    text-decoration: underline;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ff4444;
}
.form-error {
    font-size: 0.75rem;
    color: #ff4444;
    margin-top: 4px;
}
.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9375rem;
}
.form-status--success { color: #16a34a; }
.form-status--error { color: #ff4444; }

/* Contact info */
.contact__card {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.contact__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.contact__details li {
    margin-bottom: 20px;
}
.contact__details li strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact__details a {
    color: var(--yellow);
    transition: opacity var(--transition);
}
.contact__details a:hover { opacity: 0.8; }

/* ============================================
   12. FOOTER
   ============================================ */
.footer {
    padding: 60px 0 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    color: #ffffff;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__brand img { margin-bottom: 16px; }
.footer__brand p {
    font-size: 0.875rem;
    color: #888888;
    line-height: 1.6;
}
.footer__links h4,
.footer__social h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #aaaaaa;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
    font-size: 0.875rem;
    color: #888888;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--yellow); }
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--yellow);
    color: #000;
}
.footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #888888;
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #111111;
    border-top: 1px solid var(--gray-700);
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
}
.mobile-cta__btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 700;
    font-size: 0.9375rem;
}
.mobile-cta__btn--call {
    background: var(--gray-100);
    color: #ffffff;
}
.mobile-cta__btn--order {
    background: var(--yellow);
    color: #000;
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
.exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.exit-popup.is-visible {
    display: flex;
}
.exit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}
.exit-popup__content {
    position: relative;
    background: var(--gray-800);
    border: 1px solid var(--gray-600);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: popupSlideIn 0.3s ease;
}
@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.exit-popup__close:hover { color: #fff; }
.exit-popup__icon {
    margin-bottom: 1rem;
}
.exit-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.exit-popup__text {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}
.exit-popup__form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.exit-popup__input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--gray-700);
    border: 1px solid var(--gray-600);
    color: #fff;
    font-size: 0.9375rem;
}
.exit-popup__input:focus {
    border-color: var(--yellow);
    outline: none;
}
.exit-popup__btn {
    white-space: nowrap;
    padding: 12px 20px;
}
.exit-popup__note {
    font-size: 0.75rem;
    color: var(--gray-400);
}
.exit-popup__status {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    .exit-popup__content { padding: 1.5rem; }
    .exit-popup__form { flex-direction: column; }
    .exit-popup__title { font-size: 1.25rem; }
}

/* ============================================
   MODERN EFFECTS
   ============================================ */

/* Animated gradient border on hover */
.segment-card,
.product-card,
.testimonial,
.counter,
.badge {
    position: relative;
    overflow: hidden;
}
.segment-card::before,
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--yellow) 50%, transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.segment-card:hover::before,
.product-card:hover::before {
    opacity: 1;
    animation: borderShimmer 2s linear infinite;
}

@keyframes borderShimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 300%; }
}

/* Glow effect on primary buttons */
.btn--primary {
    position: relative;
}
.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(249, 206, 20, 0.3), 0 0 40px rgba(249, 206, 20, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn--primary:hover::after {
    opacity: 1;
}

/* Floating animation for badges */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.badge:hover {
    animation: float 2s ease-in-out infinite;
    border-color: var(--yellow);
}

/* Yellow dot pulse for process steps */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 206, 20, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(249, 206, 20, 0); }
}
.process__number {
    animation: pulse 3s ease-in-out infinite;
}

/* Glassmorphism for calculator summary */
.calculator__summary {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Gradient text for section titles */
.hero__title .text-accent {
    background: linear-gradient(135deg, #F9CE14, #e0b800, #F9CE14);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}
@keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Comparison table row highlight */
.comparison-table tbody tr {
    transition: background 0.3s ease;
}
.comparison-table tbody tr:hover {
    background: rgba(249, 206, 20, 0.05);
}

/* Card tilt on hover */
.product-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
}
.segment-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
}

/* Smooth image zoom in product cards */
.product-card__image {
    transition: transform 0.4s ease;
    overflow: hidden;
}
.product-card:hover .product-card__image {
    transform: scale(1.03);
}

/* Express delivery badge pulse */
.badge--express {
    border-color: var(--yellow);
    position: relative;
}
.badge--express .badge__number {
    color: var(--yellow);
}
.badge--express::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Particle canvas in hero (rendered via JS) */
#heroParticles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__inner,
.hero__badges-wrapper {
    position: relative;
    z-index: 1;
}

/* Noise texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.hero { position: relative; }

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* Text gradient for B2B title */
.b2b__content .text-accent {
    background: linear-gradient(135deg, #F9CE14, #e0b800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ open animation */
.faq__answer {
    animation: fadeSlideDown 0.3s ease;
}
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1199px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__visual { display: block; margin: 0 auto; }
    .hero__image { max-width: 350px; }
    .hero__badges { grid-template-columns: repeat(2, 1fr); }
    .technology__grid { grid-template-columns: 1fr; }
    .technology__visual { order: -1; }
    .b2b__grid { grid-template-columns: 1fr; }
    .b2b__visual { display: none; }
    .calculator__wrapper { grid-template-columns: 1fr; }
    .calculator__summary { position: static; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar__menu { display: none; }
    .navbar__menu.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.98);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-700);
    }
    .navbar__toggle { display: flex; }
    .navbar__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
    .navbar__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .navbar__cta { display: none; }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1rem; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .hero__badges { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .badge { padding: 16px 12px; }
    .badge__number { font-size: 1.25rem; }

    .segments__grid { grid-template-columns: 1fr; }

    .process__steps { flex-direction: column; align-items: center; }
    .process__connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .testimonials { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__filters { gap: 6px; }
    .gallery__filter { padding: 6px 14px; font-size: 0.8rem; }
    .counters { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer__grid { grid-template-columns: 1fr; gap: 24px; }

    .mobile-cta { display: flex; }
    .footer { padding-bottom: 72px; }

    .section-title { font-size: 1.75rem; }
    .catalog__filter-group { flex-direction: column; align-items: flex-start; }
}
