/* UH Marketing Color Scheme */
:root {
    --uh-cream: #f5f1e8;
    --uh-cream-2: #ebe4d3;
    --uh-cream-3: #e0d7c0;
    --uh-navy: #0a1628;
    --uh-navy-2: #142640;
    --uh-navy-3: #1f3358;
    --uh-ink: #1a1a1a;
    --uh-ink-2: #3d3d3d;
    --uh-ink-mute: #6b6b6b;
    --uh-gold: #b8924e;
    --uh-gold-2: #c9a961;
    --uh-gold-soft: #d9c290;
    --uh-gold-deep: #8a6c34;
    --uh-line: rgba(10, 22, 40, 0.08);
    --uh-line-gold: rgba(184, 146, 78, 0.25);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--uh-cream);
    color: var(--uh-ink);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.it-company-hero-title,
.it-company-title,
.section-head h2,
.approach h2,
.service h3,
.package h3,
.faq-q {
    font-family: 'Fraunces', serif;
}

/* Utility Classes */
.ptb-120 {
    padding: 80px 0;
}

.pt-160 {
    padding-top: 160px;
}

.pb-40 {
    padding-bottom: 40px;
}

.fs-64 {
    font-size: 64px;
    line-height: 1.1;
}

.fs-40 {
    font-size: 40px;
}

.fs-18 {
    font-size: 18px;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.rounded-5 {
    border-radius: 50px !important;
}

/* Color Overrides */
.it-company-bg {
    background: var(--uh-navy) !important;
}

.it-company-bg-two {
    background: var(--uh-cream) !important;
}

.it-company-bg-three {
    background: var(--uh-cream-3) !important;
}

.it-company-color {
    color: var(--uh-navy) !important;
}

.it-company-color-two {
    color: var(--uh-gold-2) !important;
}

.clr-paragraph {
    color: var(--uh-ink-2);
}

.text-dg-color {
    color: var(--uh-ink-mute);
}

/* ============================================================
   BUTTONS — 3-Color Palette (Cream / Navy / Gold)
   ============================================================ */
.btn {
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Navy primary button */
.btn-primary {
    background: var(--uh-navy) !important;
    border-color: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--uh-gold) !important;
    border-color: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 146, 78, 0.35) !important;
}

/* Navy outline button — NO MORE BLUE */
.btn-outline-primary {
    background: transparent !important;
    border: 1.5px solid var(--uh-navy) !important;
    color: var(--uh-navy) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--uh-navy) !important;
    border-color: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.2) !important;
}

/* Gold button */
.btn-gold {
    background: var(--uh-gold) !important;
    border: none !important;
    color: var(--uh-navy) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--uh-gold-deep) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(184, 146, 78, 0.4);
}

/* Navy outline variant (alias) */
.btn-outline-navy {
    background: transparent !important;
    border: 1.5px solid var(--uh-navy) !important;
    color: var(--uh-navy) !important;
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.btn-outline-navy:hover {
    background: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.2) !important;
}

/* Popular package outline (white on dark bg) */
.package-popular .btn-outline-navy {
    border-color: rgba(245,241,232,0.4) !important;
    color: var(--uh-cream) !important;
}

.package-popular .btn-outline-navy:hover {
    background: var(--uh-gold) !important;
    border-color: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
}

/* WhatsApp button — Navy base with gold icon (matches palette) */
.btn-wa {
    background: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
    border: 1.5px solid var(--uh-gold) !important;
    transition: all 0.3s ease;
}

.btn-wa i {
    color: #25D366;
}

.btn-wa:hover {
    background: var(--uh-gold) !important;
    border-color: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 146, 78, 0.3);
}

.btn-wa:hover i {
    color: var(--uh-navy);
}

.bg-primary {
    background: var(--uh-navy) !important;
}

/* Hero Section — replaces theme PNG wave (.it-company-hero-area::after in main.css) */
.it-company-hero-area {
    position: relative;
    isolation: isolate;
}

.it-company-hero-area > .container {
    position: relative;
    z-index: 1;
}

.it-company-hero-area::after {
    position: absolute !important;
    content: "" !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
    pointer-events: none;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-size: auto !important;
    background-position: 0 0 !important;
    /* Soft circular / elliptical washes: brand gold + navy mist (no bright orange PNG) */
    background: radial-gradient(
            circle farthest-corner at 90% 118%,
            rgba(184, 146, 78, 0.2) 0%,
            rgba(184, 146, 78, 0.07) 40%,
            transparent 62%
        ),
        radial-gradient(
            circle farthest-corner at 10% 8%,
            rgba(31, 51, 88, 0.09) 0%,
            transparent 52%
        ),
        radial-gradient(
            ellipse 130% 45% at 55% 128%,
            rgba(217, 194, 144, 0.12) 0%,
            transparent 56%
        );
}

@media (max-width: 575.98px) {
    .it-company-hero-area::after {
        background: radial-gradient(
                circle farthest-corner at 88% 108%,
                rgba(184, 146, 78, 0.16) 0%,
                rgba(184, 146, 78, 0.05) 38%,
                transparent 58%
            ),
            radial-gradient(
                circle farthest-corner at 12% 6%,
                rgba(31, 51, 88, 0.07) 0%,
                transparent 50%
            );
    }
}

.it-company-hero-title em {
    font-style: italic;
    color: var(--uh-gold-deep);
    position: relative;
    display: inline-block;
}

.it-company-hero-title em::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(184, 146, 78, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-visual {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--uh-navy);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transform-origin: center center;
    transform-style: preserve-3d;
    box-shadow:
        22px 30px 56px -14px rgba(10, 22, 40, 0.34),
        0 6px 18px rgba(10, 22, 40, 0.1);
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 38%,
        transparent 62%,
        rgba(0, 0, 0, 0.14) 100%
    );
}

.hero-visual:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) scale(1.02);
    box-shadow:
        30px 38px 68px -12px rgba(10, 22, 40, 0.4),
        0 8px 22px rgba(10, 22, 40, 0.12);
}

.hero-visual-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual {
        transform: none;
        box-shadow: 0 8px 24px rgba(10, 22, 40, 0.12);
    }

    .hero-visual:hover {
        transform: none;
    }
}

/* Partners section — Swiper */
.partners-slider-shell {
    position: relative;
}

.partners-slider-shell::before,
.partners-slider-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 2.25rem;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-shell::before {
    left: 0;
    background: linear-gradient(90deg, var(--uh-cream) 0%, rgba(245, 241, 232, 0) 100%);
}

.partners-slider-shell::after {
    right: 0;
    background: linear-gradient(270deg, var(--uh-cream) 0%, rgba(245, 241, 232, 0) 100%);
}

@media (max-width: 575.98px) {
    .partners-slider-shell::before,
    .partners-slider-shell::after {
        width: 24px;
    }
}

.uh-partners-swiper {
    overflow: hidden;
    padding-bottom: 2.25rem;
}

.uh-partners-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.partners-section .partner-slide-card {
    position: relative;
    text-align: center;
    padding: 1.35rem 1rem 1.15rem !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
    border: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow:
        0 10px 28px rgba(10, 22, 40, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.partners-section .partner-slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 78, 0.55), transparent);
    opacity: 0.85;
    pointer-events: none;
}

