*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --black: #080810;
    --surface: #12121e;
    --card: #1a1a28;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #ff3c2f;
    --accent2: #ff7a1a;
    --white: #f5f5f0;
    --muted: #9090a8;
    --grad: linear-gradient(135deg, #ff3c2f, #ff7a1a);
    --light-accent: rgb(255 60 47 / 8%);
    --green: #34a853;
}

html {
    scroll-behavior: smooth
}

body {
    /* color: var(--white); */
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    /* cursor: none */
}

/* .cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s
} */

/* .cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 60, 47, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s
} */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.3
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: padding 0.3s, box-shadow 0.3s
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08)
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.nav-logo img {
    height: 85px;
    width: auto;
    object-fit: contain
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--accent)
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    /* cursor: none; */
    transition: background 0.2s, transform 0.2s;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
}

.nav-cta:hover {
    background: #e62e22;
    transform: translateY(-1px)
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 60px 80px;
    position: relative;
    overflow: hidden;
    background: var(--white);;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 60, 47, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 60, 47, 0.04) 1px, transparent 1px);
    background-size: 60px 60px
}

.hero-blob {
    position: absolute;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(255, 60, 47, 0.13) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    animation: pulse 6s ease-in-out infinite
}

.hero-blob2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 65%);
    bottom: 0;
    left: 5%;
    animation: pulse 8s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.12) translate(15px, -15px)
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 60px;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 60, 47, 0.1);
    border: 1px solid rgba(255, 60, 47, 0.25);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
    border-radius: 15px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite
}

.hero-left {
    max-width: 840px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.8;
    margin:0 auto 12px;
    animation: fadeUp 0.8s 0.3s ease both
}

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 44px;
    animation: fadeUp 0.8s 0.4s ease both
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* STAT CARDS */





/* BUTTONS */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    /* cursor: none; */
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s
}

.btn-primary:hover::after {
    transform: translateX(110%) skewX(-15deg)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    /* cursor: none; */
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(255, 60, 47, 0.06);
    transform: translateY(-2px)
}

/* SECTION */
section {
    padding: 100px 60px;
    position: relative
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 60, 47, 0.4), transparent)
}

/* SERVICES */

.services-header {
    max-width: 640px;
    margin-bottom: 60px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: auto;
}

.svc-card {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s
}

.svc-card:hover {
    background: var(--black)
}

.svc-card:hover h3 {
    color: var(--white)
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: width 0.4s
}

.svc-card:hover::after {
    width: 100%
}

.svc-num {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgb(255 60 47 / 26%);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: color 0.3s
}

.svc-card:hover .svc-num {
    color: var(--accent)
}

.svc-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    object-fit: contain
}

.svc-icon-svg {
    width: 64px;
    height: 64px;
    margin-bottom: 28px
}

.svc-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px
}

.svc-card>p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 25px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.svc-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s
}

.svc-card:hover .svc-tag {
    border-color: rgba(255, 60, 47, 0.3);
    color: rgba(245, 245, 240, 0.8)
}

/* SOCIAL PROOF */

.sp-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 60, 47, 0.07) 0%, transparent 70%)
}

.sp-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center
}

.sp-header {
    text-align: center;
    margin-bottom: 45px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 60, 47, 0.08);
    border: 1px solid rgba(255, 60, 47, 0.2);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    align-self: center
}

.sp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite
}

.sp-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
    width: 100%
}

.sp-hero-card {
    background: var(--light-accent);
    border: 1px solid rgba(255, 60, 47, 0.25);
    padding: 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.sp-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad)
}

.sp-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px
}

.sp-hero-amt {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 900;
    line-height: 1.0;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sp-hero-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.sp-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px
}

.plat-card {
    background: var(--white);
    border: 1px solid #ffdcdc;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s
}

.plat-card:hover {
    border-color: rgba(255, 60, 47, 0.25);
    transform: translateY(-3px)
}

.plat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s
}

.plat-card:hover::before {
    transform: scaleX(1)
}

.plat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px
}

.plat-name-row {
    display: flex;
    align-items: center;
    gap: 14px
}

.plat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center
}

.plat-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700
}

.plat-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.plat-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(255, 60, 47, 0.3);
    color: var(--accent)
}

.plat-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pm-item {
    padding: 18px 16px;
    border-right: 1px solid var(--muted)
}

.pm-item:last-child {
    border-right: none
}

.pm-val {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px
}

.pm-key {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted)
}

.sp-conv {
    background: var(--white);
    border: 1px solid var(--light-accent);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    margin-bottom: 35px;
    border-radius: 15px;
    max-width: 1200px;
}

.conv-item {
    text-align: center
}

.conv-val {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #333;
    line-height: 1
}

.conv-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px
}

.conv-arr {
    font-size: 28px;
    color: rgba(255, 60, 47, 0.3);
    padding: 0 20px
}

