/* ==========================================================
   CLIQWEB HOME PAGE — DEDICATED STYLESHEET
   Self-contained, no conflicts with base style.css
   ========================================================== */

/* ============================
   SHARED UTILITIES
============================= */
.cw-grad {
    background: linear-gradient(130deg, #C890FF 0%, #B060FF 45%, #8A00FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cw-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(138, 0, 255, 0.3);
    background: rgba(138, 0, 255, 0.07);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B060FF;
    margin-bottom: 28px;
}

.cw-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8A00FF;
    box-shadow: 0 0 8px #8A00FF;
    animation: cw-blink 2s ease infinite;
}

@keyframes cw-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.cw-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.cw-section__header {
    max-width: 640px;
    margin-bottom: 64px;
}

.cw-section__header--center {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
}

.cw-section__header--between {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
    margin-bottom: 48px;
}

.cw-section__title {
    font-size: clamp(32px, 4vw, 52px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.1 !important;
    margin-bottom: 16px;
}

.cw-section__desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================
   1. HERO
============================= */
.cw-hero {
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #060608;
    padding-top: 80px;
    /* nav height offset */
}

.cw-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.033) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.033) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.cw-hero__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cw-hero__glow--1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(138, 0, 255, 0.22) 0%, transparent 70%);
}

.cw-hero__glow--2 {
    width: 500px;
    height: 500px;
    bottom: -80px;
    right: -50px;
    background: radial-gradient(circle, rgba(138, 0, 255, 0.12) 0%, transparent 70%);
}

.cw-hero__inner {
    position: relative;
    z-index: 2;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
    width: 100%;
}

.cw-hero__copy {
    z-index: 2;
}

.cw-hero__title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: clamp(36px, 5.5vw, 72px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.06 !important;
    margin-bottom: 24px !important;
    color: #fff !important;
}

.cw-hero__sub {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 40px;
}

.cw-hero__actions {
    display: flex !important;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cw-hero__ghost {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 4px;
    text-decoration: none;
    transition: color 0.3s;
}

.cw-hero__ghost::after {
    content: '→';
    transition: transform 0.3s;
}

.cw-hero__ghost:hover {
    color: #fff;
}

.cw-hero__ghost:hover::after {
    transform: translateX(4px);
}

.cw-hero__stats {
    display: flex !important;
    align-items: center;
    gap: 28px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.cw-hero__stat strong {
    display: block !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cw-hero__stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
    display: block !important;
}

.cw-hero__divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Scroll cue */
.cw-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cw-scroll-cue__line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(138, 0, 255, 0.8), transparent);
    animation: cw-scroll-drop 2s ease-in-out infinite;
}

@keyframes cw-scroll-drop {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ============================
   HERO MOCKUP (right col)
============================= */
.cw-hero__visual {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.cw-mockup {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: cw-float-mockup 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes cw-float-mockup {

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

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

.cw-mockup__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cw-mockup__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cw-mockup__bar span:nth-child(1) {
    background: #FF5F57;
}

.cw-mockup__bar span:nth-child(2) {
    background: #FEBC2E;
}

.cw-mockup__bar span:nth-child(3) {
    background: #28C840;
}

.cw-mockup__url {
    margin-left: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 3px 14px;
    font-family: 'Inter', monospace;
}

.cw-mockup__body {
    padding: 20px;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}

.cw-mockup__line {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.07);
    animation: cw-shimmer 3s ease-in-out infinite;
}

@keyframes cw-shimmer {

    0%,
    100% {
        opacity: 0.5
    }

    50% {
        opacity: 1
    }
}

.cw-mockup__line--h {
    height: 16px;
    width: 65%;
}

.cw-mockup__line--m {
    height: 10px;
    width: 90%;
    animation-delay: 0.3s;
}

.cw-mockup__line--s {
    height: 10px;
    width: 75%;
    animation-delay: 0.6s;
}

.cw-mockup__img {
    height: 160px; /* increased to show more of the beautiful image */
    border-radius: 8px;
    background: url('../images/hero_dashboard.png') center/cover no-repeat;
    border: 1px solid rgba(138, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cw-abstract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cw-abstract-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-2);
}

.cw-abstract-trend svg {
    width: 14px;
    height: 14px;
}

.cw-abstract-dashboard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cw-abstract-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-abstract-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.cw-abstract-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.cw-abstract-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: cw-line-shine 3s infinite;
}

@keyframes cw-line-shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(200%); }
}

.cw-abstract-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

/* ============================
   7. FAQ ACCORDION
============================= */
.cw-faq__grid {
    max-width: 840px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cw-faq__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.cw-faq__item[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-border);
}