.partners-section .partner-slide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 146, 78, 0.32);
    box-shadow:
        0 16px 36px rgba(10, 22, 40, 0.1),
        0 0 0 1px rgba(184, 146, 78, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.partners-section .partner-slide-card:active {
    transform: translateY(-2px);
}

/* Icon ring — same gold accent for every partner card (fits site palette) */
.partners-section .partner-icon-ring {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 11px;
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--uh-gold) 0%, var(--uh-gold-deep) 50%, var(--uh-gold-2) 100%);
    box-shadow:
        0 8px 20px rgba(184, 146, 78, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: none;
}

.partners-section .partner-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(182deg, #ffffff 0%, #f8f4eb 100%);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.partners-section .partner-slide-card:hover .partner-icon {
    background: linear-gradient(182deg, #ffffff 0%, #fdf9f2 100%);
}

.partners-section .partner-icon i {
    font-size: 1.5rem;
    color: var(--uh-navy) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    filter: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.partners-section .partner-slide-card:hover .partner-icon i {
    color: var(--uh-gold-deep) !important;
    transform: scale(1.04);
}

.partners-section .partner-slide-card:hover .partner-icon-ring {
    box-shadow:
        0 10px 26px rgba(184, 146, 78, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.partners-section .partner-kicker {
    margin-top: 0.35rem;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--uh-gold-deep);
}

.partners-section .partner-title-line {
    margin-top: 0.3rem;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--uh-navy);
    letter-spacing: -0.01em;
}

.uh-partners-pagination {
    bottom: 0 !important;
}

.uh-partners-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--uh-ink-mute);
    opacity: 0.35;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.uh-partners-pagination .swiper-pagination-bullet-active {
    background: var(--uh-gold-deep);
    opacity: 1;
    transform: scale(1.15);
}

/* How We Work — full-bleed slider + gold nav (no Swiper default blue) */
.uh-process-full-bleed {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.uh-process-swiper {
    --swiper-theme-color: var(--uh-gold-deep);
    --swiper-navigation-color: var(--uh-gold-deep);
    --swiper-navigation-size: 30px;
    position: relative;
    overflow: hidden;
    padding: 4px 0 2.9rem;
}

@media (min-width: 768px) {
    .uh-process-swiper {
        padding-left: 0;
        padding-right: 0;
    }
}

.uh-process-swiper .swiper-slide {
    display: flex;
    height: auto;
    box-sizing: border-box;
}

.uh-process-swiper .process-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 332px;
    padding: 32px 28px 24px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(10, 22, 40, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbf9f4 100%);
    box-shadow:
        0 14px 34px rgba(10, 22, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.uh-process-swiper .process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(184, 146, 78, 0.07), transparent 32%);
}

.uh-process-swiper .process-card .step-tag {
    margin-top: auto !important;
}

/* Icon circle: always brand gold / navy (Swiper focus/active can otherwise pick up theme blue) */
.uh-process-swiper .process-icon,
.uh-process-swiper .swiper-slide-active .process-icon,
.uh-process-swiper .swiper-slide-next .process-icon {
    background: linear-gradient(160deg, #ede2c8 0%, #d9c290 48%, #c9a961 100%) !important;
    box-shadow:
        0 8px 20px rgba(184, 146, 78, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.uh-process-swiper .process-card:hover .process-icon,
.uh-process-swiper .swiper-slide-active .process-card:hover .process-icon {
    background: linear-gradient(160deg, #e8d8b4 0%, #d2b87a 52%, #b8924e 100%) !important;
    box-shadow:
        0 10px 24px rgba(184, 146, 78, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

.uh-process-swiper .process-icon i {
    color: var(--uh-navy) !important;
}

.uh-process-swiper .process-card:hover .process-icon i {
    color: var(--uh-gold-deep) !important;
}

.uh-process-swiper .process-card:focus-within .process-icon {
    outline: none;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev,
.uh-process-swiper .swiper-button-next.uh-process-next {
    width: auto;
    min-width: 44px;
    min-height: 44px;
    height: auto;
    margin-top: 0;
    top: 44%;
    padding: 8px;
    border-radius: 0;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none;
    color: var(--uh-gold-deep) !important;
    transition: color 0.2s ease, opacity 0.2s ease;
    --swiper-navigation-size: 38px;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev::after,
.uh-process-swiper .swiper-button-next.uh-process-next::after {
    font-size: inherit;
    font-weight: 700;
    color: inherit !important;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev:hover,
.uh-process-swiper .swiper-button-next.uh-process-next:hover {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--uh-gold) !important;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev:focus-visible,
.uh-process-swiper .swiper-button-next.uh-process-next:focus-visible {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--uh-gold) !important;
    outline: 2px solid rgba(184, 146, 78, 0.45);
    outline-offset: 4px;
    border-radius: 4px;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev:focus:not(:focus-visible),
.uh-process-swiper .swiper-button-next.uh-process-next:focus:not(:focus-visible) {
    outline: none;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev.swiper-button-disabled,
.uh-process-swiper .swiper-button-next.uh-process-next.swiper-button-disabled {
    opacity: 0.28;
}

.uh-process-swiper .swiper-button-prev.uh-process-prev.swiper-button-disabled:hover,
.uh-process-swiper .swiper-button-next.uh-process-next.swiper-button-disabled:hover {
    color: var(--uh-gold-deep) !important;
}

.uh-process-prev {
    left: 4px;
}

.uh-process-next {
    right: 4px;
}

@media (min-width: 768px) {
    .uh-process-prev {
        left: 2px;
    }

    .uh-process-next {
        right: 2px;
    }
}

@media (max-width: 767.98px) {
    .uh-process-prev,
    .uh-process-next {
        display: none;
    }

    .uh-process-swiper .process-card {
        min-height: 310px;
        padding: 28px 22px 20px !important;
    }
}

.uh-process-pagination {
    bottom: 0 !important;
}

.uh-process-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--uh-ink-mute);
    opacity: 0.28;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.uh-process-pagination .swiper-pagination-bullet-active {
    background: var(--uh-gold-deep);
    opacity: 1;
    transform: scale(1.18);
}

/* Hero media caption — readable on bright video / embeds */
.hero-media-caption {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px 17px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(10, 22, 40, 0.96) 0%, rgba(18, 32, 52, 0.92) 100%);
    border: 1px solid rgba(184, 146, 78, 0.5);
    border-left-width: 3px;
    border-left-color: var(--uh-gold);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-caption-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--uh-cream);
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 4px 24px rgba(0, 0, 0, 0.65);
}

.hero-caption-text {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--uh-cream-2);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.85),
        0 2px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
    .hero-media-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px 14px 15px;
    }

    .hero-caption-text {
        font-size: 13px;
    }
}

/* Shared brand lockup */
.uh-site-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.uh-site-logo-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.uh-site-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.uh-site-logo--header {
    height: 68px;
    max-width: 68px;
}

.uh-site-logo--footer {
    height: 84px;
    max-width: 84px;
}

.uh-site-logo--mobile {
    height: 56px;
    max-width: 56px;
}

.main-header .navbar-brand.uh-site-logo-link {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
}

@media (max-width: 575.98px) {
    .uh-site-logo--header {
        height: 56px;
        max-width: 56px;
    }
}

.uh-brand-mark {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    line-height: 1;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
}

.uh-brand-title {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    line-height: 1.05;
    color: var(--uh-navy);
}

.uh-brand-subtitle {
    display: block;
    font-size: 9.5px;
    color: var(--uh-ink-mute);
    letter-spacing: 2.5px;
    line-height: 1.2;
}

/* Header nav hover and mobile toggler */
.main-header .sticky-header .main-menu .nav-link,
.main-header .offcanvas .nav-link {
    color: var(--uh-navy);
    transition: color 0.25s ease;
}

.main-header .sticky-header .main-menu .nav-link:hover,
.main-header .sticky-header .main-menu .nav-link:focus,
.main-header .offcanvas .nav-link:hover,
.main-header .offcanvas .nav-link:focus {
    color: var(--uh-gold) !important;
}

.main-header .sticky-header .navbar-toggler {
    background: transparent !important;
    border: 1px solid var(--uh-line) !important;
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
}

.main-header .sticky-header .navbar-toggler .fa-bars {
    color: var(--uh-navy);
}

.main-header .sticky-header .navbar-toggler:hover,
.main-header .sticky-header .navbar-toggler:focus {
    background: var(--uh-cream-2) !important;
    border-color: var(--uh-gold-soft) !important;
}

.main-header .sticky-header .navbar-toggler:hover .fa-bars,
.main-header .sticky-header .navbar-toggler:focus .fa-bars {
    color: var(--uh-gold) !important;
}

/* Process card consistency */
.process-wrapper .row > [class*="col-"] {
    display: flex;
}

.process-wrapper .process-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-wrapper .process-card .step-tag {
    margin-top: auto !important;
}

/* Service Cards */
.it-company-service-item {
    background: #fff !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.it-company-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 146, 78, 0.1), transparent);
    transition: left 0.6s ease;
}

.it-company-service-item:hover::before {
    left: 100%;
}

.it-company-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(10, 22, 40, 0.12);
}

/* Counters Section */
.counter-section-head {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.counter-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--uh-line-gold);
    background: rgba(184, 146, 78, 0.08);
    color: var(--uh-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.counter-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--uh-navy);
}

.counters-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(184, 146, 78, 0.09), transparent 45%),
        radial-gradient(circle at 88% 88%, rgba(10, 22, 40, 0.08), transparent 38%),
        var(--uh-cream);
}

.counter-ambient {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.5;
}

.counter-ambient-a {
    top: -70px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.25), rgba(184, 146, 78, 0));
    animation: counterFloatA 9s ease-in-out infinite;
}

