/* ============================================================
   ETIKETOCHKA — DAXSHATLI BOMBA EDITION
   Ultra-modern: bento, 3D, marquee, glow, sticker, noise
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* === ETIKETOCHKA brand palette (logo-aligned) === */
    --bomb-primary: #D4AF37;        /* asosiy oltin */
    --bomb-primary-2: #E8C547;      /* yorqin oltin */
    --bomb-primary-3: #B8941F;      /* to'q oltin */
    --bomb-accent: #2E8B8B;         /* yorqinroq teal aksent */
    --bomb-accent-2: #4FB5B5;       /* och teal */
    --bomb-yellow: #F5C842;         /* sariq-oltin */
    --bomb-gold-glow: #FFD700;      /* glow effect uchun */
    --bomb-green: #06D6A0;
    --bomb-coral: #E8744C;          /* coral aksent */
    --bomb-dark: #0F2E2E;           /* logo dark teal */
    --bomb-dark-2: #163838;         /* o'rta teal */
    --bomb-dark-3: #1F4A4A;         /* och teal */
    --bomb-cream: #FAF7F0;          /* iliq krem fon */
    --bomb-cream-2: #F3EDE0;        /* qariroq krem */

    --bomb-grad-1: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #F5C842 100%);
    --bomb-grad-2: linear-gradient(135deg, #0F2E2E 0%, #1F4A4A 50%, #2E8B8B 100%);
    --bomb-grad-3: linear-gradient(135deg, #F5C842 0%, #D4AF37 50%, #B8941F 100%);
    --bomb-grad-mesh: radial-gradient(at 27% 37%, hsla(45, 80%, 50%, .35) 0px, transparent 50%),
                      radial-gradient(at 97% 21%, hsla(180, 50%, 30%, .35) 0px, transparent 50%),
                      radial-gradient(at 52% 99%, hsla(45, 90%, 55%, .3) 0px, transparent 50%),
                      radial-gradient(at 10% 29%, hsla(180, 60%, 40%, .3) 0px, transparent 50%),
                      radial-gradient(at 97% 96%, hsla(45, 100%, 60%, .35) 0px, transparent 50%);

    --bomb-radius: 28px;
    --bomb-radius-lg: 40px;
    --bomb-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   GLOBAL FONT + RESET
   ============================================================ */
body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif !important;
    background: var(--bomb-cream);
    color: var(--bomb-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display-font {
    font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif !important;
    letter-spacing: -0.03em !important;
    font-weight: 700;
}

::selection { background: var(--bomb-primary); color: #fff; }

/* Noise texture overlay (global) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ============================================================
   CUSTOM CURSOR (orange glow follow)
   ============================================================ */
.bomb-cursor {
    position: fixed;
    width: 24px; height: 24px;
    border: 2px solid var(--bomb-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}
.bomb-cursor.hover { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.35); }
.bomb-cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--bomb-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}
@media (max-width: 991px) { .bomb-cursor, .bomb-cursor-dot { display: none; } }

/* ============================================================
   HEADER ULTRA-MODERN
   ============================================================ */
.as-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 999; transition: all 0.4s var(--bomb-ease); }
.as-header .menu-area {
    background: transparent !important;
    padding: 18px 0;
    transition: all 0.4s var(--bomb-ease);
}
.as-header.scrolled .menu-area {
    background: rgba(10, 10, 15, 0.7) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}
.as-header.scrolled .main-menu ul li a { color: #fff; }
.as-header.scrolled .header-logo { filter: brightness(1.2); }
.main-menu ul li a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: -0.01em;
    text-transform: capitalize !important;
    color: #fff !important;
    position: relative;
    padding: 8px 14px !important;
    transition: all 0.3s var(--bomb-ease);
}
.main-menu ul li a:hover { color: var(--bomb-yellow) !important; }
.main-menu ul li a::after { display: none !important; }
.main-menu ul li.active a { color: var(--bomb-primary) !important; }

/* Header logo container — etiketochka brand */
.header-logo {
    display: inline-flex;
    align-items: center;
}
.header-logo img {
    max-height: 56px !important;
    width: auto !important;
    border-radius: 12px;
    transition: all 0.4s var(--bomb-ease);
}
.as-header.scrolled .header-logo img {
    max-height: 46px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Header phone */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s var(--bomb-ease);
}
.header-phone i {
    color: var(--bomb-primary);
    font-size: 14px;
}
.header-phone:hover {
    background: var(--bomb-primary);
    color: var(--bomb-dark) !important;
    border-color: var(--bomb-primary);
}
.header-phone:hover i { color: var(--bomb-dark); }

/* ============================================================
   HERO — CINEMATIC
   ============================================================ */
.hero-cinema {
    position: relative;
    min-height: 100vh;
    background: var(--bomb-dark);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
    padding-top: 120px;
}
.hero-cinema::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bomb-grad-mesh);
    z-index: -2;
    animation: meshShift 20s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0% { transform: scale(1) rotate(0); filter: hue-rotate(0); }
    100% { transform: scale(1.3) rotate(20deg); filter: hue-rotate(60deg); }
}

