/* ── RESET & TOKENS ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0D0D0D;
    --charcoal: #161616;
    --dark-surface: #1a1a1a;
    --yellow: #F5C518;
    --yellow-dim: #B8940D;
    --yellow-bg: rgba(245, 197, 24, 0.08);
    --yellow-bd: rgba(245, 197, 24, 0.22);
    --yellow-strong: rgba(245, 197, 24, 0.18);
    --yellow-glow: rgba(245, 197, 24, 0.15);
    --white: #FFFFFF;
    --offwhite: #F5F4F0;
    --surface: #FAFAF8;
    --muted: #888;
    --body: #3C3C3C;
    --border: #E8E8E4;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --container: 1040px;
    --nav-h: 52px;
    --mobile-bottom-h: 64px;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(180deg, #f7f6f1 0%, #f3f1eb 100%);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.page-shell {
    max-width: var(--container);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    min-height: 100vh;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}

.section-inner,
.hero-inner,
.nav-inner,
.footer-inner {
    width: min(100%, 960px);
    margin: 0 auto;
}

/* ── DECOR ───────────────────────────────────────────── */
.bg-orb {
    position: fixed;
    inset: auto auto 8% -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.18), rgba(245, 197, 24, 0) 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
    opacity: 0.8;
}

.bg-orb.top {
    inset: -90px -70px auto auto;
    width: 320px;
    height: 320px;
    opacity: 0.55;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 197, 24, 0.12), transparent 28%),
        linear-gradient(180deg, #0B0B0B 0%, #111 100%);
    padding: 48px 20px 36px;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.95;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow) 0%, rgba(245, 197, 24, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.4);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

/* ── AVAILABILITY PILL ───────────────────────────────── */
.avail-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-bg);
    border: 1px solid var(--yellow-bd);
    border-radius: 999px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.avail-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
    animation: ping 2s ease-out infinite;
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, 0);
    }
}

.avail-pill span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
}

/* ── HERO META TAGS ──────────────────────────────────── */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-meta-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    color: #9c9c9c;
    padding: 7px 14px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-meta-item:hover {
    border-color: rgba(245, 197, 24, 0.2);
    background: rgba(245, 197, 24, 0.06);
}

/* ── HERO NAME ────────────────────────────────────────── */
.hero-name {
    font-size: clamp(38px, 11vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-name em {
    font-style: normal;
    color: var(--yellow);
}

.hero-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #767676;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.hero-role::before {
    content: '//';
    color: var(--yellow);
    font-weight: 600;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(245, 197, 24, 0.5), rgba(255, 255, 255, 0.08) 60%, transparent);
    margin: 20px 0;
}

.hero-sub {
    font-size: 14px;
    color: #9A9A9A;
    line-height: 1.8;
    letter-spacing: 0.02em;
    max-width: 620px;
}

/* ── HERO CTA ─────────────────────────────────────────── */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    transition: transform 0.25s var(--ease-bounce), border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 10px 22px rgba(245, 197, 24, 0.18);
}

.btn-primary:hover {
    background: #ffd539;
    box-shadow: 0 14px 28px rgba(245, 197, 24, 0.25);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #e8e8e8;
}

.btn-ghost:hover {
    border-color: rgba(245, 197, 24, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: var(--yellow);
}

/* ── HERO CONTACTS ────────────────────────────────────── */
.hero-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-bounce), box-shadow 0.25s ease;
    text-decoration: none;
    min-width: 0;
    min-height: 48px;
    /* Better touch target */
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 197, 24, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-item:active {
    transform: translateY(0) scale(0.98);
}

.contact-item.full {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 24, 0.08);
    border-radius: 8px;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text {
    min-width: 0;
    font-size: 12px;
    color: #BBBBBB;
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── HERO ART ─────────────────────────────────────────── */
.hero-art {
    position: relative;
    min-height: 340px;
}

.hero-card {
    position: relative;
    height: 100%;
    min-height: 340px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(245, 197, 24, 0.18), transparent 24%),
        radial-gradient(circle at 84% 78%, rgba(245, 197, 24, 0.12), transparent 20%);
    pointer-events: none;
}

.hero-card-top {
    position: absolute;
    inset: 0 0 auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    z-index: 2;
}

