/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --bg-1: linear-gradient(to bottom, #c7ecff 0%, #f9efff 100%);
    --bg-2: linear-gradient(to bottom, #fffaf5 0%, #f8ecff 100%);
    --bg-3: linear-gradient(to bottom, #D6FFFC 0%, #ffeff5 100%);
    --btn-action: linear-gradient(to right, #673AB7 0%, #2196F3 100%);
    --btn-cta: linear-gradient(to right, #ffbd84 0%, #ff1f8e 100%);
    --purple: #673AB7;
    --blue: #2196F3;
    --pink: #ff1f8e;
    --orange: #ffbd84;
    --text: #1a1530;
    --text-2: #4a4468;
    --muted: #8b86aa;
    --white: #ffffff;
    --surface: rgba(255, 255, 255, .88);
    --border: rgba(103, 58, 183, .12);
    --border-2: rgba(103, 58, 183, .22);
    --shadow-sm: 0 4px 20px rgba(103, 58, 183, .08);
    --shadow: 0 12px 40px rgba(103, 58, 183, .13);
    --shadow-lg: 0 24px 60px rgba(103, 58, 183, .18);
    --ff-display: 'Inter', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --r-sm: 8px;
    --r: 16px;
    --r-lg: 28px;
    --r-xl: 40px;
    --transition: .32s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   BASE — overflow-x fix
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    background: #eef4ff;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.72;
    overflow-x: hidden;
    width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.14;
    color: var(--text)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}

section,
div.marquee-sec {
    max-width: 100vw;
    overflow-x: hidden
}

/* ============================================================
   UTILITIES
============================================================ */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(103, 58, 183, .08);
    border: 1px solid rgba(103, 58, 183, .18);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1.25rem
}

.sec-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: blink 1.6s ease infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.sec-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: .7rem
}

.sec-sub {
    color: var(--text-2);
    max-width: 540px
}

.grad-text {
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.grad-text-cta {
    background: var(--btn-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-action);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 30px;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .92rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.btn-action::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition)
}

.btn-action:hover::after {
    background: rgba(255, 255, 255, .1)
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(103, 58, 183, .38);
    color: #fff
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-cta);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 34px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition)
}

.btn-cta:hover::after {
    background: rgba(255, 255, 255, .12)
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 31, 142, .35);
    color: #fff
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .9);
    color: var(--purple);
    border: 1.5px solid rgba(103, 58, 183, .25);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .92rem;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(6px)
}

.btn-outline:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: var(--purple)
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--purple);
    border: none;
    border-radius: 50px;
    padding: 13px 30px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    color: var(--purple)
}

/* ============================================================
   NAVBAR — always has white background
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    /* Always has a solid background */
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(103, 58, 183, .06);
    transition: var(--transition);
}

@media(min-width:992px) {
    #navbar {
        padding: 14px 0;
    }

    #navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 4px 24px rgba(103, 58, 183, .07);
    }
}

.brand {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text)
}

.brand span {
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* Desktop at top — light text over carousel image — REMOVED */

.nav-link-c {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-2);
    padding: 6px 14px !important;
    transition: color var(--transition);
    position: relative
}

.nav-link-c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--btn-action);
    transform: scaleX(0);
    transition: var(--transition)
}

.nav-link-c:hover,
.nav-link-c.active {
    color: var(--purple)
}

.nav-link-c:hover::after,
.nav-link-c.active::after {
    transform: scaleX(1)
}

/* Mobile collapse — solid white background */
#navMenu.show,
#navMenu.collapsing {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0;
    border-radius: 0 0 var(--r) var(--r);
}

@media(max-width:991.98px) {
    #navMenu {
        background: #fff
    }

    .nav-link-c {
        padding: 10px 20px !important
    }
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.dropdown-menu {
    border: 1px solid var(--border-2);
    border-radius: var(--r);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
    display: none
}

.dropdown-item-c {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-2);
    transition: var(--transition)
}

.dropdown-item-c:hover {
    background: rgba(103, 58, 183, .07);
    color: var(--purple)
}

.dropdown-item-c .di-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.nav-toggler {
    border: 1.5px solid var(--border-2);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    color: var(--purple);
    background: none
}

/* ============================================================
   TOP CAROUSEL (full-screen with form)
============================================================ */
#topCarousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Each slide — image shows through clearly, only text area softened */
.tc-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Radial shadow anchored to left text column only — right side stays crisp */
.tc-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 90% at 18% 50%,
            rgba(8, 4, 24, .75) 0%,
            rgba(8, 4, 24, .35) 42%,
            transparent 72%);
}