/* Grid lines bg */
.hero-cinema::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating sticker decorations */
.sticker {
    position: absolute;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: stickerSpin 25s linear infinite, stickerFloat 6s ease-in-out infinite;
    z-index: 2;
}
.sticker.sticker-1 {
    width: 130px; height: 130px;
    top: 18%; right: 8%;
    background: var(--bomb-yellow);
    color: var(--bomb-dark);
    font-size: 14px;
    border: 4px dashed rgba(0,0,0,0.2);
}
.sticker.sticker-2 {
    width: 100px; height: 100px;
    bottom: 25%; left: 8%;
    background: var(--bomb-coral);
    font-size: 11px;
    border: 3px solid rgba(255,255,255,0.4);
    animation-delay: -3s;
}
.sticker.sticker-3 {
    width: 90px; height: 90px;
    top: 60%; right: 20%;
    background: var(--bomb-accent-2);
    color: var(--bomb-dark);
    font-size: 11px;
    border: 3px solid rgba(0,0,0,0.2);
    animation-delay: -8s;
}
@keyframes stickerSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes stickerFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -20px; } }

.sticker svg { animation: stickerSpin 20s linear infinite reverse; }

/* Hero content */
.hero-cinema .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 18px 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInDown 1s var(--bomb-ease);
}
.hero-cinema .hero-eyebrow .live-dot {
    width: 28px; height: 28px;
    background: var(--bomb-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bomb-dark);
    font-size: 11px;
    position: relative;
}
.hero-cinema .hero-eyebrow .live-dot::before {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 50%;
    background: var(--bomb-green);
    opacity: 0.4;
    animation: liveRing 2s infinite;
}
@keyframes liveRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero-cinema h1.hero-display {
    font-size: clamp(3rem, 8.5vw, 8rem) !important;
    font-weight: 800 !important;
    line-height: 0.92 !important;
    letter-spacing: -0.06em !important;
    margin-bottom: 36px;
    color: #fff;
    animation: heroIn 1.2s var(--bomb-ease) 0.2s both;
}
.hero-cinema h1.hero-display .word-glow {
    background: var(--bomb-grad-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
}
.hero-cinema h1.hero-display .word-outline {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.hero-cinema h1.hero-display .word-cross {
    position: relative; display: inline-block;
}
.hero-cinema h1.hero-display .word-cross::after {
    content: '';
    position: absolute; left: -4%; top: 52%;
    width: 108%; height: 8px;
    background: var(--bomb-primary);
    transform: rotate(-3deg);
    border-radius: 4px;
    animation: drawLine 0.8s var(--bomb-ease) 1.5s both;
    transform-origin: left;
}
@keyframes drawLine {
    from { transform: rotate(-3deg) scaleX(0); }
    to { transform: rotate(-3deg) scaleX(1); }
}

.hero-cinema .hero-tagline {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 44px;
    animation: heroIn 1.2s var(--bomb-ease) 0.4s both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* MEGA BUTTONS */
.btn-mega {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px 18px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 100px;
    background: #fff;
    color: var(--bomb-dark);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--bomb-ease);
    text-decoration: none;
    isolation: isolate;
}
.btn-mega::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bomb-grad-1);
    border-radius: inherit;
    transform: translateY(100%);
    transition: transform 0.45s var(--bomb-ease);
    z-index: -1;
}
.btn-mega:hover { color: #fff; transform: translateY(-2px); }
.btn-mega:hover::before { transform: translateY(0); }
.btn-mega .btn-arrow {
    width: 36px; height: 36px;
    background: var(--bomb-grad-1);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.4s var(--bomb-ease);
    flex-shrink: 0;
}
.btn-mega:hover .btn-arrow { background: #fff; color: var(--bomb-dark); transform: rotate(-45deg); }

.btn-mega.btn-mega-dark { background: var(--bomb-dark); color: #fff; }
.btn-mega.btn-mega-dark .btn-arrow { background: var(--bomb-yellow); color: var(--bomb-dark); }

.btn-mega.btn-mega-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-mega.btn-mega-ghost .btn-arrow { background: rgba(255,255,255,0.12); color: #fff; }
.btn-mega.btn-mega-ghost::before { background: rgba(255,255,255,0.1); }

/* Hero metric pills */
.hero-metrics {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 60px;
    animation: heroIn 1.2s var(--bomb-ease) 0.6s both;
}
.metric-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}
.metric-pill strong {
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

/* Hero right (3D card stack) */
.hero-3d-stack {
    position: relative;
    aspect-ratio: 1;
    perspective: 1200px;
    animation: heroIn 1.2s var(--bomb-ease) 0.8s both;
}
.hero-3d-card {
    position: absolute;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
    transition: all 0.6s var(--bomb-ease);
    transform-style: preserve-3d;
}
.hero-3d-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-3d-card.c1 {
    width: 65%; height: 80%;
    top: 5%; left: 5%;
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(-5deg);
    z-index: 3;
}
.hero-3d-card.c2 {
    width: 55%; height: 60%;
    bottom: 0; right: 0;
    transform: rotateY(10deg) rotateX(-3deg) rotateZ(6deg);
    z-index: 2;
    border: 6px solid var(--bomb-yellow);
}
.hero-3d-card.c3 {
    width: 40%; height: 45%;
    top: 8%; right: 5%;
    transform: rotateY(-5deg) rotateZ(8deg);
    z-index: 1;
    background: var(--bomb-grad-1);
}
.hero-3d-stack:hover .c1 { transform: rotateY(-12deg) rotateX(6deg) rotateZ(-7deg) translateY(-10px); }
.hero-3d-stack:hover .c2 { transform: rotateY(14deg) rotateX(-5deg) rotateZ(8deg) translateY(-15px); }
.hero-3d-stack:hover .c3 { transform: rotateY(-7deg) rotateZ(10deg) translateY(-8px); }

/* Floating sticker on hero card */
.hero-3d-stack .floating-tag {
    position: absolute;
    bottom: 10%; left: -8%;
    background: var(--bomb-yellow);
    color: var(--bomb-dark);
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.45);
    z-index: 10;
    display: flex; align-items: center; gap: 10px;
    animation: floatTag 4s ease-in-out infinite;
}
@keyframes floatTag {
    0%, 100% { translate: 0 0; rotate: -5deg; }
    50% { translate: 0 -15px; rotate: 5deg; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-wrap {
    background: var(--bomb-dark);
    color: #fff;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-wrap.light { background: var(--bomb-cream); color: var(--bomb-dark); }
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.marquee-item {
    display: inline-flex; align-items: center; gap: 20px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}
.marquee-item .dot {
    width: 16px; height: 16px;
    background: var(--bomb-primary);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--bomb-primary);
}
.marquee-item .stroke {
    -webkit-text-stroke: 2px currentColor;
    color: transparent;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER (modern asymmetric)
   ============================================================ */
.sec-pad-x { padding: 120px 0; }
.sec-pad-md { padding: 80px 0; }

.sec-header {
    margin-bottom: 80px;
}
.sec-header .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: var(--bomb-dark);
    color: #fff;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.sec-header .eyebrow::before {
    content: ''; width: 8px; height: 8px;
    background: var(--bomb-yellow);
    border-radius: 50%;
}
.sec-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    line-height: 0.95 !important;
    margin: 0 0 20px;
}
.sec-header h2 .grad {
    background: var(--bomb-grad-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec-header h2 .italic { font-style: italic; font-weight: 500; }
.sec-header p { max-width: 600px; color: #6b6b80; font-size: 1.1rem; line-height: 1.7; margin: 0; }

/* ============================================================
   BENTO GRID (Features)
   ============================================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}
.bento-card {
    position: relative;
    padding: 32px;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    transition: transform 0.5s var(--bomb-ease), box-shadow 0.5s var(--bomb-ease);
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
    border: 1px solid rgba(0,0,0,0.05);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.12); }

.bento-card.bento-1 { grid-column: span 2; grid-row: span 2; background: var(--bomb-dark); color: #fff; }
.bento-card.bento-2 { grid-column: span 2; background: var(--bomb-yellow); color: var(--bomb-dark); }
.bento-card.bento-3 { grid-column: span 1; background: var(--bomb-cream); }
.bento-card.bento-4 { grid-column: span 1; background: var(--bomb-coral); color: #fff; }
.bento-card.bento-5 { grid-column: span 2; background: linear-gradient(135deg, var(--bomb-accent), var(--bomb-accent-2)); color: #fff; }
.bento-card.bento-6 { grid-column: span 2; background: var(--bomb-cream); }

.bento-card .b-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
    letter-spacing: 0.05em;
}
.bento-card h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem) !important;
    line-height: 1.1 !important;
    margin: 0;
}
.bento-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.55;
}
.bento-card .b-icon {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    font-size: 38px;
    opacity: 0.35;
    transition: all 0.4s var(--bomb-ease);
}
.bento-card:hover .b-icon { transform: rotate(-12deg) scale(1.1); opacity: 0.6; }
.bento-card.bento-1 .b-bg-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -1;
}
.bento-card.bento-1 .b-bg-glow {
    position: absolute; bottom: -50%; right: -20%;
    width: 400px; height: 400px;
    background: var(--bomb-primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: -1;
}

@media (max-width: 991px) {
    .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .bento-card { min-height: 220px; }
    .bento-card.bento-1, .bento-card.bento-2,
    .bento-card.bento-5, .bento-card.bento-6 { grid-column: span 2; grid-row: span 1; }
    .bento-card.bento-3, .bento-card.bento-4 { grid-column: span 1; }
}
@media (max-width: 575px) {
    .bento { grid-template-columns: 1fr; }
    .bento-card { grid-column: span 1 !important; }
}

/* ============================================================
   PRODUCT MEGA CARD (modern e-commerce)
   ============================================================ */
.pmega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.pmega {
    position: relative;
    background: #fff;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    transition: all 0.5s var(--bomb-ease);
    border: 1px solid rgba(0,0,0,0.04);
}
.pmega:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}
.pmega .pmega-img {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f8fc 0%, #ececf6 100%);
    overflow: hidden;
}
.pmega .pmega-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--bomb-ease);
}
.pmega:hover .pmega-img img { transform: scale(1.08) rotate(-2deg); }
.pmega .pmega-tags {
    position: absolute; top: 16px; left: 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.pmega .pm-tag {
    padding: 6px 14px;
    background: var(--bomb-dark); color: #fff;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.pmega .pm-tag.new { background: var(--bomb-green); color: var(--bomb-dark); }
.pmega .pm-tag.hit { background: var(--bomb-primary); }
.pmega .pm-tag.sale { background: var(--bomb-coral); }

.pmega .pmega-fav {
    position: absolute; top: 16px; right: 16px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bomb-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--bomb-ease);
}
.pmega .pmega-fav:hover { background: var(--bomb-coral); color: #fff; transform: scale(1.1); }

.pmega .pmega-body {
    padding: 24px;
}
.pmega .pm-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: var(--bomb-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pmega .pm-title {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
    margin: 0 0 16px;
    color: var(--bomb-dark);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pmega .pm-title a { color: inherit; transition: color 0.2s; }
.pmega .pm-title a:hover { color: var(--bomb-primary); }
.pmega .pm-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px dashed rgba(0,0,0,0.08);
}
.pmega .pm-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bomb-dark);
}
.pmega .pm-price small {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 500;
}
.pmega .pm-buy {
    width: 44px; height: 44px;
    background: var(--bomb-dark);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--bomb-ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.pmega .pm-buy::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bomb-grad-1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.4s var(--bomb-ease);
}
.pmega .pm-buy:hover::before { transform: scale(1); }
.pmega .pm-buy i { position: relative; z-index: 1; transition: transform 0.3s; }
.pmega .pm-buy:hover i { transform: rotate(-45deg); color: #fff; }

/* ============================================================
   PORTFOLIO MARQUEE GRID
   ============================================================ */
.portfolio-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-modern .pm-cell {
    position: relative;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bomb-dark);
}
.portfolio-modern .pm-cell.tall { aspect-ratio: 4/6; grid-row: span 1; }
.portfolio-modern .pm-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--bomb-ease), filter 0.5s var(--bomb-ease);
    filter: grayscale(20%);
}
.portfolio-modern .pm-cell:hover img { transform: scale(1.08); filter: grayscale(0); }
.portfolio-modern .pm-cell .pmc-info {
    position: absolute; left: 24px; bottom: 24px; right: 24px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all 0.4s var(--bomb-ease);
    transform: translateY(20px); opacity: 0;
}
.portfolio-modern .pm-cell:hover .pmc-info { transform: translateY(0); opacity: 1; }
.portfolio-modern .pm-cell .pmc-info h3 {
    font-size: 1.2rem; margin: 0;
    color: var(--bomb-dark);
}
.portfolio-modern .pm-cell .pmc-info .cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: var(--bomb-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-modern .pm-cell .pmc-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 50px; height: 50px;
    background: var(--bomb-yellow);
    color: var(--bomb-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s var(--bomb-ease);
    opacity: 0;
}
.portfolio-modern .pm-cell:hover .pmc-arrow { opacity: 1; transform: rotate(-45deg) scale(1.1); }

@media (max-width: 991px) { .portfolio-modern { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .portfolio-modern { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIAL — GIANT QUOTE
   ============================================================ */
.testi-mega {
    background: var(--bomb-dark);
    border-radius: var(--bomb-radius-lg);
    padding: 80px 60px;
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.testi-mega::before {
    content: '\201C';
    position: absolute;
    top: -100px; right: -30px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 25rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.18);
    z-index: -1;
}
.testi-mega .testi-rating { font-size: 22px; color: var(--bomb-yellow); margin-bottom: 20px; }
.testi-mega .testi-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}
.testi-mega .testi-author { display: flex; align-items: center; gap: 16px; }
.testi-mega .testi-author img {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bomb-yellow);
}
.testi-mega .testi-author h4 { font-size: 1.1rem; margin: 0; color: #fff; }
.testi-mega .testi-author span { color: rgba(255,255,255,0.6); font-size: 14px; }

.testi-nav { display: flex; gap: 10px; margin-top: 30px; }
.testi-nav button {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: all 0.3s var(--bomb-ease);
    cursor: pointer;
}
.testi-nav button:hover { background: var(--bomb-primary); border-color: transparent; transform: translateY(-2px); }

/* ============================================================
   STAT BAR (modern dark with chart)
   ============================================================ */
.stat-mega {
    background: var(--bomb-dark);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.stat-mega::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.28), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(46, 139, 139, 0.3), transparent 40%);
}
.stat-mega .stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; position: relative; }
.stat-mega .stat-cell {
    border-left: 2px solid rgba(255,255,255,0.1);
    padding-left: 28px;
    position: relative;
}
.stat-mega .stat-cell::before {
    content: '';
    position: absolute; left: -2px; top: 0;
    width: 2px; height: 30%;
    background: var(--bomb-primary);
}
.stat-mega .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--bomb-grad-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-mega .stat-suffix { font-size: 2rem; color: var(--bomb-yellow); font-weight: 800; }
.stat-mega .stat-label {
    margin-top: 14px;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT IMAGE COLLAGE
   ============================================================ */
.about-collage {
    position: relative;
    aspect-ratio: 1;
    max-width: 580px;
}
.about-collage .ac-main {
    position: absolute;
    top: 0; left: 0;
    width: 70%; height: 80%;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.about-collage .ac-2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 55%;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    border: 10px solid var(--bomb-cream);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.about-collage .ac-3 {
    position: absolute;
    top: 5%; right: 0;
    width: 35%; height: 35%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bomb-yellow);
    display: flex; align-items: center; justify-content: center;
    color: var(--bomb-dark);
    text-align: center;
    padding: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.45);
    animation: rotateBadge 20s linear infinite;
}
.about-collage img { width: 100%; height: 100%; object-fit: cover; }
@keyframes rotateBadge { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.about-collage .ac-stamp {
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    background: var(--bomb-dark);
    color: #fff;
    padding: 18px 30px;
    border-radius: 100px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}
.about-collage .ac-stamp .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--bomb-yellow);
    line-height: 1;
}

/* ============================================================
   FAQ MODERN
   ============================================================ */
.faq-modern .faq-row {
    background: #fff;
    border-radius: var(--bomb-radius);
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s var(--bomb-ease);
}
.faq-modern .faq-row.open {
    background: var(--bomb-dark);
    color: #fff;
    border-color: transparent;
}
.faq-modern .faq-head {
    padding: 28px 32px;
    display: flex; align-items: center; gap: 20px;
    cursor: pointer;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s var(--bomb-ease);
}
.faq-modern .faq-head .faq-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    opacity: 0.5;
    flex-shrink: 0;
}
.faq-modern .faq-head .faq-text { flex: 1; }
.faq-modern .faq-head .faq-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bomb-cream);
    color: var(--bomb-dark);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--bomb-ease);
}
.faq-modern .faq-row.open .faq-icon {
    background: var(--bomb-yellow);
    transform: rotate(45deg);
}
.faq-modern .faq-body {
    max-height: 0; overflow: hidden;
    padding: 0 32px;
    transition: all 0.5s var(--bomb-ease);
}
.faq-modern .faq-row.open .faq-body {
    max-height: 600px;
    padding: 0 32px 32px 32px;
}
.faq-modern .faq-body p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    padding-left: 50px;
}