.window-dots {
    display: inline-flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.window-dots span:nth-child(1) {
    background: rgba(255, 255, 255, 0.12);
}

.window-dots span:nth-child(2) {
    background: rgba(245, 197, 24, 0.6);
}

.window-dots span:nth-child(3) {
    background: rgba(255, 255, 255, 0.24);
}

.hero-card-label {
    color: #7f7f7f;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.hero-lottie-wrap {
    position: absolute;
    inset: 52px 16px 110px 16px;
    border-radius: 22px;
    border: 1px dashed rgba(245, 197, 24, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-lottie {
    width: min(100%, 480px);
    height: 100%;
    min-height: 200px;
    position: relative;
    z-index: 1;
}

.hero-lottie-glow {
    position: absolute;
    inset: auto 50% 16px auto;
    transform: translateX(50%);
    width: 160px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.3), rgba(245, 197, 24, 0));
    filter: blur(12px);
    pointer-events: none;
}

.hero-lottie-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    color: #8f8f8f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    z-index: 0;
}

.hero-stats {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 2;
}

.stat-box {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 10px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(245, 197, 24, 0.2);
    background: rgba(0, 0, 0, 0.45);
}

.stat-kicker {
    font-size: 9px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-value span {
    color: var(--yellow);
}

.stat-desc {
    font-size: 10px;
    color: #FFFFFF;
    line-height: 1.45;
    opacity: 0.7;
}

/* ── NAV ────────────────────────────────────────────── */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 197, 24, 0.12);
    height: var(--nav-h);
}

.nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}

/* Nav brand / logo */
.nav-brand {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5b5b5b;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand span {
    color: var(--yellow);
}

/* Desktop tabs */
.nav-tabs-wrap {
    display: none;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.nav-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    flex-shrink: 0;
    padding: 14px 16px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5b5b5b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    font-family: 'JetBrains Mono', monospace;
}

.nav-tab:hover {
    color: #b1b1b1;
}

.nav-tab.active {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

/* ── HAMBURGER BUTTON ────────────────────────────────── */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 4px;
    z-index: 200;
    position: relative;
    align-self: center;
}

.hamburger-lines {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: #888;
    border-radius: 2px;
    transition: transform 0.3s var(--ease-smooth), opacity 0.2s ease, background 0.2s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-lines span {
    background: var(--yellow);
}

.hamburger.active .hamburger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE SLIDE MENU ───────────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
    z-index: 160;
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-smooth);
    overflow-y: auto;
    border-left: 1px solid rgba(245, 197, 24, 0.1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #888;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    transition: color 0.2s ease, background 0.2s ease;
    min-height: 48px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--yellow);
    background: rgba(245, 197, 24, 0.06);
}

.mobile-menu-link .menu-num {
    color: rgba(245, 197, 24, 0.4);
    font-size: 10px;
    min-width: 20px;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 12px 0;
}

.mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    border-radius: var(--radius);
    transition: color 0.2s ease;
    min-height: 44px;
}

.mobile-menu-contact:hover {
    color: var(--yellow);
}

.mobile-menu-contact svg {
    width: 14px;
    height: 14px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── LANG TOGGLE ────────────────────────────────────── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    color: #565656;
    transition: color 0.2s ease, background 0.2s ease;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    color: #a7a7a7;
}

.lang-btn.active {
    color: var(--yellow);
    background: var(--yellow-bg);
}

/* ── SECTIONS ───────────────────────────────────────── */
.section {
    position: relative;
    z-index: 1;
    padding: 36px 20px;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section.alt {
    background: rgba(250, 250, 248, 0.92);
}

.sec-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.sec-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow-dim);
    background: var(--yellow-bg);
    border: 1px solid var(--yellow-bd);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
}

.sec-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

.sec-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 720px;
}

.body-text {
    font-size: 14px;
    color: var(--body);
    line-height: 1.85;
    max-width: 760px;
}

.body-text p+p {
    margin-top: 10px;
}

.body-text strong {
    font-weight: 700;
    color: var(--black);
}

/* ── CHIPS ──────────────────────────────────────────── */
.chip-group {
    margin-top: 22px;
}

.chip-group-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--body);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease-bounce), box-shadow 0.2s ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    cursor: default;
}

.chip:hover {
    border-color: #d1d1cb;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.chip.primary {
    background: var(--yellow-bg);
    border-color: var(--yellow-bd);
    color: #7A6200;
    font-weight: 600;
}

.chip.primary:hover {
    background: rgba(245, 197, 24, 0.14);
}