.counter-ambient-b {
    bottom: -110px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(10, 22, 40, 0.2), rgba(10, 22, 40, 0));
    animation: counterFloatB 11s ease-in-out infinite;
}

.counters-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border: none;
    background: transparent;
}

.counter {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 42px 26px;
    text-align: center;
    border: 1px solid var(--uh-line);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9f5ed 100%);
    background-size: 140% 140%;
    background-position: 50% 50%;
    box-shadow: 0 18px 38px rgba(10, 22, 40, 0.08);
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, opacity 0.6s ease, border-color 0.35s ease, background-position 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.counter.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.counter::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(184, 146, 78, 0.45), rgba(255, 255, 255, 0.2), rgba(10, 22, 40, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.counter::after {
    content: '';
    position: absolute;
    inset: -120% 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 66%);
    transform: translateX(-135%) rotate(8deg);
    transition: transform 1s ease;
    pointer-events: none;
}

.counter.is-visible::after,
.counter:hover::after {
    transform: translateX(140%) rotate(8deg);
}

.counter:hover {
    border-color: rgba(184, 146, 78, 0.75);
    transform: translateY(-12px) scale(1.03);
    background-position: 100% 0%;
    box-shadow: 0 30px 62px rgba(10, 22, 40, 0.18), 0 0 0 1px rgba(184, 146, 78, 0.2);
}

.counter:hover::before {
    opacity: 0.9;
}

.counter-glow {
    position: absolute;
    top: -45%;
    left: -35%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.23) 0%, rgba(184, 146, 78, 0) 72%);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.55s ease, opacity 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

.counter.is-visible .counter-glow,
.counter:hover .counter-glow {
    opacity: 1;
    transform: scale(1.08);
}

.counter:hover .counter-glow {
    transform: scale(1.22);
}

.counter-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    color: var(--uh-navy);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.counter.is-visible .counter-num {
    background: linear-gradient(100deg, var(--uh-navy), var(--uh-gold-deep), var(--uh-navy));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: counterTextGlow 2.8s ease-out;
}

.counter-num {
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.counter:hover .counter-num {
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 8px 20px rgba(184, 146, 78, 0.22);
}

.counter-num em {
    font-style: normal;
    color: var(--uh-gold-deep);
    -webkit-text-fill-color: var(--uh-gold-deep);
}

.counter-label {
    font-size: 12px;
    color: var(--uh-ink-mute);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
    transition: color 0.28s ease, letter-spacing 0.28s ease, transform 0.28s ease;
}

.counter:hover .counter-label {
    color: var(--uh-gold-deep);
    letter-spacing: 2px;
    transform: translateY(2px);
}

@keyframes counterTextGlow {
    from {
        background-position: 200% center;
    }
    to {
        background-position: 0% center;
    }
}

@keyframes counterFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(16px, 12px, 0);
    }
}

@keyframes counterFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-14px, -10px, 0);
    }
}

/* Case Studies Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

/* Recent Work slider */
.uh-cases-shell {
    position: relative;
}

.uh-cases-shell::before,
.uh-cases-shell::after {
    content: '';
    position: absolute;
    top: 8%;
    width: 120px;
    height: 84%;
    pointer-events: none;
    z-index: 2;
}

.uh-cases-shell::before {
    left: -2px;
    background: linear-gradient(90deg, rgba(245, 241, 232, 0.95) 0%, rgba(245, 241, 232, 0) 100%);
}

.uh-cases-shell::after {
    right: -2px;
    background: linear-gradient(270deg, rgba(245, 241, 232, 0.95) 0%, rgba(245, 241, 232, 0) 100%);
}

.uh-cases-swiper {
    position: relative;
    overflow: hidden;
    padding: 14px 6px 56px;
}

.uh-cases-swiper .swiper-slide {
    display: flex;
    height: auto;
    box-sizing: border-box;
}

.uh-cases-swiper .case {
    width: 100%;
    margin: 0;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.uh-cases-swiper .swiper-slide-active .case,
.uh-cases-swiper .swiper-slide-next .case {
    box-shadow: 0 24px 50px rgba(10, 22, 40, 0.16);
}

.uh-cases-swiper .case::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(184, 146, 78, 0.12), transparent 52%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.uh-cases-swiper .case:hover::before {
    opacity: 1;
}

.uh-cases-prev,
.uh-cases-next {
    width: 44px;
    height: 44px;
    margin-top: 0;
    top: 40%;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--uh-line);
    color: var(--uh-gold-deep);
    box-shadow: 0 12px 26px rgba(10, 22, 40, 0.12);
}

.uh-cases-prev::after,
.uh-cases-next::after {
    font-size: 15px;
    font-weight: 700;
}

.uh-cases-pagination {
    bottom: 6px !important;
}

.uh-cases-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--uh-ink-mute);
    opacity: 0.35;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.uh-cases-pagination .swiper-pagination-bullet-active {
    background: var(--uh-gold-deep);
    opacity: 1;
    transform: scale(1.15);
}

.case {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--uh-line);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
}