.cw-faq__question {
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #fff;
    transition: var(--transition);
}

.cw-faq__question::-webkit-details-marker {
    display: none;
}

.cw-faq__question:hover {
    color: var(--accent-light);
}

.cw-faq__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--accent-2);
}

.cw-faq__item[open] .cw-faq__icon {
    transform: rotate(180deg);
}

.cw-faq__answer {
    padding: 0 32px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 720px;
}

.cw-faq__answer p {
    margin: 0;
}

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

.cw-mockup__block {
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.cw-mockup__block--accent {
    background: rgba(138, 0, 255, 0.2);
    border: 1px solid rgba(138, 0, 255, 0.3);
}

/* Floating Cards */
.cw-float {
    position: absolute !important;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    pointer-events: none;
    z-index: 4;
}

.cw-float--analytics {
    display: flex !important;
    align-items: center;
    gap: 12px;
    top: 12px;
    right: -10px;
    animation: cw-float-a 7s ease-in-out infinite;
}

.cw-float--rating {
    top: 140px;
    left: -40px;
    padding: 6px 12px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    height: fit-content !important;
    width: max-content !important;
    animation: cw-float-a 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.cw-float--rating .cw-float__stars {
    font-size: 9px;
    color: #FFD700;
    letter-spacing: 1px;
    line-height: 1;
}

.cw-float--rating .cw-float__label {
    font-size: 10px;
    color: #fff;
    opacity: 0.9;
    font-weight: 700;
    line-height: 1;
}

.cw-float--tech {
    bottom: 10px;
    right: -10px;
    display: flex !important;
    gap: 8px;
    animation: cw-float-a 6s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes cw-float-a {

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

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

.cw-float__icon {
    font-size: 22px;
    line-height: 1;
}

.cw-float__num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.cw-float__stars {
    font-size: 10px;
    color: #FFD700;
    letter-spacing: 2px;
    line-height: 1;
}

/* Dashboard Visuals */
.cw-dash {
    display: flex !important;
    height: 220px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.cw-dash__sidebar {
    width: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 12px;
    background: rgba(0, 0, 0, 0.2);
}

.cw-dash__nav {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}

.cw-dash__item {
    height: 4px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
}

.cw-dash__item--active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.cw-dash__main {
    flex: 1;
    padding: 20px;
    display: flex !important;
    flex-direction: column;
}

.cw-dash__header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cw-dash__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.cw-dash__tabs {
    display: flex !important;
    gap: 12px;
}

.cw-dash__tabs span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}

.cw-dash__tabs span.active {
    color: var(--accent-light);
}

.cw-dash__chart {
    flex: 1;
    position: relative;
    max-height: 100px;
}

.cw-chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: cw-line-draw 3s ease-out forwards;
}

.cw-chart-line--1 { animation-delay: 0.2s; }
.cw-chart-line--2 { animation-delay: 0.5s; }

@keyframes cw-line-draw {
    to { stroke-dashoffset: 0; }
}

.cw-dash__footer {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.cw-dash__stat-pills {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
}

.cw-pill {
    height: 6px;
    width: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.cw-pill--wide {
    width: 80px;
}

.cw-dash__donut {
    width: 54px;
    height: 54px;
}

.cw-donut-svg {
    transform: rotate(-90deg);
}

.cw-tech-pill {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    background: rgba(138, 0, 255, 0.15);
    border: 1px solid rgba(138, 0, 255, 0.3);
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(138, 0, 255, 0.2);
    /* Individual colors slightly adjusted */
}

.cw-tech-pill:nth-child(even) {
    background: rgba(176, 96, 255, 0.1);
    border-color: rgba(176, 96, 255, 0.2);
}

.cw-float--tech {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    display: flex !important;
    gap: 10px !important;
}







.cw-float--tech span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #B060FF;
    background: rgba(138, 0, 255, 0.12);
    border: 1px solid rgba(138, 0, 255, 0.25);
    border-radius: 100px;
    padding: 4px 10px;
    display: inline-block;
}

/* ============================
   2. TRUST
============================= */
.cw-trust {
    padding: 52px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

.cw-trust__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 36px;
}

.cw-trust__stats {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.cw-trust__stat {
    text-align: center;
}

.cw-trust__num {
    display: block !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    background: linear-gradient(130deg, #fff 0%, #B060FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cw-trust__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 6px;
    display: block !important;
}

.cw-trust__sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Marquee */
.cw-marquee {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.cw-marquee::before,
.cw-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.cw-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #060608 0%, transparent 100%);
}

.cw-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #060608 0%, transparent 100%);
}

.cw-marquee__track {
    display: flex !important;
    gap: 100px;
    width: max-content;
    animation: cw-marquee-roll 40s linear infinite;
    align-items: center;
}

.cw-marquee:hover .cw-marquee__track {
    animation-play-state: paused;
}

@keyframes cw-marquee-roll {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.33%); }
}

.cw-marquee__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.cw-marquee__logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.4;
    transition: all 0.5s var(--ease);
}

.cw-marquee__item:hover .cw-marquee__logo {
    filter: grayscale(0) brightness(1.2);
    opacity: 1;
    transform: scale(1.1);
}

/* ============================
   3. SERVICES
============================= */
.cw-services__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cw-svc-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    cursor: default;
}

.cw-svc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 0, 255, 0.35);
    background: rgba(138, 0, 255, 0.04);
}