/* CLIENTS */
.clients {
    background: var(--card);
    padding: 80px 60px
}

.clients-header {
    text-align: center;
    margin-bottom: 56px
}

.marquee-wrap {
    position: relative;
    overflow: hidden
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #181826, transparent)
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, #181826, transparent)
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 24s linear infinite;
    width: max-content
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-track:hover {
    animation-play-state: paused
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    border-right: 1px solid var(--border);
    height: 90px;
    min-width: 190px
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(2);
    opacity: 0.55;
    transition: all 0.3s
}

.logo-item:hover .logo-img {
    filter: grayscale(0) brightness(1);
    opacity: 1
}

.logo-text-fallback {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
    transition: color 0.2s
}

.logo-item:hover .logo-text-fallback {
    color: var(--white)
}

/* TESTIMONIALS */
.testi-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.rev-card {
    background: var(--white);
    border: 1px solid var(--white);
    padding: 36px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s
}

.rev-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 60, 47, 0.2)
}

.rev-card.featured {
    border-color: rgba(255, 60, 47, 0.2);
    background: var(--white);
}

.rev-metric {
    display: inline-block;
    background: rgba(255, 60, 47, 0.1);
    border: 1px solid rgba(255, 60, 47, 0.2);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rev-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.author-av {
    width: 50px;
    height: 50px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.author-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.stars {
    color: #ff7a1a;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px
}

/* CONTACT */
.contact {
    background: #14142a;
    text-align: center;
    position: relative;
    overflow: hidden
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 60, 47, 0.1) 0%, transparent 70%)
}

.contact-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 60, 47, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 60, 47, 0.04) 1px, transparent 1px);
    background-size: 60px 60px
}

.contact-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto
}

.contact h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px
}

.contact p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245, 245, 240, 0.6);
    margin-bottom: 44px
}

.contact-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* FOOTER */
footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

footer p {
    font-size: 13px;
    color: #555
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1)
}

.reveal-left.visible {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1)
}

.reveal-right.visible {
    opacity: 1;
    transform: none
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1)
}

.reveal-scale.visible {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: 0.08s
}

.d2 {
    transition-delay: 0.16s
}

.d3 {
    transition-delay: 0.24s
}

.d4 {
    transition-delay: 0.32s
}

.d5 {
    transition-delay: 0.4s
}

/* MOBILE */
@media(max-width:1024px) {
    nav {
        padding: 16px 24px
    }

    .nav-links {
        display: none
    }

    .hero {
        padding: 110px 24px 70px
    }

    .hero-inner {
        flex-direction: column
    }

    section {
        padding: 70px 24px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .sp-platforms {
        grid-template-columns: 1fr
    }

    .sp-conv {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .conv-arr {
        transform: rotate(90deg)
    }

    .reviews-grid {
        grid-template-columns: 1fr
    }

    .clients {
        padding: 60px 24px
    }

    footer {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center
    }
}

/* ─── DASHBOARD PROOF ─────────────────────────────── */
.dash-proof {
    margin-top: 56px
}

.dash-proof-header {
    text-align: center;
    margin-bottom: 40px
}

.dash-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 60, 47, 0.08);
    border: 1px solid rgba(255, 60, 47, 0.2);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px
}

.dash-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.dash-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px
}

.dash-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.dash-subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px
}

.dash-card-wide {
    grid-column: 1
}
/* 
.dash-card {
    background: #1a1a2a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px;
    position: relative;
    transition: border-color .3s, transform .3s
}

.dash-card:hover {
    border-color: rgba(255, 60, 47, 0.25);
    transform: translateY(-3px)
}

.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.dash-card:hover::before {
    transform: scaleX(1)
}

.dash-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.dash-live {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 2px 8px
}

.dash-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
} */

.dmt-tabs {
    display: flex;
    gap: 4px
}

.dmt {
    font-size: 11px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.35);
    /* cursor: default; */
    border: 1px solid transparent
}

.dmt.on {
    color: var(--accent);
    border-color: rgba(255, 60, 47, 0.3);
    background: rgba(255, 60, 47, 0.07)
}

.dmt-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px
}

.dash-kpi-row {
    display: grid;
    gap: 10px;
    margin-bottom: 16px
}

.dash-kpi-row.four {
    grid-template-columns: repeat(4, 1fr)
}

.dash-kpi-row.two {
    grid-template-columns: 1fr 1fr
}

.dash-kpi {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 14px
}

.dash-kpi.highlight {
    border-color: rgba(255, 60, 47, 0.25);
    background: rgba(255, 60, 47, 0.08)
}

.dkpi-val {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px
}

.dkpi-lbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px
}

.dkpi-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    display: inline-block
}

.dkpi-badge.up {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25)
}