.case::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--uh-gold);
    transition: width 0.4s ease;
}

.case:hover::after {
    width: 100%;
}

.case:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.15);
}

.case-img {
    width: 100%;
    height: 220px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Large / high-res cover photos: scale into the header without overflowing */
.case-img--cover {
    background-image: none !important;
}

.case-img__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

/* Always-on legibility: darkens the photo behind title + tag */
.case-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.94) 0%,
        rgba(10, 22, 40, 0.72) 28%,
        rgba(10, 22, 40, 0.28) 55%,
        transparent 78%
    );
}

.case-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.case:hover .case-img::before {
    opacity: 1;
}

.case-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(252, 250, 246, 0.98);
    color: var(--uh-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.28);
    z-index: 3;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case:hover .case-tag {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.22);
}

.case-img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.25s ease;
}

.case:hover .case-img-label {
    transform: translateY(-2px);
}

.case-img-label h4 {
    font-family: 'Fraunces', serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #fdf8f0;
    text-shadow:
        0 1px 0 rgba(10, 22, 40, 0.75),
        0 2px 16px rgba(10, 22, 40, 0.65),
        0 0 1px rgba(10, 22, 40, 0.9);
}

.case-img-label p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: rgba(252, 248, 240, 0.98);
    text-shadow:
        0 1px 0 rgba(10, 22, 40, 0.7),
        0 2px 12px rgba(10, 22, 40, 0.55);
}

.case-body {
    padding: 24px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--uh-line);
}

.case-metric strong {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--uh-navy);
    display: block;
    line-height: 1;
}

.case-metric span {
    font-size: 11px;
    color: var(--uh-ink-mute);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    display: block;
    font-weight: 600;
}

.case-quote {
    font-size: 15px;
    color: var(--uh-ink-2);
    line-height: 1.6;
    font-style: italic;
}

.case-author {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-author .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--uh-cream-3);
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    color: var(--uh-navy);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.case:hover .case-author .av {
    transform: scale(1.1);
}

/* Bilingual Section */
.bi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.bi-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid var(--uh-line);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.bi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(184, 146, 78, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bi-card:hover::before {
    opacity: 1;
}

.bi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
}

.bi-card-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--uh-gold-deep);
    margin-bottom: 20px;
    display: block;
}

.bi-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--uh-navy);
    margin-bottom: 18px;
}

.bi-card p {
    color: var(--uh-ink-2);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.bi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bi-tag {
    background: var(--uh-cream-2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--uh-ink-2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.bi-tag:hover {
    background: var(--uh-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Founder Section */
.uh-founder {
    background: var(--uh-navy);
    color: #f5f1e8;
    position: relative;
    overflow: hidden;
}

.uh-founder::before {
    content: '';
    position: absolute;
    inset: -20% -30%;
    background: radial-gradient(circle at 15% 20%, rgba(184, 146, 78, 0.16), transparent 45%);
    pointer-events: none;
}

.uh-founder-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.uh-founder-photo {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: 4 / 5;
    min-height: 320px;
    border-radius: 20px;
    background: var(--uh-navy-2);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(184, 146, 78, 0.26);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(10, 22, 40, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.uh-founder-photo::after {
    content: '';
    position: absolute;
    inset: 10px;
    z-index: 2;
    pointer-events: none;
    border-radius: 14px;
    border: 1px solid rgba(184, 146, 78, 0.42);
    background: linear-gradient(180deg, rgba(255, 247, 224, 0.04), rgba(184, 146, 78, 0.06));
    box-shadow:
        inset 0 0 0 1px rgba(255, 239, 193, 0.18),
        inset 0 1px 0 rgba(255, 248, 222, 0.2);
}

.uh-founder-photo-img {
    position: absolute;
    inset: -1px;
    z-index: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.uh-founder-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.06) 0%,
        transparent 32%,
        transparent 58%,
        rgba(10, 22, 40, 0.55) 100%
    );
    border-radius: inherit;
}

.uh-founder-photo-tag {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 245, 214, 0.98);
    text-shadow: 0 1px 3px rgba(10, 22, 40, 0.9);
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.52));
    border: 1px solid rgba(184, 146, 78, 0.28);
}

.uh-founder-quote {
    border-left: 3px solid var(--uh-gold);
    padding-left: 16px;
    margin: 16px 0 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.65;
    font-style: italic;
}

.uh-founder-copy {
    color: rgba(245, 241, 232, 0.75);
    font-size: 15px;
    line-height: 1.75;
}

.uh-founder-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 241, 232, 0.12);
}

.uh-founder-cred strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1;
    color: var(--uh-gold-2);
}

.uh-founder-cred span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.6);
}

/* Process Section Cards */
.process-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(10, 22, 40, 0.12);
    border-color: rgba(184, 146, 78, 0.34);
}

.process-step-number {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(184, 146, 78, 0.14);
    pointer-events: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-icon {
    width: 76px;
    height: 76px;
    margin-inline: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #f0e6d0 0%, #e2d2ac 100%);
    box-shadow:
        0 8px 18px rgba(10, 22, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.process-card:hover .process-icon {
    transform: translateY(-1px);
    background: linear-gradient(160deg, #f4ebd7 0%, #e5d6b1 100%);
    box-shadow: 0 10px 22px rgba(10, 22, 40, 0.1);
}

.process-icon i {
    font-size: 30px;
    transition: all 0.3s ease;
    color: var(--uh-gold-deep) !important;
}

.process-card:hover .process-icon i {
    color: var(--uh-gold-deep) !important;
    transform: none;
}

.process-title {
    margin: 0 0 14px;
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.1vw, 32px);
    line-height: 1.2;
    color: var(--uh-navy);
    letter-spacing: -0.02em;
}

.process-copy {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--uh-ink-2);
}

.step-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 34px;
    min-width: 170px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(10, 22, 40, 0.14);
    background: #f8f6f0;
    color: #6f5526;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    box-shadow: none;
}

.process-card:hover .process-step-number {
    transform: translate(-1px, -1px) scale(1.03);
    color: rgba(184, 146, 78, 0.2);
}

@media (max-width: 991.98px) {
    .process-title {
        font-size: 30px;
    }

    .process-copy {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .process-title {
        font-size: 28px;
    }

    .process-copy {
        font-size: 16px;
    }
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.packages .package {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--uh-line);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.packages .package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(184, 146, 78, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.packages .package:hover::before {
    opacity: 1;
}

.packages .package:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(10, 22, 40, 0.12);
}

.package-popular {
    background: var(--uh-navy) !important;
    color: #fff;
    transform: scale(1.02);
    position: relative;
    overflow: hidden;
}

.package-popular::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.1), transparent);
    animation: pulse 3s ease infinite;
}

.package-popular h3,
.package-popular .package-desc,
.package-popular ul li {
    color: #fff !important;
    position: relative;
    z-index: 1;
}

.package-popular .package-tier {
    color: var(--uh-gold-2) !important;
}

.package-tier {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--uh-gold-deep);
    margin-bottom: 10px;
}

.package h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.package-desc {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--uh-line);
}

.package ul li {
    margin-bottom: 12px;
}

.package ul li i {
    color: var(--uh-gold);
    margin-right: 10px;
}

.popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--uh-gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 2;
    animation: glow 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 146, 78, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(184, 146, 78, 0.8);
    }
}