/* Feather bottom edge so text footer blends; does NOT cover right half */
.tc-overlay-l {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .15) 0%,
            rgba(0, 0, 0, .04) 35%,
            transparent 55%);
}

.tc-content {
    position: relative;
    z-index: 3;
    padding: 140px 0 60px
}

/* Slide text */
.tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1.25rem;
}

.tc-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.4s ease infinite
}

.tc-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.tc-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7
}

/* Form card */
.tc-form-card {
    background: rgba(255, 255, 255, .95);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 3;
}

.tc-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .3rem;
    color: var(--text)
}

.tc-form-sub {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 1.25rem
}

.tc-input {
    background: #f8f6ff;
    border: 1.5px solid rgba(103, 58, 183, .15);
    border-radius: var(--r-sm);
    padding: 11px 15px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: .88rem;
    width: 100%;
    transition: var(--transition);
    margin-bottom: 10px;
}

.tc-input::placeholder {
    color: var(--muted)
}

.tc-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, .1)
}

/* Carousel indicators (custom) */
.tc-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: var(--transition)
}

.tc-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #fff
}

/* Carousel nav arrows */
.tc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.tc-arrow:hover {
    background: rgba(255, 255, 255, .3);
    border-color: rgba(255, 255, 255, .6)
}

.tc-arrow.prev {
    left: 20px
}

.tc-arrow.next {
    right: 20px
}

/* Progress bar at bottom */
.tc-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    z-index: 10;
}

.tc-progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, .9);
    width: 0;
    transition: width 5.5s linear;
}

/* ============================================================
   HERO — Index 1 (text-left + image-right)
============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-1);
    position: relative;
    overflow: hidden
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .45;
    animation: floatAnim 9s ease-in-out infinite
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(103, 58, 183, .25), transparent 70%);
    top: -180px;
    right: -80px
}

.hero-blob-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(33, 150, 243, .2), transparent 70%);
    bottom: -120px;
    left: -60px;
    animation-delay: -4.5s
}

.hero-blob-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 31, 142, .15), transparent 70%);
    top: 40%;
    left: 38%;
    animation-delay: -2s
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-28px) scale(1.04)
    }
}

.hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(103, 58, 183, .12) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 75%)
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(103, 58, 183, .18);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 1.5rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm)
}

.hero-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    animation: blink 1.4s ease infinite
}

.hero-headline {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 1.5rem
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 500px;
    margin-bottom: 2.5rem
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.hero-stat-label {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 4px
}

.hero-img-wrap {
    position: relative
}

.hero-img-main {
    border-radius: var(--r-lg);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    border: 1px solid rgba(103, 58, 183, .15);
    box-shadow: var(--shadow-lg)
}

.hero-badge {
    position: absolute;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(103, 58, 183, .15);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow)
}

.hero-badge.top-right {
    top: -20px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-badge.bottom-left {
    bottom: -20px;
    left: -16px
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--btn-action);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff
}

.badge-num {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.badge-lbl {
    font-size: .72rem;
    color: var(--muted)
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2
}

.scroll-indicator span {
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-sec {
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px)
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: marq 24s linear infinite;
    width: max-content
}

.marquee-track:hover {
    animation-play-state: paused
}

@keyframes marq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marq-item {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .85rem;
    color: rgba(103, 58, 183, .85);
    letter-spacing: .05em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition)
}

.marq-item:hover {
    color: var(--purple)
}

.marq-sep {
    background: var(--btn-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: .6rem
}

/* ============================================================
   ABOUT
============================================================ */
#about {
    padding: 60px 0;
    background: var(--bg-2)
}

.about-img-stack {
    position: relative;
    padding: 20px 20px 40px 20px
}

.about-img-main {
    border-radius: var(--r-lg);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 3/4;
    border: 1px solid rgba(103, 58, 183, .1);
    box-shadow: var(--shadow-lg)
}

.about-img-accent {
    position: absolute;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r);
    border: 5px solid #fff;
    box-shadow: var(--shadow);
    bottom: 0;
    right: 0
}

.about-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    margin-bottom: .9rem;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(103, 58, 183, .2)
}

.about-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.about-card h5 {
    font-size: .95rem;
    margin-bottom: .3rem;
    color: var(--text)
}

.about-card p {
    font-size: .84rem;
    color: var(--text-2);
    margin: 0
}