/* ── CAPABILITY CARDS ───────────────────────────────── */
.cap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cap-card {
    background: linear-gradient(180deg, #fff, #fcfcfa);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-bounce);
    box-shadow: var(--shadow-card);
}

.cap-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--yellow), rgba(245, 197, 24, 0.3));
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.cap-card:hover {
    border-color: rgba(245, 197, 24, 0.35);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.cap-card:active {
    transform: translateY(-1px);
}

.cap-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--yellow-bg);
    border: 1px solid var(--yellow-bd);
    font-size: 20px;
    margin-bottom: 14px;
}

.cap-card-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.cap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cap-list li {
    font-size: 13px;
    color: var(--body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.cap-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: var(--yellow);
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}

/* ── PORTFOLIO ──────────────────────────────────────── */
.port-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.port-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 248, 0.95));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--body);
    font-family: 'JetBrains Mono', monospace;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-bounce), box-shadow 0.25s ease;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    min-height: 52px;
    /* Better touch target */
    position: relative;
    overflow: hidden;
}

.port-card::after {
    content: '→';
    position: absolute;
    right: 16px;
    color: var(--yellow);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 14px;
}

.port-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.port-card:hover {
    border-color: rgba(245, 197, 24, 0.35);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

.port-card:active {
    transform: translateY(-1px);
}

.port-card-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12);
    transition: box-shadow 0.3s ease;
}

.port-card:hover .port-card-dot {
    box-shadow: 0 0 0 6px rgba(245, 197, 24, 0.2);
}

.port-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.port-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 999px;
    padding: 14px 22px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    transition: background 0.2s ease, transform 0.25s var(--ease-bounce), box-shadow 0.2s ease;
    border: 1px solid transparent;
    min-height: 48px;
}

.port-cta:hover {
    background: #202020;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.port-cta:active {
    transform: translateY(0);
}

.port-cta.alt {
    background: transparent;
    border-color: var(--border);
    color: var(--body);
}

.port-cta.alt:hover {
    background: #fff;
    border-color: rgba(245, 197, 24, 0.35);
    color: var(--black);
}

.port-cta-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.port-cta:hover .port-cta-arrow {
    transform: translateX(3px);
}

/* ── VALUE BOX ──────────────────────────────────────── */
.value-card {
    background: linear-gradient(180deg, #0F0F0F, #161616);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--yellow), transparent 80%);
}

.value-card::after {
    content: '\201C';
    position: absolute;
    right: 20px;
    bottom: -16px;
    font-size: 140px;
    font-weight: 700;
    color: rgba(245, 197, 24, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.value-card p {
    font-size: 14px;
    color: #B3B3B3;
    line-height: 1.9;
    position: relative;
    max-width: 760px;
}

/* ── VALUE FEATURES GRID ───────────────────────────── */
.value-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.value-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(180deg, #fff, #fcfcfa);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s var(--ease-bounce);
}

.value-feature:hover {
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.value-feature-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--yellow-bg);
    border: 1px solid var(--yellow-bd);
    border-radius: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

.value-feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.value-feature-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── AVAILABILITY ───────────────────────────────────── */
.avail-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 10px 24px rgba(245, 197, 24, 0.18);
}

.avail-card-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    animation: ping-dark 2s ease-out infinite;
}

@keyframes ping-dark {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.availability-panel {
    display: grid;
    gap: 16px;
    align-items: start;
    margin-top: 10px;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mini-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease, transform 0.25s var(--ease-bounce);
}

.mini-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-2px);
}

.mini-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-card strong {
    display: block;
    color: var(--black);
    font-size: 14px;
    line-height: 1.4;
}

/* ── CTA SECTION ───────────────────────────────────── */
.avail-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.avail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s var(--ease-bounce);
    min-height: 48px;
}

.avail-cta.primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 10px 22px rgba(245, 197, 24, 0.18);
}

.avail-cta.primary:hover {
    background: #ffd539;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(245, 197, 24, 0.25);
}

.avail-cta.secondary {
    background: var(--black);
    color: var(--yellow);
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.avail-cta.secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--charcoal);
    padding: 28px 20px;
    padding-bottom: calc(28px + var(--mobile-bottom-h) + 8px);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-name {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #505050;
    font-family: 'JetBrains Mono', monospace;
}

.footer-name span {
    color: var(--yellow);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 10px;
    color: #6a6a6a;
    text-decoration: none;
    letter-spacing: 0.06em;
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--yellow);
}

