/* ============================================================
   Homepage Specific Styles — ARVISTA.pk  (PART 35)
   ============================================================ */

/* ─── Groupe Font (must be at top for proper parsing) ────── */
/* Font loaded via groupe-font.css with base64 embed for guaranteed delivery */


/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.4s ease,
        backdrop-filter 0.4s ease,
        -webkit-backdrop-filter 0.4s ease,
        border-color 0.4s ease,
        padding 0.4s ease,
        box-shadow 0.4s ease;
    will-change: background-color, backdrop-filter;
}

.navbar.scrolled {
    padding: 14px 0;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary-accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.mobile-auth-link {
    display: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s ease;
    font-size: 0.92rem;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions .btn-primary {
    padding-inline: 1.25rem;
}

/* Further reduced width */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.06);
}


/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    min-height: clamp(650px, 100vh, 950px);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 90px;
    background:
        radial-gradient(ellipse 80% 60% at 75% 50%, rgba(0, 229, 255, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 15% 80%, rgba(0, 160, 200, 0.04) 0%, transparent 60%),
        var(--bg-dark);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-accent);
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 1.75rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.4;
        transform: scale(0.65);
    }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-title .highlight {
    color: var(--primary-accent);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    white-space: nowrap;
}

.trust-item svg {
    color: var(--primary-accent);
    flex-shrink: 0;
}

/* ─── Hero Visual ────────────────────────────────────────── */
.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateX(-15px);
    /* Balance widget on the right */
}

.hero-glass-panel {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.02);
    border: 1px solid rgba(0, 229, 255, 0.07);
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.05), inset 0 0 40px rgba(0, 229, 255, 0.02);
    animation: float-panel 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes float-panel {

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

    33% {
        transform: translateY(-12px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

.hero-cube {
    width: 90px;
    height: 90px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 22s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.cube-face {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.35);
    box-shadow: inset 0 0 12px rgba(0, 229, 255, 0.1);
}

.cube-front {
    transform: translateZ(45px);
}

.cube-back {
    transform: translateZ(-45px) rotateY(180deg);
}

.cube-right {
    transform: translateX(45px) rotateY(90deg);
}

.cube-left {
    transform: translateX(-45px) rotateY(-90deg);
}

.cube-top {
    transform: translateY(-45px) rotateX(90deg);
}

.cube-bottom {
    transform: translateY(45px) rotateX(-90deg);
}

@keyframes rotate-cube {
    0% {
        transform: rotateX(10deg) rotateY(0deg);
    }

    25% {
        transform: rotateX(100deg) rotateY(90deg);
    }

    50% {
        transform: rotateX(190deg) rotateY(180deg);
    }

    75% {
        transform: rotateX(280deg) rotateY(90deg);
    }

    100% {
        transform: rotateX(370deg) rotateY(360deg);
    }
}

.scan-ring-outer {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 229, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-outer 30s linear infinite;
}

@keyframes orbit-outer {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.scan-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(72deg);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1), inset 0 0 10px rgba(0, 229, 255, 0.06);
    animation: scan-pulse 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scan-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(72deg) scale(0.85);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) rotateX(72deg) scale(1.15);
        opacity: 0.85;
    }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-accent);
    animation: particle-float 7s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 18%;
    left: 12%;
    animation-delay: 0s;
    opacity: 0.6;
}

.hero-particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 72%;
    left: 8%;
    animation-delay: 1.8s;
    opacity: 0.35;
}

.hero-particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 28%;
    right: 10%;
    animation-delay: 0.9s;
    opacity: 0.5;
}

.hero-particle:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 78%;
    right: 16%;
    animation-delay: 2.5s;
    opacity: 0.3;
}

@keyframes particle-float {

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

    50% {
        transform: translateY(-20px) scale(1.4);
        opacity: 0.1;
    }
}