.dkpi-badge.dn {
    background: rgba(255, 60, 47, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 60, 47, 0.2)
}

.dash-chart-wrap {
    margin-bottom: 14px
}

.dcw-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px
}

.dash-table {
    width: 100%;
    border-collapse: collapse
}

.dt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.dt-row.dt-head {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 6px 10px
}

.dt-name {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500
}

.dt-good {
    color: #22c55e;
    font-weight: 700
}

.dt-ok {
    color: #f5820a;
    font-weight: 700
}

/* Bar chart */
.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 10px 0 6px
}

.db-grp {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    flex-direction: column;
    position: relative
}

.db-grp {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 3px;
    position: relative
}

.db {
    width: 14px;
    border-radius: 2px 2px 0 0;
    transition: opacity .2s
}

.db.spend {
    background: rgba(255, 255, 255, 0.15)
}

.db.rev {
    background: var(--grad)
}

.db-lbl {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap
}

.db-grp {
    position: relative;
    padding-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px
}

.db-legend {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    font-size: 10px
}

.dbl-s {
    color: rgba(255, 255, 255, 0.35)
}

.dbl-r {
    color: var(--accent)
}

/* Upload note */
.dash-upload-note {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 60, 47, 0.05);
    border: 1px dashed rgba(255, 60, 47, 0.25);
    padding: 20px 28px;
    margin-top: 8px
}

.dun-icon {
    font-size: 28px;
    flex-shrink: 0
}

.dun-text {
    flex: 1
}

.dun-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px
}

.dun-text span {
    font-size: 13px;
    color: var(--muted)
}

@media(max-width:1024px) {
    .dash-grid {
        grid-template-columns: 1fr
    }

    .dash-kpi-row.four {
        grid-template-columns: 1fr 1fr
    }

    .dt-row {
        grid-template-columns: 2fr 1fr 1fr
    }

    .dt-row span:nth-child(2),
    .dt-row span:nth-child(3) {
        display: none
    }

    .dash-upload-note {
        flex-direction: column;
        text-align: center
    }
}


/* ─── FLOATING PARTICLES ─────────────────────────── */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 60, 47, 0.5);
    border-radius: 50%;
    animation: float-up linear infinite
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0)
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: .3
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.5)
    }
}

/* ─── SERVICE CARD ENHANCED ──────────────────────── */
.svc-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-radius: 15px;

}

.svc-card:hover {
    box-shadow: 0 8px 40px rgba(255, 60, 47, 0.12), 0 4px 24px rgba(0, 0, 0, 0.3)
}

.svc-card .svc-icon-svg {
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1), filter 0.3s
}

.svc-card:hover .svc-icon-svg {
    transform: scale(1.12) rotate(-3deg)
}

/* ─── REVIEW CARD ENHANCED ───────────────────────── */
.rev-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25)
}

.rev-card:hover {
    box-shadow: 0 12px 40px rgba(255, 60, 47, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3)
}

/* ─── PLATFORM CARD GLOW ─────────────────────────── */
.plat-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3)
}

.plat-card:hover {
    box-shadow: 0 8px 40px rgba(255, 60, 47, 0.12)
}

/* ─── STAT SECTION GLOW ──────────────────────────── */
.sp-hero-card {
    box-shadow: 0 0 60px rgba(255, 60, 47, 0.08), 0 4px 32px rgba(0, 0, 0, 0.4)
}

/* ─── TICKER UPGRADE ─────────────────────────────── */
.strip {
    background: linear-gradient(90deg, #0a0a14, #14141f, #0a0a14)
}

/* ─── SECTION DIVIDERS GLOW ──────────────────────── */
.divider {
    background: linear-gradient(90deg, transparent, rgba(255, 60, 47, 0.5), rgba(255, 122, 26, 0.4), transparent)
}

/* ─── LOGO MARQUEE ───────────────────────────────── */
.logo-item {
    transition: background 0.3s
}

.logo-item:hover {
    background: rgba(255, 60, 47, 0.05)
}

/* ─── SECTION HEADING GRADIENT UNDERLINE ─────────── */
.section-title {
    position: relative;
    display: block;
    text-align: center
}

/* ─── BUTTON PULSE ON HOVER ──────────────────────── */
.btn-primary:hover {
    box-shadow: 0 0 0 0 rgba(255, 60, 47, 0.4);
    animation: btn-pulse 1s ease-out infinite
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 47, 0.4)
    }

    100% {
        box-shadow: 0 0 0 14px rgba(255, 60, 47, 0)
    }
}