/* ============================================================
   TEAM CARDS — Modern
   ============================================================ */
.team-modern .tm-card {
    position: relative;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    background: var(--bomb-cream);
    transition: all 0.5s var(--bomb-ease);
}
.team-modern .tm-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.team-modern .tm-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bomb-yellow), var(--bomb-primary));
}
.team-modern .tm-img img {
    width: 100%; height: 100%; object-fit: cover;
    mix-blend-mode: luminosity;
    transition: all 0.6s var(--bomb-ease);
    filter: contrast(1.1);
}
.team-modern .tm-card:hover .tm-img img { mix-blend-mode: normal; transform: scale(1.06); }
.team-modern .tm-info {
    padding: 24px;
    background: #fff;
    display: flex; align-items: center; justify-content: space-between;
}
.team-modern .tm-info h3 { font-size: 1.2rem; margin: 0; color: var(--bomb-dark); }
.team-modern .tm-info span { font-size: 13px; color: #888; }
.team-modern .tm-info .arrow {
    width: 40px; height: 40px;
    background: var(--bomb-dark); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.team-modern .tm-card:hover .arrow { background: var(--bomb-yellow); color: var(--bomb-dark); transform: rotate(-45deg); }

/* ============================================================
   CTA SECTION (giant)
   ============================================================ */
.cta-giant {
    position: relative;
    background: var(--bomb-primary);
    border-radius: var(--bomb-radius-lg);
    padding: 100px 80px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}
.cta-giant::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.45), transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(46, 139, 139, 0.4), transparent 50%);
    z-index: -1;
}
.cta-giant h2 {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
    line-height: 0.95 !important;
    margin: 0 0 30px;
}
.cta-giant h2 .stroke {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    font-style: italic;
}
.cta-giant p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 40px; max-width: 600px; }