/* ─── Floating Holographic Objects ───────────────────────── */
.hero-floating-objects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.hero-obj {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-obj.obj-active {
    opacity: 0.25;
    filter: blur(1px) drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.hero-obj svg {
    color: var(--primary-accent);
    animation: slow-spin 20s linear infinite;
}

#obj-1 {
    top: 10%;
    left: 15%;
    animation: float-obj-1 6s ease-in-out infinite;
}

#obj-2 {
    bottom: 25%;
    right: 5%;
    animation: float-obj-2 8s ease-in-out infinite;
}

#obj-3 {
    top: 15%;
    right: 10%;
    animation: float-obj-1 7s ease-in-out infinite;
}

#obj-4 {
    bottom: 20%;
    left: 10%;
    animation: float-obj-2 9s ease-in-out infinite;
}

@keyframes slow-spin {
    0% {
        transform: rotateY(0deg) rotateZ(-5deg);
    }

    100% {
        transform: rotateY(360deg) rotateZ(5deg);
    }
}

@keyframes float-obj-1 {

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

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

@keyframes float-obj-2 {

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

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

/* ─── Processing Widget (UPGRADED) ───────────────────────── */
.processing-widget {
    position: absolute;
    bottom: 12px;
    right: -24px;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.04);
    animation: float-widget 7s cubic-bezier(0.45, 0, 0.55, 1) infinite 1.2s;
}

@keyframes float-widget {

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

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

.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-accent);
    box-shadow: 0 0 8px var(--primary-accent);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.widget-title {
    font-size: 0.68rem;
    /* Slightly smaller */
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    flex: 1;
}

/* Progress bar inside widget */
.pw-progress-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    margin-bottom: 14px;
    overflow: hidden;
}

.pw-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, rgba(0, 229, 255, 0.6), var(--primary-accent));
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* Individual processing steps */
.pw-step {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    /* Increased whitespace between fewer items */
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.pw-step:last-child {
    margin-bottom: 0;
}

.pw-step.step-active,
.pw-step.step-done {
    opacity: 1;
}

.pw-icon {
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    font-style: normal;
}

.pw-icon.check {
    color: var(--primary-accent);
}

.pw-icon.spin {
    color: var(--primary-accent);
    display: inline-block;
    animation: spin-icon 1s linear infinite;
}

@keyframes spin-icon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pw-text {
    font-size: 0.76rem;
    /* Slightly smaller */
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pw-step.step-done .pw-text {
    color: var(--text-main);
}

.pw-step.step-active .pw-text {
    color: var(--primary-accent);
}


/* ─── Trust Strip ────────────────────────────────────────── */
.trust-strip {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    overflow: hidden;
}

.trust-strip-track {
    display: flex;
    gap: 3rem;
    animation: strip-scroll 28s linear infinite;
    width: max-content;
}

@media (hover: hover) {
    .trust-strip:hover .trust-strip-track {
        animation-play-state: paused;
    }
}

@keyframes strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-weight: 500;
    flex-shrink: 0;
}

.trust-pill svg {
    color: var(--primary-accent);
    flex-shrink: 0;
}

.trust-pill span {
    letter-spacing: 0.2px;
}

.trust-strip-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: center;
}


/* ─── Statistics Section ─────────────────────────────────── */
.stats-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(20, 20, 20, 0.4);
    transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 40%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.stat-sublabel {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}


/* ─── Problem Solutions ──────────────────────────────────── */
.problems-solutions {
    background-color: var(--bg-darker);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.problem-card {
    background: rgba(255, 40, 40, 0.05);
    border-color: rgba(255, 40, 40, 0.15);
}

.solution-card {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.15);
}

.comparison-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-card .comparison-title {
    color: var(--primary-accent);
}

.comparison-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}


/* ─── Demo Section ───────────────────────────────────────── */
.demo-section {
    position: relative;
}

.demo-container {
    width: 100%;
    max-width: 880px;
    height: 460px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.04);
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-dark));
    pointer-events: none;
}