/* FAQ Section */
.faq-grid {
    max-width: 860px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--uh-line);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:first-child {
    border-top: 1px solid var(--uh-line);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 28px 8px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--uh-navy);
    transition: all 0.3s ease;
}

.faq-q:hover {
    color: var(--uh-gold-deep);
    padding-left: 12px;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--uh-line);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--uh-gold);
    border-color: var(--uh-gold);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 8px;
}

.faq-item.open .faq-a {
    max-height: min(90vh, 960px);
}

.faq-a-inner {
    padding: 0 0 28px;
    color: var(--uh-ink-2);
    font-size: 16px;
    line-height: 1.7;
}

/* Partner Section */
.partner-icon i {
    font-size: 28px;
    color: var(--uh-navy);
    transition: all 0.3s ease;
}

.partner {
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner:hover {
    transform: translateY(-5px);
    border-color: var(--uh-gold) !important;
    box-shadow: 0 10px 25px rgba(10, 22, 40, 0.1);
}

.partner:hover .partner-icon i {
    transform: scale(1.1);
}

/* Default partner strip (non–brand-specific cards): gold icon on hover */
.partner:not([class*="partner-brand--"]):hover .partner-icon i {
    color: var(--uh-gold);
}

/* Play Circle Animation */
.play-circle {
    transition: all 0.3s ease;
    animation: ripple 2s ease infinite;
}

.play-circle:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 241, 232, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 241, 232, 0);
    }

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

/* CTA Button Effects */
.final-ctas .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.final-ctas .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.final-ctas .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Float Animation */
.hero-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--uh-navy) 0%, var(--uh-gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Remove Default Blue Styles */
.process-card a,
.process-card a:hover,
.process-card a:focus,
.process-card button,
.process-card button:hover,
.fa,
.fas,
.far,
.fab {
    color: inherit;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 880px) {

    .cases-grid,
    .packages,
    .bi-grid,
    .counters-grid {
        grid-template-columns: 1fr;
    }

    .uh-founder-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .uh-founder-photo {
        max-width: min(420px, 100%);
        margin-inline: auto;
    }

    .uh-founder-credentials {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .uh-cases-shell::before,
    .uh-cases-shell::after {
        display: none;
    }

    .uh-cases-prev,
    .uh-cases-next {
        display: none;
    }

    .counter {
        padding: 34px 20px;
    }

    .counter-ambient {
        opacity: 0.35;
    }
}

@media (max-width: 680px) {
    .package-popular {
        transform: none;
    }
}

@media (min-width: 992px) {
    .ptb-120 {
        padding: 120px 0;
    }
    
    .process-connecting-line {
        display: block !important;
    }
}



    .faq-q {
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .faq-q:hover {
        color: var(--uh-gold-deep);
    }

/* Footer Effects */
.uh-footer-fx {
    overflow: hidden;
}

.uh-footer-fx .footer-ambient {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.uh-footer-fx .footer-ambient-left {
    width: 240px;
    height: 240px;
    left: -100px;
    top: 26%;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.25) 0%, rgba(184, 146, 78, 0) 72%);
    animation: footerFloatOne 10s ease-in-out infinite;
}

.uh-footer-fx .footer-ambient-right {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: 6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
    animation: footerFloatTwo 12s ease-in-out infinite;
}

.uh-footer-fx .rm-footer-top,
.uh-footer-fx .rm-footer-bottom {
    position: relative;
    z-index: 1;
}

.uh-footer-fx .footer-social-list a {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 146, 78, 0.35);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.uh-footer-fx .footer-social-list a::after {
    content: '';
    position: absolute;
    inset: -160% 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(-125%) rotate(8deg);
    transition: transform 0.9s ease;
    pointer-events: none;
}

.uh-footer-fx .footer-social-list a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--uh-gold) 0%, var(--uh-gold-2) 100%) !important;
    border-color: var(--uh-gold) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(184, 146, 78, 0.35);
}

.uh-footer-fx .footer-social-list a:hover::after {
    transform: translateX(130%) rotate(8deg);
}

.uh-footer-fx .footer-social-list a i {
    transition: transform 0.25s ease, color 0.25s ease;
}

.uh-footer-fx .footer-social-list a:hover i {
    color: #fff !important;
    transform: scale(1.1);
}

.uh-footer-fx .footer-nav-list a {
    position: relative;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
}

.uh-footer-fx .footer-nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--uh-gold), var(--uh-gold-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.uh-footer-fx .footer-nav-list a:hover {
    color: var(--uh-gold-2) !important;
    transform: translateX(3px);
}

.uh-footer-fx .footer-nav-list a:hover::after {
    transform: scaleX(1);
}

@keyframes footerFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(16px, 10px, 0); }
}

@keyframes footerFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-14px, -12px, 0); }
}
    
    .faq-q.open .faq-icon i {
        transform: rotate(45deg);
    }
    
    .faq-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }
    
    .faq-icon i {
        transition: transform 0.3s ease;
    }

/* ============================================================
   HERO TEXT WORD-BY-WORD ANIMATION
   ============================================================ */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) skewY(4deg);
    animation: heroWordUp 0.75s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    margin-right: 0.22em;
}

@keyframes heroWordUp {
    0%   { opacity: 0; transform: translateY(50px) skewY(4deg); }
    100% { opacity: 1; transform: translateY(0)    skewY(0deg); }
}

.hero-sub-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    animation: heroSubWord 0.5s ease forwards;
    margin-right: 0.22em;
}

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

.hero-cta-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSubWord 0.5s ease forwards;
}

/* ============================================================
   BRANDS / COMPANIES AUTO-SCROLL SLIDER
   ============================================================ */
.brands-slider-section {
    background: var(--uh-navy);
    padding: 36px 0;
    overflow: hidden;
    border-top:    1px solid rgba(184, 146, 78, 0.15);
    border-bottom: 1px solid rgba(184, 146, 78, 0.15);
}

.brands-slider-label {
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.4);
    margin-bottom: 24px;
}

.brands-slider-track-wrap {
    overflow: hidden;
    position: relative;
}

.brands-slider-track-wrap::before,
.brands-slider-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-slider-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--uh-navy), transparent);
}

.brands-slider-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--uh-navy), transparent);
}

.brands-slider-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: brandsSlide 28s linear infinite;
}

.brands-slider-track:hover {
    animation-play-state: paused;
}

@keyframes brandsSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item-slide {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.45;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.brand-item-slide:hover {
    opacity: 0.9;
}

.brand-item-slide i {
    font-size: 20px;
}

/* ============================================================
   BEAUTIFUL FAQ — FULL-PAGE VERSION (faq.blade.php)
   ============================================================ */
.faq-page-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--uh-line);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-page-item:hover {
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.09);
    transform: translateY(-2px);
}

.faq-page-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--uh-navy);
    transition: color 0.2s ease;
    gap: 20px;
}

.faq-page-btn:hover {
    color: var(--uh-gold-deep);
}

.faq-page-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--uh-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uh-gold);
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-page-item.open .faq-page-icon {
    background: var(--uh-navy);
    border-color: var(--uh-navy);
    color: #fff;
    transform: rotate(45deg);
}

.faq-page-item.open {
    border-left: 4px solid var(--uh-gold);
}

.faq-page-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 0;
    background: #fff;
}

.faq-page-item.open .faq-page-body {
    max-height: 320px;
    border-top: 1px solid var(--uh-line);
}