.cw-svc-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(138, 0, 255, 0.14) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.cw-svc-card:hover .cw-svc-card__glow {
    opacity: 1;
}

.cw-svc-card__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(138, 0, 255, 0.5);
    margin-bottom: 16px;
}

.cw-svc-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(138, 0, 255, 0.1);
    border: 1px solid rgba(138, 0, 255, 0.2);
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s;
}

.cw-svc-card:hover .cw-svc-card__icon {
    background: rgba(138, 0, 255, 0.22);
    border-color: rgba(138, 0, 255, 0.5);
    box-shadow: 0 0 20px rgba(138, 0, 255, 0.28);
}

.cw-svc-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: #B060FF;
    color: #B060FF;
}

.cw-svc-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cw-svc-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cw-services__cta {
    margin-top: 48px;
}

/* ============================
   4. FEATURED WORK
============================= */
.cw-work__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.cw-work__card {
    position: relative;
    border-radius: 24px;
    background: #0c0c0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.cw-work__card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(138, 0, 255, 0.1);
}

.cw-work__card-inner {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.cw-work__card-img {
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease);
}

.cw-work__card:hover .cw-work__card-img {
    transform: scale(1.1);
}

.cw-work__card-bg--1 {
    background: url('../images/project_saka.png') center/top no-repeat;
    background-size: cover;
}

.cw-work__card-bg--2 {
    background: url('../images/project_ltm.png') center/top no-repeat;
    background-size: cover;
}

.cw-work__card-bg--3 {
    background: url('../images/project_easyrent.png') center/top no-repeat;
    background-size: cover;
}

.cw-work__card-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.95) 0%, rgba(6, 6, 8, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    transform: translateY(20px);
}

.cw-work__card:hover .cw-work__card-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cw-work__card-hover-content {
    width: 100%;
}

.cw-work__card-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.cw-work__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

/* Portfolio Responsive */
@media (max-width: 1100px) {
    .cw-work__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cw-work__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cw-work__card-inner {
        aspect-ratio: 16/10;
    }
    .cw-work__card-hover {
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 30px;
        background: linear-gradient(to top, rgba(6, 6, 8, 0.8) 0%, transparent 70%);
    }
}

/* ============================
   5. PROCESS
============================= */
.cw-process__steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.cw-step {
    padding: 36px 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.cw-step:first-child {
    border-left: none;
}

.cw-step__num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(138, 0, 255, 0.5);
    margin-bottom: 20px;
}

.cw-step__icon {
    width: 48px;
    height: 48px;
    background: rgba(138, 0, 255, 0.06);
    border: 1px solid rgba(138, 0, 255, 0.18);
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s;
}

.cw-step:hover .cw-step__icon {
    background: rgba(138, 0, 255, 0.18);
    border-color: rgba(138, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(138, 0, 255, 0.22);
}

.cw-step__icon svg {
    width: 22px;
    height: 22px;
    stroke: #B060FF;
}

.cw-step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cw-step p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ============================
   6. RESULTS
============================= */
.cw-results {
    background: linear-gradient(to bottom, #060608, #080812, #060608);
}

.cw-results__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(138, 0, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cw-results__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cw-result-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.35s, border-color 0.35s;
}

.cw-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 0, 255, 0.22);
}

.cw-result-card__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    background: linear-gradient(130deg, #fff 0%, #C890FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.cw-result-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 20px;
}