/* ── MOBILE BOTTOM NAV ─────────────────────────────── */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--mobile-bottom-h);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(245, 197, 24, 0.1);
    z-index: 90;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #555;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: var(--radius);
    transition: color 0.2s ease, background 0.2s ease;
    min-width: 48px;
    min-height: 44px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--yellow);
    background: rgba(245, 197, 24, 0.06);
}

.bottom-nav-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── FLOATING WHATSAPP ─────────────────────────────── */
.floating-wa {
    position: fixed;
    bottom: calc(var(--mobile-bottom-h) + 16px);
    right: 16px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 95;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s var(--ease-bounce), box-shadow 0.3s ease;
    text-decoration: none;
    border: none;
}

.floating-wa:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.floating-wa:active {
    transform: scale(0.95);
}

.floating-wa svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Pulse ring */
.floating-wa::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: wa-ring 2.5s ease-out infinite;
}

@keyframes wa-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ── SCROLL TO TOP ──────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: calc(var(--mobile-bottom-h) + 76px);
    right: 16px;
    width: 42px;
    height: 42px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: none;
    z-index: 95;
    box-shadow: 0 12px 20px rgba(245, 197, 24, 0.22);
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: scale(1.08) translateY(-2px);
}

.scroll-top:active {
    transform: scale(0.95);
}

.scroll-top svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── UTILITIES ──────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.08s;
}

.fade-up.delay-2 {
    animation-delay: 0.16s;
}