.faq-page-answer {
    padding: 20px 28px 28px;
    color: var(--uh-ink-2);
    font-size: 16px;
    line-height: 1.75;
}

/* FAQ page category badge */
.faq-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--uh-cream-2);
    color: var(--uh-gold-deep);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

/* FAQ page CTA box */
.faq-cta-strip {
    background: var(--uh-navy);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.faq-cta-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(184, 146, 78, 0.08);
    pointer-events: none;
}

.faq-cta-strip::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(184, 146, 78, 0.05);
    pointer-events: none;
}

/* Floating WhatsApp button override */
.float-wa {
    background: var(--uh-navy) !important;
    border: 2px solid var(--uh-gold) !important;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.3) !important;
    color: var(--uh-cream) !important;
    transition: all 0.3s ease !important;
}

.float-wa:hover {
    background: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(184, 146, 78, 0.4) !important;
}

/* ============================================================
   HERO CINEMATIC BACKGROUND — animated gradient fallback
   ============================================================ */
.hero-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 65% 30%, rgba(184,146,78,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(31,51,88,0.6) 0%, transparent 50%),
        linear-gradient(150deg, #0a1628 0%, #142640 40%, #1a1a2e 70%, #0d1f3c 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    animation: heroBgShift 14s ease-in-out infinite alternate;
}

.hero-cinematic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(184,146,78,0.14) 0%, transparent 38%),
        radial-gradient(circle at 85% 70%, rgba(10,22,40,0.8) 0%, transparent 42%);
    animation: heroBgShift2 18s ease-in-out infinite alternate;
}

.hero-cinematic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

@keyframes heroBgShift {
    0%   { background-position: 0% 50%, 100% 0%, 0 0; }
    100% { background-position: 100% 50%, 0% 100%, 0 0; }
}

@keyframes heroBgShift2 {
    0%   { opacity: 0.6; }
    100% { opacity: 1; }
}

/* ============================================================
   FOUNDER / CEO — Editorial quote section (no photo)
   ============================================================ */
.uh-founder-editorial {
    background: var(--uh-navy);
    padding: 100px 0 96px;
    position: relative;
    overflow: hidden;
}

/* Background ambient orbs */
.uh-founder-editorial::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,146,78,0.07) 0%, transparent 70%);
    pointer-events: none;
    animation: founderGlow 9s ease-in-out infinite;
}

.uh-founder-editorial::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31,51,88,0.5) 0%, transparent 70%);
    pointer-events: none;
}

/* Eyebrow */
.founder-ed-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--uh-gold-2);
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.founder-ed-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--uh-gold-2);
    flex-shrink: 0;
}

/* Grid: quote left | info right */
.founder-ed-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left — quote column */
.founder-ed-quote-col {
    position: relative;
}

.founder-ed-quotemark {
    font-family: 'Fraunces', serif;
    font-size: clamp(100px, 12vw, 160px);
    line-height: 0.7;
    color: rgba(184, 146, 78, 0.18);
    margin-bottom: 24px;
    display: block;
    letter-spacing: -4px;
}

.founder-ed-blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: rgba(245, 241, 232, 0.92);
    border: none;
    padding: 0;
    margin: 0 0 36px 0;
    position: relative;
}

.founder-ed-blockquote::after {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: clamp(80px, 9vw, 120px);
    line-height: 0.5;
    color: rgba(184, 146, 78, 0.16);
    position: absolute;
    bottom: -20px;
    right: 0;
}

/* Attribution */
.founder-ed-attr {
    padding-top: 28px;
    border-top: 1px solid rgba(245,241,232,0.1);
}

.founder-ed-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--uh-cream);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.founder-ed-title-role {
    font-size: 13px;
    font-weight: 500;
    color: rgba(245,241,232,0.45);
    letter-spacing: 0.5px;
}

/* Right — info column */
.founder-ed-info-col {
    padding-top: 24px;
    border-top: 1px solid rgba(184,146,78,0.2);
}

.founder-ed-bio {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245,241,232,0.65);
    margin-bottom: 20px;
}

/* Stats grid */
.founder-ed-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(245,241,232,0.08);
}

.founder-ed-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-ed-stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1;
    color: var(--uh-gold-2);
    letter-spacing: -1px;
}

.founder-ed-stat-num em {
    font-style: normal;
    color: rgba(184,146,78,0.6);
    font-size: 0.7em;
}

.founder-ed-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(245,241,232,0.38);
}

/* Responsive */
@media (max-width: 991.98px) {
    .founder-ed-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder-ed-quotemark {
        font-size: 80px;
    }

    .founder-ed-blockquote {
        font-size: 22px;
    }

    .uh-founder-editorial {
        padding: 72px 0;
    }
}

@media (max-width: 575.98px) {
    .founder-ed-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .founder-ed-quotemark {
        font-size: 64px;
    }
}

/* ============================================================
   MOBILE OFFCANVAS NAV — Full redesign
   ============================================================ */
.uh-mobile-nav {
    background: var(--uh-navy) !important;
    max-width: 360px !important;
    width: 90vw !important;
    border-left: 1px solid rgba(184, 146, 78, 0.2) !important;
    display: flex;
    flex-direction: column;
}

/* Head */
.uh-mobile-nav__head {
    padding: 24px 28px 22px;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
    flex-shrink: 0;
}

.uh-mobile-nav__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--uh-gold);
    color: var(--uh-navy);
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.uh-mobile-nav__brand {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--uh-cream);
    line-height: 1.1;
}

.uh-mobile-nav__sub {
    display: block;
    font-size: 9.5px;
    letter-spacing: 2px;
    color: rgba(245, 241, 232, 0.4);
    margin-top: 2px;
}

.uh-mobile-nav__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 241, 232, 0.07);
    border: 1px solid rgba(245, 241, 232, 0.12);
    color: rgba(245, 241, 232, 0.7);
    display: grid;
    place-items: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.uh-mobile-nav__close:hover {
    background: rgba(184, 146, 78, 0.15);
    color: var(--uh-gold-2);
}

/* Body */
.uh-mobile-nav__body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Nav list */
.uh-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex: 1;
}

.uh-mobile-nav__item {
    opacity: 0;
    transform: translateX(20px);
    border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}

.uh-mobile-nav.show .uh-mobile-nav__item {
    animation: navItemSlideIn 0.45s var(--ease-out-expo, cubic-bezier(0.16,1,0.3,1)) both;
}

.uh-mobile-nav.show .uh-mobile-nav__item:nth-child(1) { animation-delay: 0.07s; }
.uh-mobile-nav.show .uh-mobile-nav__item:nth-child(2) { animation-delay: 0.13s; }
.uh-mobile-nav.show .uh-mobile-nav__item:nth-child(3) { animation-delay: 0.19s; }
.uh-mobile-nav.show .uh-mobile-nav__item:nth-child(4) { animation-delay: 0.25s; }
.uh-mobile-nav.show .uh-mobile-nav__item:nth-child(5) { animation-delay: 0.31s; }

.uh-mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    text-decoration: none;
    transition: background 0.2s ease;
    position: relative;
}

.uh-mobile-nav__link:hover {
    background: rgba(184, 146, 78, 0.06);
}

.uh-mobile-nav__link.is-active {
    background: rgba(184, 146, 78, 0.08);
}