.cw-result-card__bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.cw-result-card__bar-fill {
    height: 100%;
    background: linear-gradient(to right, #8A00FF, #B060FF);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cw-result-card.counted .cw-result-card__bar-fill {
    transform: scaleX(1);
}

/* ============================
    2. ABSTRACT HERO VISUAL (Refined Browser Shell)
============================= */
.cw-hero__visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw-abstract-glass {
    width: 100%;
    max-width: 480px;
    z-index: 3;
}

/* Browser Shell Mockup */
.cw-browser {
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.cw-browser:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
    border-color: var(--accent-border);
}

.cw-browser__head {
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.cw-browser__dots {
    display: flex;
    gap: 6px;
}

.cw-browser__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.cw-browser__dots span:nth-child(1) { background: #ff5f57; }
.cw-browser__dots span:nth-child(2) { background: #ffbd2e; }
.cw-browser__dots span:nth-child(3) { background: #28c940; }

.cw-browser__url {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    height: 24px;
    font-size: 11px;
    color: var(--white-40);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.cw-browser__body {
    padding: 24px;
}

.cw-skeleton-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 12px;
}

.cw-skeleton-box--hero {
    height: 80px;
    width: 100%;
}

.cw-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.cw-skeleton-grid .cw-skeleton-box {
    height: 40px;
}

.cw-skeleton-box--accent {
    background: var(--accent);
    opacity: 0.2;
}

.cw-browser__badge {
    padding: 12px 24px;
    background: rgba(0, 255, 136, 0.05);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cw-browser__badge svg {
    width: 14px;
    height: 14px;
}

/* ============================
   2. HOW WE BUILD SUCCESS (JOURNEY TIMELINE)
============================= */
.cw-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 40px 0;
}

.cw-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(138, 0, 255, 0.4) 15%, 
        rgba(138, 0, 255, 0.4) 85%, 
        transparent
    );
    transform: translateX(-50%);
    z-index: 1;
}

.cw-timeline__item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;
    margin-bottom: 60px;
    z-index: 2;
}

.cw-timeline__item:last-child {
    margin-bottom: 0;
}

.cw-timeline__item.is-odd {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
    padding-left: 50px;
}

.cw-timeline__item.is-even {
    padding-right: 50px;
}

/* Bullet on the line */
.cw-timeline__item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    border: 3px solid var(--black);
    border-radius: 50%;
    z-index: 3;
}

.cw-timeline__item.is-even::after {
    right: -7px;
}

.cw-timeline__item.is-odd::after {
    left: -7px;
}

/* The Card */
.cw-timeline__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s var(--ease);
    max-width: 440px;
    position: relative;
}

.cw-timeline__card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-border);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.cw-timeline__num-wrap {
    position: absolute;
    top: -15px;
    background: #060608;
    padding: 0 10px;
}

.cw-timeline__item.is-even .cw-timeline__num-wrap { right: 20px; }
.cw-timeline__item.is-odd .cw-timeline__num-wrap { left: 20px; }

.cw-timeline__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-2);
    letter-spacing: 0.1em;
}

.cw-timeline__icon {
    width: 52px;
    height: 52px;
    background: rgba(138, 0, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    margin-bottom: 20px;
}

.cw-timeline__icon svg {
    width: 26px;
    height: 26px;
}

.cw-timeline__content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.cw-timeline__content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 900px) {
    .cw-timeline::before {
        left: 20px;
    }
    .cw-timeline__item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        justify-content: flex-start;
    }
    .cw-timeline__item::after {
        left: 13px !important;
        right: auto !important;
    }
    .cw-timeline__card {
        max-width: 100%;
    }
    .cw-timeline__item.is-even .cw-timeline__num-wrap { 
        left: 20px; 
        right: auto;
    }
}

/* ============================
   8. FINAL CTA
============================= */
.cw-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(138, 0, 255, 0.2);
    border-radius: 24px;
    padding: 88px 72px;
    text-align: center;
    overflow: hidden;
}

.cw-cta__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(138, 0, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.cw-cta__corner {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.cw-cta__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #8A00FF;
    border-left: 2px solid #8A00FF;
    border-radius: 24px 0 0 0;
}

.cw-cta__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid rgba(138, 0, 255, 0.5);
    border-right: 2px solid rgba(138, 0, 255, 0.5);
    border-radius: 0 0 24px 0;
}