/* Floating shapes on CTA */
.cta-giant .float-shape {
    position: absolute;
    background: var(--bomb-yellow);
    border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
}
.cta-giant .float-shape.fs-1 {
    width: 150px; height: 150px;
    top: -50px; right: 10%;
    animation-delay: 0s;
    filter: blur(2px);
    opacity: 0.6;
}
.cta-giant .float-shape.fs-2 {
    width: 80px; height: 80px;
    bottom: 20%; right: 30%;
    background: var(--bomb-accent);
    animation-delay: -3s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* ============================================================
   BLOG MODERN CARDS
   ============================================================ */
.blog-modern .bm-card {
    background: #fff;
    border-radius: var(--bomb-radius);
    overflow: hidden;
    transition: all 0.5s var(--bomb-ease);
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-modern .bm-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.blog-modern .bm-img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.blog-modern .bm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--bomb-ease); }
.blog-modern .bm-card:hover .bm-img img { transform: scale(1.08); }
.blog-modern .bm-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
}
.blog-modern .bm-date {
    position: absolute; bottom: 16px; left: 16px;
    background: var(--bomb-yellow); color: var(--bomb-dark);
    padding: 8px 16px; border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}
.blog-modern .bm-body { padding: 28px; }
.blog-modern .bm-meta {
    display: flex; gap: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #888;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.blog-modern .bm-meta i { color: var(--bomb-primary); margin-right: 4px; }
.blog-modern .bm-title {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    margin: 0 0 14px;
}
.blog-modern .bm-title a { color: var(--bomb-dark); transition: color 0.2s; }
.blog-modern .bm-title a:hover { color: var(--bomb-primary); }
.blog-modern .bm-excerpt { color: #6b6b80; line-height: 1.6; font-size: 14px; margin-bottom: 16px; }
.blog-modern .bm-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--bomb-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.blog-modern .bm-link::after {
    content: '→';
    transition: transform 0.3s;
}
.blog-modern .bm-link:hover { color: var(--bomb-primary); }
.blog-modern .bm-link:hover::after { transform: translateX(6px); }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partner-band {
    background: var(--bomb-cream);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.partner-band .partner-track {
    display: flex;
    gap: 80px;
    animation: scrollLeft 35s linear infinite;
    width: max-content;
    align-items: center;
}
.partner-band img {
    height: 50px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s var(--bomb-ease);
}
.partner-band img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FOOTER MODERN
   ============================================================ */
.footer-bomb {
    background: var(--bomb-dark) !important;
    color: rgba(255,255,255,0.7);
    padding: 100px 0 0 !important;
    position: relative;
    overflow: hidden;
}
.footer-bomb::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--bomb-primary), transparent);
}
.footer-bomb::after {
    content: 'ETIKETOCHKA';
    position: absolute;
    bottom: -50px; left: 50%; transform: translateX(-50%);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}