.demo-ui {
    z-index: 2;
    text-align: center;
}

.demo-icon {
    width: 52px;
    height: 52px;
    color: var(--primary-accent);
    margin-bottom: 1.25rem;
    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {

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

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

.demo-model-viewer {
    width: 100%;
    height: 100%;
    background-color: transparent;
    --poster-color: transparent;
}

.view-ar-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    z-index: 10;
}

.demo-caption {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 10;
}

/* ─── Why Choose ─────────────────────────────────────────── */
.why-choose {
    background-color: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.ar-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    margin-bottom: 1.4rem;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ar-card:hover .feature-icon {
    background: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ─── Industry Use Cases (Upgraded) ─────────────────────── */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.case-card {
    height: 250px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        border-color 0.3s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.case-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.06);
}

/* Neon glow on hover */
.case-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.case-card:hover::after {
    opacity: 1;
}

.case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.1) 70%, transparent 100%);
    z-index: 0;
}

.case-thumbnail {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.case-thumbnail svg {
    width: 90px;
    height: 90px;
    color: var(--primary-accent);
    filter: drop-shadow(0 0 15px currentColor);
}

.case-card:hover .case-thumbnail {
    opacity: 0.45;
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px currentColor);
}

.case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    padding: 0;
    z-index: 2;
}

.case-title {
    position: absolute;
    top: 15px;
    left: 24px;
    right: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.case-desc {
    position: absolute;
    top: 45px;
    left: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Industry Card Themed Accents ─────────────────────── */
.case-restaurant {
    background: linear-gradient(135deg, rgba(20, 12, 5, 0.95) 0%, rgba(30, 18, 8, 0.9) 100%);
}

.case-restaurant .case-thumbnail svg {
    color: #ff9f4a;
}

.case-restaurant::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 120, 30, 0.1) 0%, transparent 70%);
}

.case-furniture {
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.95) 0%, rgba(15, 20, 30, 0.9) 100%);
}

.case-furniture .case-thumbnail svg {
    color: #7ecfff;
}

.case-furniture::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(60, 150, 255, 0.1) 0%, transparent 70%);
}

.case-retail {
    background: linear-gradient(135deg, rgba(5, 12, 20, 0.95) 0%, rgba(8, 16, 26, 0.9) 100%);
}

.case-retail .case-thumbnail svg {
    color: #00e5ff;
}

.case-realestate {
    background: linear-gradient(135deg, rgba(10, 10, 16, 0.95) 0%, rgba(14, 14, 22, 0.9) 100%);
}

.case-realestate .case-thumbnail svg {
    color: #a78bfa;
}

.case-realestate::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(120, 80, 255, 0.1) 0%, transparent 70%);
}

.case-manufacturing {
    background: linear-gradient(135deg, rgba(8, 12, 10, 0.95) 0%, rgba(12, 16, 14, 0.9) 100%);
}

.case-manufacturing .case-thumbnail svg {
    color: #6ee7b7;
}

.case-manufacturing::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(50, 200, 130, 0.1) 0%, transparent 70%);
}

.case-education {
    background: linear-gradient(135deg, rgba(12, 8, 20, 0.95) 0%, rgba(18, 12, 28, 0.9) 100%);
}

.case-education .case-thumbnail svg {
    color: #c084fc;
}

.case-education::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(180, 80, 255, 0.1) 0%, transparent 70%);
}

.case-jewelry {
    background: linear-gradient(135deg, rgba(18, 14, 5, 0.95) 0%, rgba(24, 18, 8, 0.9) 100%);
}

.case-jewelry .case-thumbnail svg {
    color: #fcd34d;
}

.case-jewelry::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(250, 200, 40, 0.1) 0%, transparent 70%);
}

.case-automotive {
    background: linear-gradient(135deg, rgba(6, 8, 12, 0.95) 0%, rgba(10, 12, 18, 0.9) 100%);
}

.case-automotive .case-thumbnail svg {
    color: #94a3b8;
}