/* ─── COUNTER NUMBER GLOW ────────────────────────── */
.conv-val,
.pm-val,
.sp-hero-amt {
    text-shadow: 0 0 40px rgba(255, 60, 47, 0.3)
}
/* ─── CONTACT SECTION UPGRADE ────────────────────── */
.contact {
    background: linear-gradient(180deg, #14142a 0%, #0c0c18 100%)
}

/* ─── HERO GRADIENT GLOW ─────────────────────────── */
.hero-blob {
    animation: pulse 5s ease-in-out infinite
}

.hero-blob2 {
    animation: pulse 7s ease-in-out infinite reverse
}

/* ─── FLOATING BADGE ANIMATION ───────────────────── */
.hero-tag {
    animation: fadeUp 0.8s ease both, badge-float 4s ease-in-out 1s infinite
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

/* ─── SCROLL PROGRESS ────────────────────────────── */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--grad);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear
}

/* ─── STAGGER SERVICE CARDS ──────────────────────── */
.svc-card:nth-child(1) {
    transition-delay: 0s
}

.svc-card:nth-child(2) {
    transition-delay: 0.12s
}

.svc-card:nth-child(3) {
    transition-delay: 0.24s
}

/* ─── TESTI CARD STAGGER ─────────────────────────── */
.rev-card:nth-child(1) {
    transition-delay: 0s
}

.rev-card:nth-child(2) {
    transition-delay: 0.1s
}

.rev-card:nth-child(3) {
    transition-delay: 0.2s
}

.rev-card:nth-child(4) {
    transition-delay: 0.1s
}

.rev-card:nth-child(5) {
    transition-delay: 0.2s
}

.rev-card:nth-child(6) {
    transition-delay: 0.3s
}

/* ===========Amir Style============= */

.text-center {
    text-align: center
}
.text-white {
    color: var(--white)
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.dash-img {
    width: 600px;
    max-width: 100%;
}

.carousel-outer { position: relative; }
.carousel-clip  { overflow: hidden; padding-bottom: 8px; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-track .rev-card { flex: 0 0 clamp(280px,38vw,380px); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 0;
}
.carousel-dots  { display: flex; gap: 8px; }
.carousel-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .25s, width .25s;
}
.carousel-dots .dot.active {
  background: var(--orange); width: 22px; border-radius: 3px;
}
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s;
}
.carousel-arrow:hover { border-color: var(--orange); }
.carousel-arrow:disabled { opacity: .3; cursor: default; }
.dash-img-wrap {
    width: 500px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0px 10px 10px #eee;
}

@media (max-width: 600px) {
  .carousel-track { padding-left: 20px; }
  .carousel-controls { padding-left: 20px; padding-right: 20px; }
  .carousel-track .rev-card { flex-basis: 82vw; }
  .dash-img {
    width: 300px;
    max-width: 100%;
}

.dash-proof .marquee-wrap::after, .dash-proof .marquee-wrap::before {
    display: none;
}
.dash-img-wrap {
    width: 300px;
}
}

/* =========================
   GALLERY SECTION
========================= */

.proof-gallery-section{
  width:100%;
  padding:60px 20px;
  background:var(--white);
}

.gallery-block {
    max-width: 1200px;
    margin: 0 auto 70px;
}

.gallery-heading{
  text-align:center;
  margin-bottom:30px;
}

.gallery-heading h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:10px;
}

.gallery-heading p{
  color:#aaa;
  font-size:16px;
}

/* GRID */

.gallery-grid{
  display:grid;
  gap:24px;
}

/* GOOGLE IMAGES = SHORT HEIGHT */

.google-grid{
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.google-item{
  height:220px;
}

/* META IMAGES = TALL HEIGHT */

.meta-grid{
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.meta-item{
  height:520px;
}

/* COMMON CARD */

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
  background:#1b1b1b;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  transition:0.4s ease;
}

.gallery-item:hover{
  transform:translateY(-8px);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.gallery-item:hover img{
  transform:scale(1.06);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;

  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox-img{
  max-width:90%;
  max-height:85vh;
  border-radius:16px;
  object-fit:contain;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

/* CLOSE */

.close-lightbox{
  position:absolute;
  top:25px;
  right:35px;
  font-size:45px;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.close-lightbox:hover{
  transform:scale(1.15);
}

/* NAVIGATION */

.lightbox-nav button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  backdrop-filter:blur(5px);
  transition:0.3s ease;
}

.lightbox-nav button:hover{
  background:#fff;
  color:#000;
}

#prevBtn{
  left:30px;
}

#nextBtn{
  right:30px;
}

/* MOBILE */

@media(max-width:768px){

  .gallery-heading h2{
    font-size:28px;
  }

  .google-item{
    height:180px;
  }

  .meta-item{
    height:380px;
  }

  .lightbox-img{
    max-width:95%;
  }

  .lightbox-nav button{
    width:45px;
    height:45px;
    font-size:22px;
  }
}

/* GALLERY ITEM */

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
  background:#1b1b1b;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  transition:0.4s ease;
}

.testimonial_container {
    max-width: 1200px;
    margin: auto;
}