.cw-cta__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cw-cta__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.cw-cta__actions {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================
   SCROLL REVEAL (home-only)
============================= */
/* reveal handled by JS */

[data-reveal-right] {
    transform: translateX(30px);
}

[data-reveal].visible,
[data-reveal-right].visible {
    opacity: 1;
    transform: none;
}

/* stagger handled by JS */

[data-stagger].visible>* {
    opacity: 1;
    transform: none;
}

[data-stagger].visible>*:nth-child(1) {
    transition-delay: 0.04s;
}

[data-stagger].visible>*:nth-child(2) {
    transition-delay: 0.10s;
}

[data-stagger].visible>*:nth-child(3) {
    transition-delay: 0.16s;
}

[data-stagger].visible>*:nth-child(4) {
    transition-delay: 0.22s;
}

[data-stagger].visible>*:nth-child(5) {
    transition-delay: 0.28s;
}

[data-stagger].visible>*:nth-child(6) {
    transition-delay: 0.34s;
}

[data-stagger].visible>*:nth-child(n+7) {
    transition-delay: 0.40s;
}

/* ============================
   HOME RESPONSIVE
============================= */
@media (max-width: 1100px) {
    .cw-services__grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .cw-results__grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .cw-process__steps {
        grid-template-columns: 1fr 1fr !important;
    }

    .cw-step {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .cw-step:nth-child(odd) {
        border-left: none;
    }

    .cw-step:nth-child(1),
    .cw-step:nth-child(2) {
        border-top: none;
    }

    .cw-work__grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .cw-work__card--more {
        grid-row: auto !important;
    }
}

@media (max-width: 900px) {
    .cw-hero__inner {
        grid-template-columns: 1fr !important;
    }

    .cw-hero__visual {
        display: none !important;
    }

    .cw-why__inner {
        grid-template-columns: 1fr !important;
        gap: 48px;
    }

    .cw-cta {
        padding: 60px 36px;
    }

    .cw-section__header--between {
        flex-direction: column !important;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .cw-services__grid {
        grid-template-columns: 1fr !important;
    }

    .cw-results__grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .cw-process__steps {
        grid-template-columns: 1fr !important;
    }

    .cw-work__grid {
        grid-template-columns: 1fr !important;
    }

    .cw-work__card--more {
        grid-row: auto !important;
    }

    .cw-trust__sep {
        display: none !important;
    }

    .cw-hero__stats {
        gap: 20px;
    }

    .cw-hero__divider {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .cw-results__grid {
        grid-template-columns: 1fr !important;
    }

    .cw-cta {
        padding: 44px 24px;
    }
}

/* ==================== ABSTRACT HERO VISUAL ==================== */
.cw-abstract-cluster {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.cw-abstract-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.cw-abstract-orb--1 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  opacity: 0.4;
  top: 10%;
  left: 10%;
}

.cw-abstract-orb--2 {
  width: 250px;
  height: 250px;
  background: var(--accent-light);
  opacity: 0.25;
  bottom: 0;
  right: 15%;
  animation-duration: 15s;
  animation-direction: alternate-reverse;
}

.cw-abstract-glass {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 480px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform-style: preserve-3d;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 0 40px rgba(255,255,255,0.03);
  animation: cardFloat 8s ease-in-out infinite;
}

.cw-abstract-glass::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%, transparent 60%, rgba(138,0,255,0.3) 100%);
  border-radius: inherit;
  z-index: -1;
}

.cw-abstract-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 24px;
  align-self: flex-start;
}

.cw-abstract-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.cw-abstract-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.cw-abstract-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  animation: shimmerLine 3s infinite;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
  100% { transform: translateY(20px) scale(0.95); }
}

@keyframes cardFloat {
  0% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateX(-2deg) rotateY(3deg); }
  100% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
}

@keyframes shimmerLine {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(300%); opacity: 0; }
}


/* ==================== ABOUT SECTION ==================== */
.cw-about {
  background: var(--black);
  padding: 140px 0;
  overflow: hidden;
}

.cw-about__grid {
  align-items: center;
  gap: 80px;
}

.cw-about__quote-wrap {
  position: relative;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-about__quote-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  transform: rotate(-2deg);
  z-index: 1;
}

.cw-about__blockquote {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cw-quote-mark {
  width: 60px;
  height: 60px;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cw-about__blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}

.cw-about__blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== REFACTORED WHY CHOOSE US ==================== */
.cw-why {
  background: var(--dark);
  position: relative;
}

/* Subtle grid texture for Why section */
.cw-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--accent-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
}

.cw-why__item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.cw-why__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cw-why__item-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}


/* ==================== TESTIMONIALS ==================== */
.cw-testimonials {
  padding: 140px 0;
  background: var(--dark-2);
  position: relative;
}

.cw-testimonials__grid {
  gap: 30px;
}

.cw-testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cw-testimonial-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-8px);
  background: var(--dark-4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cw-testimonial-card__quote {
  width: 40px;
  height: 40px;
  color: var(--accent);
  opacity: 0.15;
  margin-bottom: 24px;
}

.cw-testimonial-card__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-90);
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.cw-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cw-testimonial-card__author strong {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
}

.cw-testimonial-card__author span {
  font-size: 13px;
  color: var(--white-50);
  font-weight: 500;
}