.case-automotive::after {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(100, 120, 160, 0.1) 0%, transparent 70%);
}


/* ─── Pricing Section ────────────────────────────────────── */
.pricing {
    background-color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: stretch;
    margin-top: 1rem;
    padding-top: 24px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    overflow: visible;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary-accent);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.07), 0 0 0 1px rgba(0, 229, 255, 0.12);
}

.pricing-card.popular:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 229, 255, 0.1), 0 0 0 1px rgba(0, 229, 255, 0.18);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-accent);
    color: #000;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35);
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
    line-height: 1.5;
}

.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1.5rem;
}

.plan-features {
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.85rem;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.plan-features li svg {
    color: var(--primary-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA pull-quote under pricing */
.pricing-footnote {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-footnote a {
    color: var(--primary-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ─── FAQ Section ────────────────────────────────────────── */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid transparent;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: rgba(18, 18, 18, 0.5);
    overflow: hidden;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 22, 22, 0.7);
}

.faq-item.active {
    border-color: var(--primary-accent);
    border-left-color: var(--primary-accent);
    background: rgba(0, 229, 255, 0.025);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.97rem;
    user-select: none;
    gap: 1rem;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: -2px;
    border-radius: 10px;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 22px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}


/* ─── Contact Section ────────────────────────────────────── */
.contact {
    background-color: var(--bg-darker);
}

.contact-container {
    max-width: 560px;
    margin: 0 auto;
}


/* ─── Mid-page CTA Banner ────────────────────────────────── */
.cta-banner {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ─── Footer ─────────────────────────────────────────────── */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo span {
    color: var(--primary-accent);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.65;
    max-width: 270px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-social-links {
    display: flex;
    gap: 1.25rem;
}

.footer-social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.footer-social-links a:hover {
    color: var(--primary-accent);
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}


/* ─── Contact Form Redesign ──────────────────────────────── */
.contact-form-redesign {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.optional-tag {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8em;
    font-weight: 400;
    margin-left: 4px;
}

.form-submit-btn {
    margin-top: 0.5rem;
    padding: 14px;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-redesign {
        padding: 24px;
    }
}


/* ─── Success Modal (Glassmorphism) ──────────────────────── */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.success-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.success-modal.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-accent);
    animation: neon-pulse-icon 2s ease-in-out infinite;
}

@keyframes neon-pulse-icon {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
    }
}

.success-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.success-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.close-modal-btn {
    width: 100%;
}


/* ─── Scroll Reveal Utilities ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* ─── Media Queries ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {

    .plan-features li {
        font-size: 0.82rem;
        gap: 8px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000000;
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48), 0 0 42px rgba(0, 229, 255, 0.08);
    }

    .mobile-auth-link {
        display: block;
    }

    .mobile-auth-link a {
        display: inline-block;
        padding-bottom: 2px;
        color: var(--text-muted);
        font-weight: 500;
        font-size: 0.92rem;
        transition: color 0.25s ease;
    }
    
    .mobile-auth-link a:hover {
        color: var(--text-main);
    }
    
    .mobile-auth-link a::after {
        display: none !important;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .navbar {
        padding: 16px 0;
    }

    /* Reduce header height */

    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-eyebrow {
        margin: 0 auto 1.5rem;
    }

    .hero-title {
        margin-bottom: 1.5rem;
        font-size: 2.6rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Trust badges: 2x2 grid on mobile */
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
        gap: 1.25rem 1rem;
        padding-top: 2.5rem;
    }

    /* HERO REORDER: Text content first, visual below */
    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        min-height: 280px;
        height: auto;
        margin-top: -20px;
        margin-bottom: 0;
        transform: scale(0.82);
    }

    .hero-glass-panel {
        width: 240px;
        height: 240px;
    }

    .processing-widget {
        left: auto;
        right: 5px;
        margin: 0;
        bottom: auto;
        top: 52%;
        width: 210px;
    }

    .trust-strip-track {
        animation-duration: 20s;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    /* Industry Cards Mobile Override */
    .case-card {
        min-height: 200px;
        height: 200px;
    }

    .case-thumbnail {
        top: 15px;
        right: 15px;
        bottom: auto;
        left: auto;
        width: 60px;
        height: 60px;
        opacity: 0.25;
        justify-content: center;
        align-items: center;
    }

    .case-thumbnail svg {
        width: 60px;
        height: 60px;
    }

    .case-card:hover .case-thumbnail {
        opacity: 0.35;
        transform: scale(1.08);
    }

    .case-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 125px;
        padding: 0;
    }

    .case-title {
        top: 15px;
        left: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .case-desc {
        top: 45px;
        left: 20px;
        right: 20px;
        font-size: 0.8rem;
    }

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

    .demo-section .section-header {
        margin-bottom: 30px;
    }

    .demo-section .section-title {
        margin-bottom: 0.25rem;
    }

    .cta-banner h2 {
        font-size: 1.9rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {

    /* Hero Mobile Spacing Optimization */
    .hero-eyebrow {
        margin-top: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .hero-actions {
        margin-bottom: 3.25rem;
    }

    .hero-trust {
        padding-top: 2.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-visual {
        height: 300px;
        margin-bottom: 1.5rem;
    }

    .hero-glass-panel {
        width: 190px;
        height: 190px;
    }

    /* Optimize processing widget for small mobile */
    .processing-widget {
        display: block;
        left: auto;
        right: -25px;
        margin: 0;
        top: 52%;
        bottom: auto;
        width: 155px;
        padding: 12px;
        border-radius: 10px;
    }

    .processing-widget .widget-title {
        font-size: 0.55rem;
    }

    .processing-widget .pw-step {
        margin-bottom: 6px;
        gap: 4px;
    }

    .processing-widget .pw-text {
        font-size: 0.6rem;
        white-space: nowrap;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .comparison-card {
        padding: 24px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.92rem;
    }

    .cta-banner {
        padding: 60px 0;
    }
}


/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    .hero-glass-panel,
    .hero-cube,
    .scan-ring,
    .scan-ring-outer,
    .processing-widget,
    .hero-particle,
    .demo-icon,
    .hero-eyebrow-dot,
    .step-icon.active,
    .widget-dot,
    .trust-strip-track,
    .pw-icon.spin {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .trust-strip-track {
        animation: none;
    }
}


/* ─── Arvista.pk Transparent Logo Styles ──────────────── */
.logo,
.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
    /* Brought very close to the logo icon */
}

.av-logo-icon {
    height: 64px;
    /* Larger — transparent PNG fits perfectly */
    width: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    /* No border-radius or mix-blend-mode needed — PNG is truly transparent */
    transition: transform 0.3s ease;
}

.av-brand-text {
    font-family: 'Groupe', sans-serif !important;
    font-size: 1.2rem;
    font-weight: normal !important;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 0px;
    letter-spacing: normal;
    /* Groupe font normal spacing as requested */
    text-transform: uppercase;
    line-height: 1;
    display: block;
    transition: transform 0.3s ease;
}

.av-brand-pk {
    color: var(--primary-accent);
    /* Neon cyan #00E5FF */
    -webkit-text-fill-color: var(--primary-accent);
    -webkit-text-stroke: 0px;
}

.logo:hover .av-logo-icon,
.footer-logo:hover .av-logo-icon,
.logo:hover .av-brand-text,
.footer-logo:hover .av-brand-text {
    transform: scale(1.05);
}

/* ─── Responsive Logo Sizes ──────────────────────────────── */
@media (max-width: 768px) {
    .av-logo-icon {
        height: 52px;
        /* Perfect on mobile */
        width: auto;
    }

    .av-brand-text {
        font-size: 1rem;
        letter-spacing: normal;
    }

    .logo,
    .footer-logo {
        gap: 1px;
    }
}