.uh-mobile-nav__link.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, var(--uh-gold), var(--uh-gold-2));
    border-radius: 0 2px 2px 0;
}

.uh-mobile-nav__num {
    font-family: 'Fraunces', serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(184, 146, 78, 0.55);
    letter-spacing: 1.5px;
    min-width: 22px;
    flex-shrink: 0;
}

.uh-mobile-nav__link.is-active .uh-mobile-nav__num {
    color: var(--uh-gold-2);
}

.uh-mobile-nav__label {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    color: rgba(245, 241, 232, 0.82);
    flex: 1;
    line-height: 1;
    transition: color 0.2s ease;
}

.uh-mobile-nav__link:hover .uh-mobile-nav__label {
    color: var(--uh-gold-2);
}

.uh-mobile-nav__link.is-active .uh-mobile-nav__label {
    color: var(--uh-gold-2);
    font-weight: 500;
}

.uh-mobile-nav__arrow {
    font-size: 13px;
    color: rgba(245, 241, 232, 0.2);
    transition: transform 0.25s ease, color 0.25s ease;
}

.uh-mobile-nav__link:hover .uh-mobile-nav__arrow {
    transform: translateX(4px);
    color: var(--uh-gold-2);
}

/* CTA block */
.uh-mobile-nav__cta {
    padding: 24px 28px 36px;
    border-top: 1px solid rgba(245, 241, 232, 0.08);
    flex-shrink: 0;
}

.uh-mobile-nav__footer {
    margin-top: 20px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.22);
}

/* ============================================================
   DARK-HERO PAGES — Nav adapts to dark background
   ============================================================ */

/* Transparent state over dark hero: semi-dark glass */
.has-dark-hero .sticky-header:not(.nav-scrolled) {
    background: rgba(10, 22, 40, 0.55) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom-color: rgba(184, 146, 78, 0.18) !important;
}

/* Logo mark: swap navy bg → gold on dark pages */
.has-dark-hero .sticky-header:not(.nav-scrolled) .logo-mark.bg-primary {
    background: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
}

/* Brand name & subtitle: cream on dark */
.has-dark-hero .sticky-header:not(.nav-scrolled) .uh-brand-title {
    color: var(--uh-cream) !important;
}
.has-dark-hero .sticky-header:not(.nav-scrolled) .uh-brand-subtitle {
    color: rgba(245, 241, 232, 0.45) !important;
}

/* Nav links: cream on dark */
.has-dark-hero .sticky-header:not(.nav-scrolled) .main-menu .nav-link {
    color: rgba(245, 241, 232, 0.82) !important;
}
.has-dark-hero .sticky-header:not(.nav-scrolled) .main-menu .nav-link:hover {
    color: var(--uh-gold-2) !important;
}
.has-dark-hero .sticky-header:not(.nav-scrolled) .main-menu .nav-link.nav-active {
    color: var(--uh-gold-2) !important;
    font-weight: 700 !important;
}

/* Nav underline: gold-2 on dark */
.has-dark-hero .sticky-header:not(.nav-scrolled) .main-menu .nav-link::after {
    background: linear-gradient(90deg, var(--uh-gold-2), var(--uh-gold));
}

/* CTA button: gold on dark */
.has-dark-hero .sticky-header:not(.nav-scrolled) .action-btns .btn-primary {
    background: var(--uh-gold) !important;
    border-color: var(--uh-gold) !important;
    color: var(--uh-navy) !important;
    box-shadow: 0 4px 18px rgba(184, 146, 78, 0.35) !important;
}
.has-dark-hero .sticky-header:not(.nav-scrolled) .action-btns .btn-primary:hover {
    background: var(--uh-gold-2) !important;
    border-color: var(--uh-gold-2) !important;
}

/* Hamburger toggler: cream on dark */
.has-dark-hero .sticky-header:not(.nav-scrolled) .navbar-toggler {
    border-color: rgba(245, 241, 232, 0.25) !important;
    background: rgba(245, 241, 232, 0.08) !important;
}
.has-dark-hero .sticky-header:not(.nav-scrolled) .navbar-toggler .fa-bars {
    color: var(--uh-cream) !important;
}

/* Scrolled state: revert to standard cream frosted glass (already handled by nav-scrolled) */
.has-dark-hero .sticky-header.nav-scrolled .logo-mark.bg-primary {
    background: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
}
.has-dark-hero .sticky-header.nav-scrolled .uh-brand-title {
    color: var(--uh-navy) !important;
}
.has-dark-hero .sticky-header.nav-scrolled .main-menu .nav-link {
    color: var(--uh-navy) !important;
}
.has-dark-hero .sticky-header.nav-scrolled .action-btns .btn-primary {
    background: var(--uh-navy) !important;
    border-color: var(--uh-navy) !important;
    color: var(--uh-cream) !important;
}

/* ============================================================
   SERVICE CARDS — Refined icon + hover design
   ============================================================ */

/* Override the bare icon with a proper icon ring */
.it-company-service-item {
    border: 1px solid var(--uh-line) !important;
    box-shadow: 0 4px 18px rgba(10, 22, 40, 0.05) !important;
}

.service-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ede2c8 0%, #d9c290 60%, #c9a961 100%);
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 22px rgba(184, 146, 78, 0.22),
                inset 0 1px 0 rgba(255,255,255,0.55);
    transition: transform 0.35s var(--ease-spring, cubic-bezier(0.34,1.56,0.64,1)),
                box-shadow 0.35s ease;
}

.it-company-service-item:hover .service-icon-ring {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 32px rgba(184, 146, 78, 0.32),
                inset 0 1px 0 rgba(255,255,255,0.5);
}

.service-icon-ring i {
    font-size: 28px;
    color: var(--uh-navy) !important;
    transition: transform 0.3s ease;
}

.it-company-service-item:hover .service-icon-ring i {
    transform: scale(1.08);
    color: var(--uh-gold-deep) !important;
}

/* Service card hover: lift + gold border (::after accent already set in polish layer) */

/* ============================================================
   CONTACT FORM ELEMENTS
   ============================================================ */
.uh-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--uh-navy);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.uh-form-input {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: 12px;
    background: var(--uh-cream);
    font-size: 15px;
    color: var(--uh-navy);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.uh-form-input:focus {
    border-color: var(--uh-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(184, 146, 78, 0.12);
}

.uh-form-input::placeholder {
    color: rgba(10, 22, 40, 0.3);
}

textarea.uh-form-input {
    resize: vertical;
    min-height: 120px;
}

select.uh-form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1628' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ============================================================
   INNER PAGE HERO BANNER (work, services, packages, etc.)
   ============================================================ */
.uh-page-hero {
    background: var(--uh-navy);
    padding: 148px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.uh-page-hero > .container {
    width: 100%;
}

.uh-page-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.uh-page-hero__orb--a {
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(184,146,78,0.09) 0%, transparent 70%);
    animation: heroOrbA 10s ease-in-out infinite;
}

.uh-page-hero__orb--b {
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(184,146,78,0.05) 0%, transparent 70%);
    animation: heroOrbB 13s ease-in-out infinite;
}

@keyframes heroOrbA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-20px, 15px) scale(1.06); }
}

@keyframes heroOrbB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(14px, -10px) scale(1.09); }
}

/* ============================================================
   SERVICE DETAIL CARDS
   ============================================================ */