.fade-up.delay-3 {
    animation-delay: 0.24s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SKIP LINK ──────────────────────────────────────── */
.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
    transform: translateY(-100%);
    transition: transform 0.25s var(--ease-smooth);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

/* ── RESPONSIVE (Mobile First) ─────────────────────── */

/* Small phones */
@media (max-width: 374px) {
    .hero-name {
        font-size: 34px;
    }

    .hero-meta-item {
        font-size: 9px;
        padding: 6px 10px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 400px;
    }

    .hero-lottie-wrap {
        bottom: 170px;
    }

    .stat-desc {
        display: none;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }
}

/* Regular phones */
@media (max-width: 639px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero-card {
        min-height: 380px;
    }

    .hero-lottie-wrap {
        bottom: 100px;
    }

    .stat-value {
        font-size: 16px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets */
@media (min-width: 640px) {
    .hero {
        padding: 64px 32px 48px;
    }

    .section {
        padding: 48px 32px;
    }

    .hero-contacts {
        grid-template-columns: 1fr 1fr;
    }

    .hero-contacts .full {
        grid-column: 1 / -1;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-features {
        grid-template-columns: 1fr 1fr;
    }

    .mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-wa {
        bottom: calc(var(--mobile-bottom-h) + 20px);
    }
}

/* Desktop */
@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
        gap: 36px;
        align-items: center;
    }

    .hero-art {
        display: flex;
        justify-content: flex-end;
    }

    .hero-card {
        width: min(100%, 520px);
        min-height: 540px;
    }

    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .port-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .availability-panel {
        grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    }

    .value-features {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Show desktop nav tabs, hide hamburger */
    .nav-tabs-wrap {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    /* Hide mobile bottom nav on desktop */
    .mobile-bottom-nav {
        display: none;
    }

    /* Adjust footer padding */
    footer {
        padding-bottom: 28px;
    }

    /* Adjust floating elements */
    .floating-wa {
        bottom: 24px;
        right: 24px;
    }

    .scroll-top {
        bottom: 84px;
        right: 24px;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    :root {
        --container: 1180px;
    }

    .section-inner,
    .hero-inner,
    .nav-inner,
    .footer-inner {
        width: min(100%, 1080px);
    }

    .hero {
        padding: 72px 40px 56px;
    }

    .hero-inner {
        gap: 48px;
    }

    .hero-card {
        min-height: 580px;
    }
}

/* ── REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .section {
        opacity: 1;
        transform: none;
    }
}

/* ── PRINT ─────────────────────────────────────────── */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    @page {
        size: A4 portrait;
        margin: 0;
    }

    html,
    body {
        background: #F5F4F0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        font-size: 11px;
    }

    .bg-orb,
    .nav-bar,
    .scroll-top,
    .hero-art,
    .hero-cta,
    .mobile-bottom-nav,
    .floating-wa,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    .page-shell {
        box-shadow: none !important;
        max-width: 100% !important;
    }

    .hero {
        background: #0D0D0D !important;
        padding: 32px 28px 26px !important;
        page-break-inside: avoid;
    }

    .hero::before {
        background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
        background-size: 40px 40px !important;
    }

    .hero::after {
        background: #F5C518 !important;
    }

    .hero-name {
        font-size: 36px !important;
        color: #FFFFFF !important;
    }

    .hero-name em {
        color: #F5C518 !important;
    }

    .hero-role {
        color: #555555 !important;
    }

    .avail-pill {
        background: rgba(245, 197, 24, 0.1) !important;
        border-color: rgba(245, 197, 24, 0.3) !important;
    }

    .avail-pill span {
        color: #F5C518 !important;
    }

    .avail-dot {
        background: #F5C518 !important;
        animation: none !important;
        box-shadow: none !important;
    }

    .hero-divider {
        background: linear-gradient(to right, rgba(245, 197, 24, 0.4), rgba(255, 255, 255, 0.05) 60%, transparent) !important;
    }

    .hero-sub,
    .hero-meta-item,
    .contact-text {
        color: #777777 !important;
    }

    .contact-item {
        background: rgba(255, 255, 255, 0.04) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    .contact-icon svg {
        stroke: #F5C518 !important;
    }

    .section {
        opacity: 1 !important;
        transform: none !important;
        padding: 18px 24px !important;
        border-bottom: 1px solid #E8E8E4 !important;
        page-break-inside: avoid;
    }

    .section.alt {
        background: #FAFAF8 !important;
    }

    .sec-tag {
        background: rgba(245, 197, 24, 0.08) !important;
        border-color: rgba(245, 197, 24, 0.22) !important;
        color: #B8940D !important;
        font-size: 8px !important;
    }

    .sec-line {
        background: linear-gradient(to right, #E8E8E4, transparent) !important;
    }

    .sec-title {
        font-size: 16px !important;
        color: #0D0D0D !important;
    }

    .body-text {
        font-size: 11px !important;
        color: #3C3C3C !important;
    }

    .body-text strong {
        color: #0D0D0D !important;
    }

    .chip {
        background: #EEEEEA !important;
        border-color: #E0E0DC !important;
        color: #3C3C3C !important;
        font-size: 10px !important;
        padding: 3px 8px !important;
    }

    .chip.primary {
        background: rgba(245, 197, 24, 0.1) !important;
        border-color: rgba(245, 197, 24, 0.3) !important;
        color: #7A6200 !important;
    }

    .cap-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 8px !important;
    }

    .cap-card {
        border-color: #E0E0DC !important;
        background: #FFFFFF !important;
        padding: 12px 14px !important;
        box-shadow: none !important;
    }

    .cap-card::before {
        background: #F5C518 !important;
    }

    .cap-card-title {
        color: #0D0D0D !important;
        font-size: 9px !important;
    }

    .cap-list li {
        font-size: 10px !important;
        color: #3C3C3C !important;
    }

    .cap-list li::before {
        background: #F5C518 !important;
    }

    .port-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .port-card {
        background: #F5F4F0 !important;
        border-color: #E0E0DC !important;
        font-size: 10px !important;
        padding: 8px 10px !important;
        box-shadow: none !important;
    }

    .port-card-dot {
        background: #F5C518 !important;
        box-shadow: none !important;
    }

    .port-actions {
        display: none !important;
    }

    .value-card {
        background: #0D0D0D !important;
        padding: 16px 18px !important;
        box-shadow: none !important;
    }

    .value-card::before {
        background: linear-gradient(to right, #F5C518, transparent 80%) !important;
    }

    .value-card p {
        color: #AAAAAA !important;
        font-size: 11px !important;
    }

    .avail-card {
        background: #F5C518 !important;
        color: #0D0D0D !important;
        font-size: 9px !important;
        padding: 5px 12px !important;
        box-shadow: none !important;
    }

    .avail-card-dot {
        background: #0D0D0D !important;
        animation: none !important;
        box-shadow: none !important;
    }

    .mini-card {
        box-shadow: none !important;
    }

    footer {
        background: #161616 !important;
        padding: 14px 24px !important;
    }

    .footer-name {
        color: #3A3A3A !important;
    }

    .footer-name span {
        color: #F5C518 !important;
    }

    .footer-link {
        color: #3A3A3A !important;
    }
}
