﻿/* ============================================================
   OMNEX â€” Print House Skopje
   Design System & Global Styles
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

/* â”€â”€ Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --bg: #050505;
    --bg-card: #111111;
    --bg-elevated: #161616;
    --bg-tag: #1c1c1c;
    --border: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(249, 214, 72, 0.25);

    --accent: #f9d648;
    --accent-hover: #e6c430;
    --accent-dim: rgba(249, 214, 72, 0.12);

    --text: #ffffff;
    --text-secondary: #bbbbbb;
    --text-muted: #888888;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1410px;
    --topbar-h: 36px;
    --header-h: 122px;
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Montserrat",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}
svg {
    display: block;
}

/* â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,
h2,
h3,
h4,
h5 {
    line-height: 1.15;
    font-weight: 700;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.section-heading {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--accent);
    color: var(--bg);
    border: 2px solid var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn--outline-accent:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn--sm {
    padding: 9px 18px;
    font-size: 14px;
}

.btn svg {
    flex-shrink: 0;
}

/* â”€â”€ Arrow icon helper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.icon-arrow {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ─────────────────────────────────────────────────────────────
   TOPBAR
   ───────────────────────────────────────────────────────────── */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: var(--topbar-h);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}
.topbar__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.topbar__link:hover {
    color: var(--accent);
}
.topbar__link svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HEADER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo__svg {
    height: 52px;
    width: 45px;
}

.logo__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.08em;
}

/* Nav */
.nav {
    flex: 1;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition:
        color var(--transition),
        background var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav__link.active {
    color: var(--accent);
}

/* Dropdown */
.nav__item {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition:
        color var(--transition),
        background var(--transition);
}

.nav__dropdown a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown a .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Chevron for dropdown */
.chevron {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav__item:hover .chevron {
    transform: rotate(180deg);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition:
        transform var(--transition),
        opacity var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav--mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    z-index: 99;
}
.nav--mobile.open {
    display: block;
}
.nav--mobile .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
.nav--mobile .nav__link {
    padding: 12px 14px;
    font-size: 16px;
}
.nav--mobile .btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    max-width: 100vw;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Organic blob shape */
.hero__blob {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(249, 214, 72, 0.06) 0%, transparent 65%);
    filter: blur(60px);
}

.hero__blob-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 60%, rgba(249, 214, 72, 0.04) 0%, transparent 65%);
    filter: blur(80px);
}

/* Abstract dark circle (the Figma "Mask group" element) */
.hero__circle {
    position: absolute;
    top: -30px;
    right: 80px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, #141414 30%, #050505 80%);
    border: 1px solid var(--border);
}

/* Decorative sparkle dots */
.hero__sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__sparkles::before,
.hero__sparkles::after {
    content: "";
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
}
.hero__sparkles::before {
    width: 8px;
    height: 8px;
    top: 22%;
    right: 14%;
    animation: sparkle 3s ease-in-out infinite;
}
.hero__sparkles::after {
    width: 5px;
    height: 5px;
    top: 62%;
    right: 28%;
    animation: sparkle 4s ease-in-out infinite 1s;
}

.hero__dot {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.35;
}
.hero__dot--1 {
    width: 12px;
    height: 12px;
    top: 35%;
    right: 22%;
    animation: sparkle 3.5s ease-in-out infinite 0.5s;
}
.hero__dot--2 {
    width: 6px;
    height: 6px;
    top: 18%;
    right: 36%;
    animation: sparkle 2.8s ease-in-out infinite 1.5s;
}
.hero__dot--3 {
    width: 9px;
    height: 9px;
    top: 75%;
    right: 18%;
    animation: sparkle 4s ease-in-out infinite 2s;
}
.hero__dot--4 {
    width: 5px;
    height: 5px;
    top: 28%;
    left: 8%;
    animation: sparkle 3.2s ease-in-out infinite;
}

/* Business card mockup images */
.hero__cards {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    z-index: 1;
}