.uh-service-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--uh-line);
    height: 100%;
    transition: transform 0.35s var(--ease-out-expo, cubic-bezier(0.16,1,0.3,1)),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.uh-service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(184,146,78,0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.uh-service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(10,22,40,0.1);
    border-color: rgba(184,146,78,0.3);
}

.uh-service-detail-card:hover::before {
    opacity: 1;
}

.uh-service-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ede2c8 0%, #d9c290 100%);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.uh-service-detail-card:hover .uh-service-detail-icon {
    transform: scale(1.06);
}

.uh-service-detail-icon i {
    font-size: 22px;
    color: var(--uh-navy) !important;
}

.uh-service-detail-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--uh-navy);
    margin-bottom: 16px;
}

.uh-service-detail-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14.5px;
    color: var(--uh-ink-2);
    margin-bottom: 10px;
    line-height: 1.5;
}

.uh-service-detail-list li i {
    font-size: 11px;
    color: var(--uh-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--uh-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader-monogram {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--uh-navy);
    color: var(--uh-cream);
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.22);
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.22); }
    50%       { transform: scale(1.05); box-shadow: 0 22px 56px rgba(10, 22, 40, 0.3); }
}

.preloader-track {
    width: 120px;
    height: 2px;
    background: rgba(10, 22, 40, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--uh-gold-deep), var(--uh-gold), var(--uh-gold-2));
    border-radius: 2px;
    animation: loadingProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadingProgress {
    0%   { width: 0%; }
    60%  { width: 75%; }
    85%  { width: 88%; }
    100% { width: 100%; }
}

/* ============================================================
   POLISH LAYER — Emil Kowalski Animation Principles Applied
   ============================================================ */

/* 1. Physics-based easing custom properties */
:root {
    --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:    cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* 2. Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* 3. Scroll progress bar */
.uh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--uh-gold-deep) 0%, var(--uh-gold) 50%, var(--uh-gold-2) 100%);
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* 4. Nav frosted glass on scroll */
.sticky-header {
    transition: background 0.4s var(--ease-in-out),
                box-shadow 0.4s ease,
                border-bottom-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.sticky-header.nav-scrolled {
    background: rgba(245, 241, 232, 0.92) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06), 0 8px 32px rgba(10, 22, 40, 0.06);
    border-bottom-color: rgba(184, 146, 78, 0.14);
}

/* 5. Nav link animated underline */
.main-menu .nav-link {
    position: relative;
    padding-bottom: 4px !important;
}

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--uh-gold-deep), var(--uh-gold));
    border-radius: 2px;
    transition: width 0.35s var(--ease-out-expo);
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.nav-active::after {
    width: 100%;
}

.main-menu .nav-link.nav-active {
    color: var(--uh-gold-deep) !important;
    font-weight: 600 !important;
}

/* 6. Mobile nav staggered entrance */
.offcanvas .nav li {
    opacity: 0;
    transform: translateX(18px);
}

.offcanvas.show .nav li {
    animation: navItemSlideIn 0.45s var(--ease-out-expo) both;
}

.offcanvas.show .nav li:nth-child(1) { animation-delay: 0.08s; }
.offcanvas.show .nav li:nth-child(2) { animation-delay: 0.14s; }
.offcanvas.show .nav li:nth-child(3) { animation-delay: 0.20s; }
.offcanvas.show .nav li:nth-child(4) { animation-delay: 0.26s; }
.offcanvas.show .nav li:nth-child(5) { animation-delay: 0.32s; }
.offcanvas.show .nav li:nth-child(6) { animation-delay: 0.38s; }
.offcanvas.show .nav li:nth-child(7) { animation-delay: 0.44s; }

@keyframes navItemSlideIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* 7. Button spring physics */
.btn {
    transition: transform 0.18s var(--ease-spring),
                box-shadow 0.18s ease,
                background 0.22s ease,
                color 0.22s ease,
                border-color 0.22s ease !important;
}

.btn:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: none !important;
}

/* 8. Service card top-border accent reveal (on hover) */
/* NOTE: uses ::after — the ::before sweep from original CSS is preserved */
.it-company-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--uh-gold) 30%, var(--uh-gold-2) 70%, transparent);
    border-radius: 0 0 4px 4px;
    transition: transform 0.45s var(--ease-out-expo, cubic-bezier(0.16,1,0.3,1));
    pointer-events: none;
    z-index: 3;
}

.it-company-service-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 9. Approach point hover slide */
.approach-point {
    border-radius: 12px;
    padding: 12px 16px !important;
    margin-left: -16px;
    transition: transform 0.3s var(--ease-out-expo), background 0.3s ease;
}

.approach-point:hover {
    transform: translateX(6px);
    background: rgba(184, 146, 78, 0.04);
}

.approach-point:hover .approach-num {
    color: var(--uh-gold) !important;
}

.approach-num {
    transition: color 0.25s ease;
}

/* 10. Back-to-top button */
.uh-back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--uh-navy);
    border: 1.5px solid rgba(184, 146, 78, 0.5);
    color: var(--uh-cream);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 97;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.35s ease,
                transform 0.35s var(--ease-spring),
                background 0.25s ease,
                box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.22);
    text-decoration: none;
    font-size: 16px;
}

.uh-back-to-top.btt-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.uh-back-to-top:hover {
    background: var(--uh-gold);
    border-color: var(--uh-gold);
    color: var(--uh-navy);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(184, 146, 78, 0.38);
}

.uh-back-to-top:active {
    transform: translateY(0) scale(0.97) !important;
}

@media (max-width: 767.98px) {
    .uh-back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* 11. FAQ left accent bar on open */
.faq-item {
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--uh-gold), var(--uh-gold-2));
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s var(--ease-out-expo);
    pointer-events: none;
}

.faq-item.open::before {
    transform: scaleY(1);
}

/* 12. Hero eyebrow line */
.hero-eyebrow span:first-child {
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* 13. CTA section ambient glow */
#contact {
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.07) 0%, transparent 70%);
    animation: ctaGlowA 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 51, 88, 0.28) 0%, transparent 70%);
    animation: ctaGlowB 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 1;
}

@keyframes ctaGlowA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(24px, 18px) scale(1.08); }
}

@keyframes ctaGlowB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-18px, -14px) scale(1.1); }
}

/* 14. Founder section ambient pulse */
.uh-founder::after {
    content: '';
    position: absolute;
    right: -20%;
    bottom: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 78, 0.05) 0%, transparent 70%);
    animation: founderGlow 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes founderGlow {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

/* 15. Section eyebrow line animation */
.section-eyebrow span,
.hero-eyebrow span {
    display: inline-block;
}

/* 16. Case card metric number glow on hover */
.case:hover .case-metric strong {
    color: var(--uh-gold-deep);
    transition: color 0.3s ease;
}

/* 17. Package card inner glow on hover */
.packages .package:not(.package-popular):hover {
    border-color: rgba(184, 146, 78, 0.4);
}

/* 18. Scroll-reveal universal utility (supplement AOS) */
.uh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out-expo),
                transform 0.65s var(--ease-out-expo);
}

.uh-reveal.uh-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 19. prefers-reduced-motion — full respect */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

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

    .hero-word,
    .hero-sub-word,
    .hero-cta-reveal {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .counter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .brands-slider-track {
        animation: none !important;
    }

    .uh-back-to-top {
        transition: none !important;
    }

    .uh-scroll-progress {
        display: none;
    }
}