/* ============================================================
   SERVICES — icons REMOVED per request
============================================================ */
#services {
    padding: 60px 0;
    background: var(--bg-3)
}

.srv-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column
}

.srv-card::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--btn-action);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition)
}

.srv-card:hover::before {
    transform: scaleX(1)
}

.srv-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 58, 183, .2)
}

.srv-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/9
}

.srv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.srv-card:hover .srv-img {
    transform: scale(1.07)
}

.srv-body {
    padding: 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

/* No .srv-icon needed — removed */
.srv-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .7rem;
    color: var(--text)
}

.srv-desc {
    font-size: .87rem;
    color: var(--text-2);
    flex: 1;
    margin-bottom: 1.2rem;
    line-height: 1.7
}

.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.25rem
}

.srv-tag {
    font-size: .7rem;
    font-weight: 600;
    color: var(--purple);
    background: rgba(103, 58, 183, .08);
    border: 1px solid rgba(103, 58, 183, .15);
    border-radius: 50px;
    padding: 3px 10px
}

.srv-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--purple);
    transition: gap var(--transition);
    margin-top: auto
}

.srv-card:hover .srv-read-more {
    gap: 10px
}

/* ============================================================
   PORTFOLIO
============================================================ */
#portfolio {
    padding: 60px 0;
    background: var(--bg-1)
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.fil-btn {
    background: rgba(255, 255, 255, .88);
    border: 1.5px solid var(--border-2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: var(--transition)
}

.fil-btn.active,
.fil-btn:hover {
    background: var(--btn-action);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(103, 58, 183, .3)
}

.work-card {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    display: block;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 58, 183, .2)
}

.work-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/10
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.work-card:hover .work-img {
    transform: scale(1.06)
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(103, 58, 183, .92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    opacity: 0;
    transition: var(--transition)
}

.work-card:hover .work-overlay {
    opacity: 1
}

.work-meta {
    padding: 16px 20px;
    background: #fff
}

.wk-cat {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 4px
}

.wk-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .98rem;
    color: var(--text)
}

.wk-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    border: 1.5px solid rgba(255, 255, 255, .4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 8px
}

/* ============================================================
   EXPERTISE
============================================================ */
#expertise {
    padding: 60px 0;
    background: var(--bg-2)
}

.exp-list {
    list-style: none
}

.exp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: default
}

.exp-item:hover {
    padding-left: 10px;
    border-bottom-color: rgba(103, 58, 183, .28)
}

.exp-name {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
    transition: color var(--transition)
}

.exp-item:hover .exp-name {
    color: var(--purple)
}

.exp-bar-wrap {
    width: 190px;
    height: 5px;
    background: rgba(103, 58, 183, .1);
    border-radius: 5px;
    overflow: hidden
}

.exp-bar {
    height: 100%;
    border-radius: 5px;
    background: var(--btn-action);
    width: 0;
    transition: width 1.3s cubic-bezier(.4, 0, .2, 1)
}

.exp-pct {
    font-size: .78rem;
    font-weight: 700;
    color: var(--purple);
    min-width: 34px;
    text-align: right
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 10px
}

.tech-item {
    background: rgba(255, 255, 255, .88);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px 10px;
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.tech-item:hover {
    border-color: rgba(103, 58, 183, .25);
    color: var(--purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.tech-item i {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 7px
}

/* ============================================================
   WHY CHOOSE US — Redesigned (Image-free, Pattern-based)
============================================================ */
#why {
    padding: 80px 0;
    background: var(--bg-3);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--purple) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Abstract CSS Decorative Shape (Replaces Image) */
.why-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--btn-action);
    opacity: 0.04;
    border-radius: 50%;
    transition: var(--transition);
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 58, 183, 0.25);
    background: #fff;
}

.why-card:hover::after {
    transform: scale(1.5);
    opacity: 0.08;
}

/* Remove image styles as they are no longer used */
.why-img-wrap, .why-img {
    display: none;
}

.why-body {
    position: relative;
    z-index: 2;
}

.why-icon-row {
    display: flex;
    flex-direction: column; /* Modern stacked layout */
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 1.2rem;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.why-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
}

.why-desc {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FAQ
============================================================ */
#faq {
    padding: 60px 0;
    background: var(--bg-1)
}