.footer-bomb > .container { position: relative; z-index: 1; }

.footer-bomb h4.widget-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
}
.footer-bomb h4.widget-title::after { display: none !important; }
.footer-bomb a { color: rgba(255,255,255,0.85); transition: all 0.3s var(--bomb-ease); text-decoration: none; }
.footer-bomb a:hover { color: var(--bomb-yellow); }
.footer-bomb ul { list-style: none; padding: 0; margin: 0; }
.footer-bomb ul li { margin-bottom: 14px; font-size: 15px; }
.footer-bomb ul li a {
    display: inline-flex; align-items: center; gap: 8px;
    position: relative;
}
.footer-bomb ul li a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s var(--bomb-ease);
    margin-right: -10px;
    color: var(--bomb-yellow);
}
.footer-bomb ul li a:hover::before { opacity: 1; margin-right: 0; }
.footer-bomb .f-social a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.3s var(--bomb-ease);
}
.footer-bomb .f-social a:hover {
    background: var(--bomb-yellow);
    color: var(--bomb-dark);
    border-color: var(--bomb-yellow);
    transform: translateY(-3px) rotate(-8deg);
}
.footer-bomb .newsletter-form {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    padding: 6px !important;
}
.footer-bomb .newsletter-form button { background: var(--bomb-yellow) !important; color: var(--bomb-dark) !important; font-weight: 700 !important; }
.footer-bomb .footer-copy {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    margin-top: 80px !important;
    padding: 26px 0 !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   FLOATING CTA (telegram, whatsapp, phone)
   ============================================================ */
.floating-cta {
    z-index: 998 !important;
}
.floating-cta a {
    width: 60px !important; height: 60px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}
.floating-cta a::after {
    border-color: currentColor !important;
}

/* ============================================================
   BREADCRUMB MODERN
   ============================================================ */
.bc-bomb {
    background: var(--bomb-dark) !important;
    padding: 200px 0 100px !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.bc-bomb::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bomb-grad-mesh);
    opacity: 0.6;
    z-index: -1;
}
.bc-bomb::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    z-index: -1;
}
.bc-bomb h1 {
    font-size: clamp(3rem, 7vw, 5.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
}
.bc-bomb .crumbs a, .bc-bomb .crumbs span {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.03em !important;
}

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.cat-pills .pill {
    padding: 12px 24px !important;
    background: #fff !important;
    border: 1.5px solid rgba(0,0,0,0.06) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 100px;
}
.cat-pills .pill:hover, .cat-pills .pill.active {
    background: var(--bomb-dark) !important;
    color: #fff !important;
    border-color: var(--bomb-dark) !important;
}

/* ============================================================
   FORM CARDS (Contact, Order)
   ============================================================ */
.contact-form-card {
    background: #fff;
    border-radius: var(--bomb-radius-lg) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08) !important;
    padding: 50px !important;
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-card .form-control {
    background: var(--bomb-cream) !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    height: 58px !important;
    font-size: 15px !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s var(--bomb-ease) !important;
}
.contact-form-card .form-control:focus {
    background: #fff !important;
    border-color: var(--bomb-dark) !important;
    box-shadow: 0 0 0 5px rgba(10, 10, 15, 0.05) !important;
}
.contact-form-card textarea.form-control { height: auto !important; padding-top: 18px !important; min-height: 140px !important; }

/* CFG (configurator) modern */
.cfg-tabs {
    background: var(--bomb-dark) !important;
    padding: 8px !important;
    border-radius: 100px;
}
.cfg-tabs button {
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.cfg-tabs button.active {
    background: var(--bomb-yellow) !important;
    color: var(--bomb-dark) !important;
    box-shadow: none !important;
}
.cfg-row {
    background: var(--bomb-cream) !important;
    border-radius: 16px !important;
    padding: 18px 24px !important;
}
.cfg-row .cfg-label { font-family: 'Space Grotesk', sans-serif; }
.cfg-row select, .cfg-row input {
    background: #fff !important;
    border: 1.5px solid rgba(0,0,0,0.06) !important;
}
.cfg-result {
    background: var(--bomb-dark) !important;
    border-radius: var(--bomb-radius) !important;
}
.cfg-result .price {
    background: var(--bomb-grad-3) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* ============================================================
   PRELOADER UPGRADE
   ============================================================ */
.preloader { background: var(--bomb-dark) !important; }
.preloader .as-btn.style3 {
    background: var(--bomb-grad-1) !important;
    color: #fff !important;
    border: none !important;
    font-family: 'Bricolage Grotesque', sans-serif !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.05em;
    padding: 16px 36px !important;
    border-radius: 100px !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bomb-cream); }
::-webkit-scrollbar-thumb { background: var(--bomb-dark); border-radius: 100px; border: 2px solid var(--bomb-cream); }
::-webkit-scrollbar-thumb:hover { background: var(--bomb-primary); }

/* ============================================================
   SECTION DIVIDER (animated SVG wave)
   ============================================================ */
.section-divider { height: 60px; position: relative; overflow: hidden; }
.section-divider svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-bomb-dark { background: var(--bomb-dark) !important; color: #fff; }
.bg-bomb-cream { background: var(--bomb-cream) !important; }
.bg-bomb-yellow { background: var(--bomb-yellow) !important; }
.text-bomb-primary { color: var(--bomb-primary) !important; }
.rounded-bomba { border-radius: var(--bomb-radius); }

/* Asymmetric divider */
.asym-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bomb-dark) 20%, var(--bomb-dark) 80%, transparent);
    margin: 60px 0;
    position: relative;
}
.asym-divider::before {
    content: '✦';
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    background: var(--bomb-cream);
    padding: 0 20px;
    color: var(--bomb-primary);
    font-size: 20px;
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(60px); transition: all 1s var(--bomb-ease); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: opacity 1s var(--bomb-ease); }
.reveal-fade.visible { opacity: 1; }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.9s var(--bomb-ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger animations */
.stagger > * { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--bomb-ease); }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-cinema { padding-top: 140px; }
    .sec-pad-x { padding: 80px 0; }
    .sec-header { margin-bottom: 50px; }
    .testi-mega { padding: 50px 30px; }
    .cta-giant { padding: 60px 30px; }
    .sticker { display: none; }
    .hero-3d-stack { margin-top: 60px; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 575px) {
    .sec-pad-x { padding: 60px 0; }
    .contact-form-card { padding: 30px !important; }
    .footer-bomb::after { font-size: 4rem; bottom: -10px; }
}