.hero__card-img {
    position: absolute;
    width: 340px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0.04;
}

.hero__card-img--1 {
    top: 20%;
    left: 0;
    transform: rotate(-8deg);
}

.hero__card-img--2 {
    top: 35%;
    left: 80px;
    transform: rotate(6deg);
}

.hero__mask-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.4);
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tag);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__title {
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--text);
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero__title span {
    color: var(--accent);
}

.hero__desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 14px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MARQUEE / TICKER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-section {
    overflow: hidden;
    margin: 0 0 0;
}

.marquee-track {
    position: relative;
    padding: 0 0 10px;
}

.marquee-band {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0;
}

.marquee-band + .marquee-band {
    border-top: none;
}

.marquee-band__inner {
    display: flex;
    white-space: nowrap;
}

.marquee-band__inner--left {
    animation: marqLeft 28s linear infinite;
}
.marquee-band__inner--right {
    animation: marqRight 28s linear infinite;
}

.marquee-band__track {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.marquee-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0 24px;
    white-space: nowrap;
}

.marquee-item span.accent {
    color: var(--accent);
}

.marquee-dot {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

@keyframes marqLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SECTION WRAPPER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
    padding: 100px 0;
}

.section--sm {
    padding: 70px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__header .section-sub {
    margin: 16px auto 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICE CARDS (Homepage)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--border-accent);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card__icon svg,
.service-card__icon img {
    width: 26px;
    height: 26px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.service-card .btn {
    align-self: flex-start;
    padding: 9px 18px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.section__cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.section__cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CLIENTS SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.clients-slider {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.clients-arrow {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color var(--transition),
        background var(--transition);
}

.clients-arrow:hover {
    border-color: var(--border-accent);
    background: var(--accent-dim);
}

.clients-arrow img {
    width: 20px;
    height: 20px;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px 0;
    flex: 1;
}

.client-logo {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: opacity var(--transition);
    filter: grayscale(100%) brightness(2);
}

.client-logo:hover {
    opacity: 0.85;
    filter: none;
}

.client-logo img {
    max-height: 52px;
    max-width: 140px;
    object-fit: contain;
}

/* Logo text fallback */
.client-logo__text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text);
    white-space: nowrap;
}

.clients-caption {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.65;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   WHY OMNEX SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.why-item {
    padding: 36px 32px;
    transition: background var(--transition);
}

.why-item:hover {
    background: var(--bg-card);
}

.why-item + .why-item {
    border-left: 1px solid var(--border);
}

.why-item__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-item__icon svg,
.why-item__icon img {
    width: 24px;
    height: 24px;
}

.why-item__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.why-item__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PAGE HERO (Inner pages)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
    padding: calc(var(--header-h) + 80px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: var(--header-h);
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(249, 214, 72, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tag);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero__title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-hero__desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SERVICES PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}

.service-row:hover {
    border-color: var(--border-accent);
}

.service-row + .service-row {
    margin-top: 16px;
}

.service-row__text {
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-row__num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(249, 214, 72, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.service-row__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-row__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.service-row__visual {
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.service-row__visual-inner {
    width: 140px;
    height: 140px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-row__visual-inner svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}

/* Service row alternating */
.service-row:nth-child(even) .service-row__text {
    order: 2;
}
.service-row:nth-child(even) .service-row__visual {
    order: 1;
    border-left: none;
    border-right: 1px solid var(--border);
}

/* Service tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.tag {
    background: var(--bg-tag);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ABOUT PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141414, #0e0e0e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: rgba(249, 214, 72, 0.3);
    fill: none;
    stroke-width: 1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(249, 214, 72, 0.3);
}

.about-badge__num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.about-badge__text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 4px;
}

.about-text {
}

.about-text .section-label {
    margin-bottom: 12px;
}
.about-text .section-heading {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-item__num {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-item__label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.value-card__icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.value-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PORTFOLIO PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.portfolio-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--bg-tag);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition:
        border-color var(--transition),
        transform var(--transition);
    cursor: pointer;
}

.portfolio-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.portfolio-item:nth-child(4n + 1) {
    grid-column: span 2;
}

.portfolio-item__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-item:nth-child(4n + 1) .portfolio-item__img {
    aspect-ratio: 21/9;
}

.portfolio-item__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141414 0%, #0e0e0e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.portfolio-item:hover .portfolio-item__img-placeholder {
    transform: scale(1.04);
}

.portfolio-item__img-icon {
    width: 56px;
    height: 56px;
    stroke: rgba(249, 214, 72, 0.25);
    fill: none;
    stroke-width: 1;
}

.portfolio-item__info {
    padding: 18px 20px;
}

.portfolio-item__cat {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
}

.portfolio-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CONTACT PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
}

.contact-info .section-label {
    margin-bottom: 12px;
}
.contact-info .section-heading {
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item__value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--transition),
        background var(--transition);
}

.social-btn:hover {
    border-color: var(--border-accent);
    background: var(--accent-dim);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition);
}

.social-btn:hover svg {
    stroke: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: inherit;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 214, 72, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: var(--bg-elevated);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    border-radius: var(--radius);
    margin-top: 8px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FAQ
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    background: none;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-item.open .faq-question {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--bg-tag);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--transition),
        background var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-dim);
}
.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.faq-item.open .faq-icon svg {
    stroke: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CTA BANNER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner__circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    opacity: 0.15;
}

.cta-circle--1 {
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
}

.cta-circle--2 {
    top: -30px;
    right: -30px;
    width: 320px;
    height: 320px;
}

.cta-circle--3 {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
}

.cta-circle--4 {
    bottom: -40px;
    left: -40px;
    width: 260px;
    height: 260px;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(249, 214, 72, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: left;
}

.cta-banner__desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.7;
    text-align: left;
}

.cta-banner__desc strong {
    color: var(--text);
    font-weight: 700;
}

.cta-banner__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner__visual img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
}

.cta-banner .btn {
    font-size: 16px;
    padding: 14px 32px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GIFTS PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gift-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color var(--transition),
        transform var(--transition);
}

.gift-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.gift-card__img {
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gift-card__img svg {
    width: 56px;
    height: 56px;
    stroke: rgba(249, 214, 72, 0.25);
    fill: none;
    stroke-width: 1;
}

.gift-card__body {
    padding: 24px;
}

.gift-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gift-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gift-card .btn {
    font-size: 13px;
    padding: 9px 18px;
}

/* ───────────────────────────────────────────────────────────────
   HUMANOST PAGE
   ─────────────────────────────────────────────────────────────── */

/* Yellow text highlight marker */
.text-highlight {
    background: var(--accent);
    padding: 4px 8px;
    font-weight: 700;
    color: var(--bg);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 2;
}

.humanost-highlight {
    max-width: 800px;
    margin-bottom: 12px;
}

/* Help section – two-column */
.humanost-help {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.humanost-help__text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 16px;
}

.humanost-help__text .section-heading {
    margin-bottom: 8px;
}

.humanost-help__bold {
    font-weight: 800 !important;
    color: var(--accent) !important;
    font-size: 17px !important;
    margin-top: 20px !important;
}

.humanost-help__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.humanost-flower {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Dark appreciation banner */
.humanost-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.humanost-banner__ribbon {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
}

.humanost-banner__ribbon--left {
    left: 0;
}
.humanost-banner__ribbon--right {
    right: 0;
}

.humanost-banner__title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.humanost-banner__desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Products grid */
.humanost-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
}

.humanost-product {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color var(--transition),
        transform var(--transition);
}

.humanost-product:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.humanost-product__img {
    aspect-ratio: 1/1;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.humanost-product__img svg {
    width: 48px;
    height: 48px;
    stroke: rgba(249, 214, 72, 0.25);
    fill: none;
    stroke-width: 1;
}

.humanost-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 80px 0 36px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer__brand p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 24px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__copy a {
    color: var(--accent);
}
.footer__copy a:hover {
    text-decoration: underline;
}
.footer__copy .footer__omnex {
    color: var(--accent) !important;
    font-weight: 800 !important;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--accent);
}

.footer__disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.6;
}

.footer__disclaimer p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   UTILITIES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.text-center {
    text-align: center;
}
.text-accent {
    color: var(--accent);
}

.mt-0 {
    margin-top: 0;
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-48 {
    margin-top: 48px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    justify-content: center;
}
.breadcrumb a {
    transition: color var(--transition);
}
.breadcrumb a:hover {
    color: var(--text-secondary);
}
.breadcrumb span {
    color: var(--text-secondary);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-item + .why-item:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .cta-banner {
        grid-template-columns: 1fr;
    }
    .humanost-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .hero__cards {
        display: none;
    }
    .service-row {
        grid-template-columns: 1fr;
    }
    .service-row__visual {
        min-height: 200px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .service-row:nth-child(even) .service-row__text {
        order: 1;
    }
    .service-row:nth-child(even) .service-row__visual {
        order: 2;
        border-right: none;
        border-top: 1px solid var(--border);
    }
    .service-row__text {
        padding: 36px 28px;
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-badge {
        right: 0;
        bottom: -16px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .portfolio-item:nth-child(4n + 1) {
        grid-column: span 1;
    }
    .clients-arrow {
        display: none;
    }
    .humanost-help {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-h: 86px;
    }
    .topbar {
        display: none;
    }
    .header {
        top: 0;
    }
    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header__inner {
        justify-content: space-between;
    }
    .header__inner > .btn {
        display: none;
    }
    .hero__circle {
        display: none;
    }
    .hero__cards {
        display: none;
    }
    .hero__dot {
        display: none;
    }
    .hero__sparkles {
        display: none;
    }
    .hero__blob {
        width: 400px;
        right: -80px;
        top: -40px;
    }
    .hero__blob-2 {
        width: 300px;
        left: -60px;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container: 100%;
    }
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 64px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-row__text {
        padding: 28px 20px;
    }
    .service-row__num {
        font-size: 48px;
    }
    .service-row__title {
        font-size: 22px;
    }
    .service-row__visual {
        min-height: 160px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-item + .why-item {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gifts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .humanost-grid {
        grid-template-columns: 1fr 1fr;
    }
    .humanost-banner {
        padding: 48px 20px;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    .cta-banner {
        padding: 40px 24px;
    }
    .cta-banner__title {
        font-size: 28px;
    }
    .cta-banner__desc {
        font-size: 15px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }
    .clients-grid {
        gap: 20px;
    }
    .client-logo img {
        max-width: 100px;
        max-height: 40px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__actions .btn {
        justify-content: center;
    }
    .logo__svg {
        height: 36px;
        width: 31px;
    }
    .logo__name {
        font-size: 16px;
    }
    .hero__inner {
        padding: 48px 0 64px;
    }
    .page-hero {
        padding: calc(var(--header-h) + 48px) 0 48px;
    }
    .section__header {
        margin-bottom: 40px;
    }
    .marquee-item span {
        font-size: 13px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .gifts-grid {
        grid-template-columns: 1fr;
    }
    .humanost-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero__title {
        font-size: 36px;
    }
    .hero__desc {
        font-size: 15px;
    }
    .hero__badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .section-heading {
        font-size: 28px;
    }
    .section-sub {
        font-size: 16px;
    }
    .page-hero__title {
        font-size: 32px;
    }
    .page-hero__desc {
        font-size: 15px;
    }
    .client-logo img {
        max-width: 80px;
        max-height: 32px;
    }
    .clients-grid {
        gap: 16px;
    }
}