.faq-item {
    background: rgba(255, 255, 255, .9);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(103, 58, 183, .22)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    cursor: pointer;
    font-family: var(--ff-display);
    font-size: .98rem;
    font-weight: 600;
    color: var(--text);
    user-select: none
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(103, 58, 183, .08);
    border: 1.5px solid rgba(103, 58, 183, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--purple);
    transition: var(--transition)
}

.faq-item.open .faq-icon {
    background: var(--purple);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.75;
    transition: max-height .4s ease, padding .4s ease
}

.faq-item.open .faq-a {
    max-height: 220px;
    padding-bottom: 20px
}

/* ============================================================
   BLOG
============================================================ */
#blog {
    padding: 60px 0;
    background: var(--bg-2)
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 58, 183, .18)
}

.blog-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/9
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.blog-card:hover .blog-img {
    transform: scale(1.06)
}

.blog-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-cat {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 9px
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
    line-height: 1.4
}

.blog-excerpt {
    font-size: .85rem;
    color: var(--text-2);
    margin-bottom: 14px;
    flex: 1
}

.blog-meta {
    font-size: .75rem;
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--purple);
    margin-top: 14px
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
    padding: 60px 0;
    background: var(--bg-3)
}

.testi-card {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.testi-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(103, 58, 183, .2)
}

.testi-quote {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: .25rem;
    font-family: Georgia, serif;
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .45
}

.testi-stars {
    font-size: .82rem;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 1.1rem
}

.testi-text {
    font-size: .93rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 1.4rem
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--purple)
}

.testi-name {
    font-weight: 700;
    font-size: .93rem;
    color: var(--text)
}

.testi-co {
    font-size: .78rem;
    color: var(--muted)
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem
}

.c-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(103, 58, 183, .25);
    cursor: pointer;
    transition: var(--transition)
}

.c-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--btn-action)
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
    padding: 60px 0;
    background: var(--bg-1)
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

.contact-info-item:last-of-type {
    border-bottom: none
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.ci-lbl {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px
}

.ci-val {
    font-size: .93rem;
    font-weight: 600;
    color: var(--text)
}

.contact-form-card {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 42px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow)
}

.cf-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
    display: block
}

.cf-input {
    background: #fff;
    border: 1.5px solid rgba(103, 58, 183, .15);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: .9rem;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(103, 58, 183, .05)
}

.cf-input::placeholder {
    color: var(--muted)
}

.cf-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, .1)
}

textarea.cf-input {
    resize: vertical;
    min-height: 130px
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--purple);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.social-btn:hover {
    background: var(--btn-action);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

/* ============================================================
   FOOTER — Structured & detailed
============================================================ */
footer {
    background: #0e0c22;
    padding: 0;
    border-top: 1px solid rgba(103, 58, 183, .2);
}

/* Top accent bar */
.ft-topbar {
    background: var(--btn-action);
    padding: 20px 0;
}

.ft-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ft-topbar-text {
    font-family: var(--ff-display);
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
}

.ft-topbar-text span {
    opacity: .8;
    font-weight: 400
}

/* Newsletter row */
.ft-newsletter {
    background: rgba(103, 58, 183, .12);
    border-bottom: 1px solid rgba(103, 58, 183, .2);
    padding: 40px 0;
}

.ft-nl-title {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .3rem
}

.ft-nl-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 0
}

.ft-nl-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ft-nl-input {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: 11px 20px;
    color: #fff;
    font-family: var(--ff-body);
    font-size: .88rem;
    transition: var(--transition);
}

.ft-nl-input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.ft-nl-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1)
}

/* Main footer grid */
.ft-main {
    padding: 60px 0 40px
}

.ft-logo-area {
    margin-bottom: 1.5rem
}

.ft-brand {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    margin-bottom: .8rem
}

.ft-brand span {
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ft-tagline {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .8rem
}

.ft-desc {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.ft-contact-row {
    margin-bottom: 1rem
}

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .7rem;
    font-size: .84rem;
    color: rgba(255, 255, 255, .5)
}

.ft-contact-item i {
    color: var(--purple);
    font-size: 1rem;
    flex-shrink: 0
}

.ft-contact-item a {
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition)
}

.ft-contact-item a:hover {
    color: #fff
}

.ft-social {
    display: flex;
    gap: 9px;
    margin-top: 1.25rem
}

.ft-sb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    transition: var(--transition)
}

.ft-sb:hover {
    /* background: var(--btn-action); */
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px)
}

.ft-col-head {
    font-family: var(--ff-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.ft-col-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--btn-action);
}

.ft-links {
    list-style: none
}

.ft-links li {
    margin-bottom: 10px
}

.ft-links a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px
}

.ft-links a i {
    font-size: .7rem;
    color: var(--purple);
    opacity: .7
}

.ft-links a:hover {
    color: #fff
}

.ft-links a:hover i {
    opacity: 1
}

/* Services with icons */
.ft-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.ft-service-item:hover {
    color: #fff
}

.ft-service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--btn-action)
}

/* Bottom bar */
.ft-bottom {
    background: rgba(0, 0, 0, .3);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
}

.ft-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.ft-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28)
}

.ft-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.ft-bottom-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28);
    transition: color var(--transition)
}

.ft-bottom-links a:hover {
    color: rgba(255, 255, 255, .7)
}

/* ============================================================
   POPUP
============================================================ */
#promoPopup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease
}

#promoPopup.show {
    opacity: 1;
    visibility: visible
}

#promoPopup.show .popup-card {
    transform: scale(1) translateY(0)
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 45, .62);
    backdrop-filter: blur(6px);
    cursor: pointer
}

.popup-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    max-width: 820px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(103, 58, 183, .35);
    transform: scale(.9) translateY(40px);
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
    display: flex
}

.popup-left {
    flex: 0 0 340px;
    position: relative;
    overflow: hidden;
    display: none
}

@media(min-width:640px) {
    .popup-left {
        display: block
    }
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.popup-left-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(160deg, rgba(103, 58, 183, .82), rgba(255, 31, 142, .75)); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px
}

.popup-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 13px;
    margin-bottom: 14px;
    width: fit-content
}

.popup-offer-big {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.popup-offer-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .82);
    margin-top: 6px
}

.popup-right {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(103, 58, 183, .08);
    border: 1.5px solid rgba(103, 58, 183, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--purple);
    cursor: pointer;
    transition: var(--transition)
}

.popup-close:hover {
    background: var(--purple);
    color: #fff;
    transform: rotate(90deg)
}

.popup-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(103, 58, 183, .08);
    border: 1px solid rgba(103, 58, 183, .18);
    color: var(--purple);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 13px;
    margin-bottom: 1rem;
    width: fit-content
}

.popup-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: blink 1.4s ease infinite
}

.popup-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: .6rem
}

.popup-desc {
    font-size: .9rem;
    color: var(--text-2);
    margin-bottom: 1.6rem;
    line-height: 1.7
}

.popup-input {
    background: #f8f6ff;
    border: 1.5px solid rgba(103, 58, 183, .15);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: .9rem;
    width: 100%;
    transition: var(--transition);
    margin-bottom: 10px
}

.popup-input::placeholder {
    color: var(--muted)
}

.popup-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, .1)
}

.popup-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
    margin-top: 12px
}

.popup-timer-dot {
    width: 8px;
    height: 8px;
    background: #ff1f8e;
    border-radius: 50%;
    animation: blink 1s ease infinite
}

.popup-countdown {
    font-weight: 700;
    color: var(--purple)
}

.popup-skip {
    display: block;
    text-align: center;
    font-size: .76rem;
    color: var(--muted);
    margin-top: 14px;
    cursor: pointer;
    transition: color var(--transition)
}

.popup-skip:hover {
    color: var(--purple)
}

/* ============================================================
   ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-l {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-r {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.v,
.reveal-l.v,
.reveal-r.v {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease
}

.stagger.v>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: .04s
}

.stagger.v>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .13s
}

.stagger.v>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .22s
}

.stagger.v>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .31s
}

.stagger.v>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .40s
}

.stagger.v>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: .49s
}

.cursor-glow {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(103, 58, 183, .06), transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left .1s ease, top .1s ease
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:991.98px) {
    .hero-img-wrap {
        margin-top: 3rem
    }

    .hero-badge.top-right {
        top: 0;
        right: 0
    }

    .hero-badge.bottom-left {
        bottom: 0;
        left: 0
    }

    .about-img-stack {
        margin-bottom: 3rem
    }

    .contact-form-card {
        padding: 28px 20px
    }

    .tc-content {
        padding: 100px 0 40px
    }

    .ft-topbar-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:575.98px) {
    .hero-headline {
        font-size: 2.2rem
    }

    .exp-bar-wrap {
        width: 110px
    }

    .sec-title {
        font-size: 1.9rem
    }

    .tc-headline {
        font-size: 1.9rem
    }

    .ft-nl-form {
        flex-direction: column
    }
}