/* ================================================================
   UI/UX SERVICE PAGE — PREMIUM EXTERNAL STYLESHEET
   File: public/Assets/css/ui-ux.css
   ================================================================ */


/* ----------------------------------------------------------------
   SHARED PAGE UTILITIES
---------------------------------------------------------------- */

/* ================================================================
   1. HERO SECTION
================================================================ */

.uiux-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #050510 0%, #1a0530 48%, #0a1220 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px;
}

/* Dot-grid mesh */
.uiux-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(95, 10, 135, 0.35) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(95, 10, 135, 0.3) 0%, transparent 68%);
    top: -250px;
    right: -120px;
}

.hero-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(44, 115, 210, 0.22) 0%, transparent 68%);
    bottom: -220px;
    left: -100px;
}

.uiux-hero > .container {
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow i { color: #c084fc; }

/* Headline */
.uiux-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.07;
    margin-bottom: 26px;
}

.uiux-hero h1 .hero-gradient-text {
    background: linear-gradient(90deg, #c084fc 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desc */
.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.88;
    margin-bottom: 40px;
}

/* CTA row */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-outline-hero {
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hero-stats .stat-item .num {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(90deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.hero-stats .stat-item .label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}


/* ----------------------------------------------------------------
   FIGMA-STYLE DESIGN MOCKUP (Hero Right)
---------------------------------------------------------------- */

.hero-design-mockup {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    animation: floatMockup 5.5s ease-in-out infinite;
}

@keyframes floatMockup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Window chrome */
.hdm-window {
    background: rgba(10, 10, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Title bar */
.hdm-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hdm-traffic { display: flex; gap: 7px; }

.hdm-traffic span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hdm-traffic span:nth-child(1) { background: #ff5f57; }
.hdm-traffic span:nth-child(2) { background: #febc2e; }
.hdm-traffic span:nth-child(3) { background: #28c840; }

.hdm-filename {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hdm-filename i { color: #c084fc; }

.hdm-toolbar { display: flex; gap: 14px; }

.hdm-toolbar i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.2s;
}

.hdm-toolbar i:hover { color: rgba(255, 255, 255, 0.75); }

/* Main body */
.hdm-main {
    display: flex;
    height: 290px;
}

/* Left layers panel */
.hdm-sidebar {
    width: 130px;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    overflow: hidden;
}

.hdm-layer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

.hdm-layer i { font-size: 11px; flex-shrink: 0; }

.hdm-layer:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
}

.hdm-layer.active {
    background: rgba(95, 10, 135, 0.22);
    color: #c084fc;
    border-right: 2px solid #c084fc;
}

/* Canvas area */
.hdm-canvas-area {
    flex: 1;
    background: #141428;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 18px 18px;
    overflow: hidden;
}

/* Mini page preview */
.hdm-page-preview {
    width: 140px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hdp-nav {
    height: 14px;
    background: #0f172a;
    width: 100%;
}

.hdp-hero-block {
    background: linear-gradient(135deg, #3d0657, #1d57a3);
    padding: 12px 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hdp-hero-text { flex: 1; }

.hdp-line {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.75);
    margin-bottom: 5px;
}

.hdp-line-lg { width: 85%; }
.hdp-line-sm { width: 58%; background: rgba(255, 255, 255, 0.38); margin-bottom: 0; }

.hdp-hero-img-box {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    flex-shrink: 0;
}

.hdp-cards {
    display: flex;
    gap: 4px;
    padding: 8px 6px;
    background: #f7f9fc;
}

.hdp-card {
    flex: 1;
    height: 28px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #e5e7eb;
}

/* Selection handles */
.hdm-selection-ring {
    position: absolute;
    width: 152px;
    height: 110px;
    border: 2px solid #c084fc;
    border-radius: 6px;
    z-index: 3;
    pointer-events: none;
}

.hdm-selection-ring::before,
.hdm-selection-ring::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border: 2px solid #c084fc;
    border-radius: 1px;
}

.hdm-selection-ring::before { top: -4px; left: -4px; }
.hdm-selection-ring::after { bottom: -4px; right: -4px; }

/* Right properties panel */
.hdm-properties {
    width: 118px;
    padding: 12px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    overflow: hidden;
}

.hdm-prop-section { margin-bottom: 14px; }

.hdm-prop-title {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
    font-weight: 700;
}

.hdm-color-row { display: flex; align-items: center; gap: 7px; }

.hdm-color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.hdm-color-row span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    font-family: monospace;
}

.hdm-type-row { font-size: 10px; color: rgba(255, 255, 255, 0.55); margin-bottom: 3px; }
.hdm-type-size { font-size: 9px; color: rgba(255, 255, 255, 0.3); }

.hdm-palette { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }

.hdm-swatch {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

/* Collaboration badge */
.hdm-collab-badge {
    position: absolute;
    bottom: -18px;
    left: 24px;
    background: rgba(10, 10, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 9px 18px 9px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    z-index: 5;
}

.hdm-avatars { display: flex; }

.hdm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #0a0a12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
}

.hdm-avatars .hdm-avatar:first-child { margin-left: 0; }

.hdm-collab-badge > span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}


/* ================================================================
   2. ABOUT SECTION
================================================================ */

/* Floating stat badges */
.uiux-about-img-wrap { 
    position: relative;
    height: 100%;
 }

.uiux-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
    box-shadow: var(--shadow-xl);
}

.uiux-about-badge {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
}

.uiux-about-badge .badge-num {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.uiux-about-badge .badge-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bottom-left {
    bottom: 28px;
    left: -12px;
    animation: floatingCard 4.5s ease-in-out infinite;
}

.badge-top-right {
    top: 28px;
    right: -12px;
    animation: floatingCard 4.5s ease-in-out infinite reverse;
}


/* ================================================================
   3. SERVICES SECTION
================================================================ */

.uiux-service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

/* Animated top accent bar */
.uiux-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Corner glow */
.uiux-service-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(95, 10, 135, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.uiux-service-card:hover::before { transform: scaleX(1); }
.uiux-service-card:hover::after { opacity: 1; }

.uiux-service-card:hover {
    border-color: transparent;
    box-shadow: 0 22px 60px rgba(95, 10, 135, 0.12);
    transform: translateY(-6px);
}

/* Icon */
.svc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(95, 10, 135, 0.1), rgba(44, 115, 210, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.svc-icon i {
    font-size: 26px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}

.uiux-service-card:hover .svc-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.uiux-service-card:hover .svc-icon i {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.uiux-service-card h3 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.uiux-service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.78;
    margin: 0;
}


/* ================================================================
   4. WHY CHOOSE SECTION (dark)
================================================================ */

.uiux-why-section {
    background: linear-gradient(135deg, #050510 0%, #160425 50%, #081020 100%);
    position: relative;
    overflow: hidden;
}

.why-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(95, 10, 135, 0.22) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.why-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(44, 115, 210, 0.16) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
}

.uiux-why-section > .container { position: relative; z-index: 2; }

.uiux-why-section .section-subtitle {
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(192, 132, 252, 0.22);
    color: #c084fc;
}

.uiux-why-section .section-heading .section-title { color: #fff; }
.uiux-why-section .section-heading .section-description { color: rgba(255, 255, 255, 0.52); }

/* Why item */
.uiux-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.uiux-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    border-radius: 0;
}

.uiux-why-item:hover::before { transform: scaleY(1); }

.uiux-why-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(95, 10, 135, 0.35);
}

.uiux-why-item .why-num {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 800;
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.2);
    min-width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uiux-why-item h4 {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.uiux-why-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin: 0;
    line-height: 1.65;
}

/* Right visual panel */
.why-visual-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-visual-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.why-big-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(95, 10, 135, 0.28), rgba(44, 115, 210, 0.28));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-big-icon i {
    font-size: 40px;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-visual-title {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.why-visual-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 20px;
}

.why-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.why-tool-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 14px 8px;
    text-align: center;
    transition: all 0.3s;
}

.why-tool-item:hover {
    background: rgba(95, 10, 135, 0.2);
    border-color: rgba(192, 132, 252, 0.3);
    transform: translateY(-2px);
}

.why-tool-item i {
    font-size: 20px;
    color: #c084fc;
    display: block;
    margin-bottom: 5px;
}

.why-tool-item span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
}

/* Progress meters */
.why-meter-block {
    margin-top: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    width: 100%;
    text-align: left;
}

.why-meter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.why-meter-label { font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.why-meter-value { font-size: 12px; font-weight: 700; }

.why-meter-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 14px;
}

.why-meter-track:last-child { margin-bottom: 0; }

.why-meter-fill {
    height: 100%;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on meters */
.why-meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: meterShimmer 2.8s ease-in-out infinite;
}

@keyframes meterShimmer {
    0% { left: -80%; }
    100% { left: 120%; }
}


/* ================================================================
   5. PROCESS SECTION
================================================================ */

.uiux-process-section {
    background:
        radial-gradient(circle at top right, rgba(95, 10, 135, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(44, 115, 210, 0.06), transparent 40%),
        #f7f9fc;
}

/* Process chips */
.process-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.process-chip {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.process-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

/* Process tab image */
.process-tab-img-wrap {
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(95, 10, 135, 0.12);
    position: relative;
}

.process-tab-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(95, 10, 135, 0.15);
    pointer-events: none;
}

.process-tab-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.process-tab-img-wrap:hover .process-tab-img {
    transform: scale(1.04);
}


/* ================================================================
   6. OFFERINGS TABS
================================================================ */

.uiux-offerings-section { background: #fff; }

.offering-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offering-tab-btn {
    background: #f7f9fc;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 18px;
    text-align: left;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.offering-tab-btn i {
    font-size: 18px;
    color: var(--text-light);
    transition: color 0.3s;
    flex-shrink: 0;
}

.offering-tab-btn.active,
.offering-tab-btn:hover {
    background: linear-gradient(135deg, rgba(95, 10, 135, 0.06), rgba(44, 115, 210, 0.06));
    border-color: var(--primary);
    color: var(--primary);
}

.offering-tab-btn.active i,
.offering-tab-btn:hover i { color: var(--primary); }

.offering-content-area {
    background: linear-gradient(135deg, rgba(95, 10, 135, 0.03), rgba(44, 115, 210, 0.03));
    border: 1px solid rgba(95, 10, 135, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.offering-content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.offering-pane { display: none; }

.offering-pane.active {
    display: block;
    animation: offerIn 0.32s ease;
}

@keyframes offerIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.offering-pane h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.offering-pane p {
    color: var(--text-muted);
    line-height: 1.82;
    font-size: 15px;
    margin-bottom: 24px;
}

.offering-feature-list { list-style: none; padding: 0; margin: 0; }

.offering-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.offering-feature-list li:last-child { border-bottom: none; }

.offering-feature-list li i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}


/* ================================================================
   7. STATS BANNER
================================================================ */

.uiux-stats-banner {
    background: var(--gradient-primary);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

/* Dot mesh overlay */
.uiux-stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

.uiux-stats-banner > .container { position: relative; z-index: 2; }

.uiux-stats-banner .stat-box .num {
    font-family: var(--font-secondary);
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.22);
}

.uiux-stats-banner .stat-box .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}


/* ================================================================
   8. INDUSTRIES
================================================================ */

.uiux-industry-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.uiux-industry-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 32px rgba(95, 10, 135, 0.1);
    transform: translateY(-5px);
}

.uiux-industry-card .ic-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(95, 10, 135, 0.09), rgba(44, 115, 210, 0.09));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s;
}

.uiux-industry-card:hover .ic-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.uiux-industry-card .ic-icon i {
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.uiux-industry-card:hover .ic-icon i {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.uiux-industry-card h5 {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}


/* ================================================================
   9. CTA SECTION
================================================================ */

.uiux-cta-section { background: #f7f9fc; }

.uiux-cta-inner {
    background:
        linear-gradient(135deg, rgba(5,5,16,0.87) 0%, rgba(34,6,64,0.82) 50%, rgba(9,15,34,0.90) 100%),
        url('/Assets/Images/Mobile-App-Melbourne/ui-ux-design.webp') center / cover no-repeat;
    border-radius: var(--radius-xl);
    padding: 84px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Mesh overlay */
.uiux-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(192, 132, 252, 0.14) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: inherit;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(95, 10, 135, 0.32) 0%, transparent 70%);
    top: -160px;
    right: -80px;
}

.cta-orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(44, 115, 210, 0.25) 0%, transparent 70%);
    bottom: -130px;
    left: -60px;
}

.cta-content { position: relative; z-index: 2; }

.uiux-cta-inner h2 {
    font-family: var(--font-secondary);
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
}

.uiux-cta-inner h2 span {
    background: linear-gradient(90deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uiux-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.62);
    max-width: 560px;
    margin: 0 auto 42px;
    line-height: 1.88;
}

.uiux-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white-cta {
    background: #fff;
    color: var(--primary);
    padding: 15px 34px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-white-cta:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    transform: translateY(-3px);
}

.btn-ghost-white {
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.88);
    padding: 13px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    transform: translateY(-3px);
}


/* ================================================================
   10. RESPONSIVE
================================================================ */

@media (max-width: 1199px) {
    .hdm-sidebar { width: 112px; }
    .hdm-properties { width: 100px; }
}

@media (max-width: 991px) {
    .uiux-hero { min-height: auto; padding: 110px 0 70px; }
    .hero-design-mockup { margin-top: 52px; max-width: 440px; }
    .uiux-cta-inner { padding: 60px 36px; }
    .offering-content-area { padding: 36px 30px; }
    .uiux-about-badge.badge-bottom-left { left: 0; }
    .uiux-about-badge.badge-top-right { right: 0; }
}

@media (max-width: 767px) {
    .hero-stats { gap: 24px; padding-top: 28px; }
    .hero-stats .stat-item .num { font-size: 30px; }
    .hdm-main { height: 230px; }
    .hdm-sidebar { width: 90px; }
    .hdm-properties { display: none; }
    .hdm-layer span { display: none; }
    .hdm-collab-badge { left: 10px; }
    .uiux-cta-inner { padding: 48px 24px; }
    .uiux-stats-banner { padding: 52px 0; }
    .uiux-stats-banner .stat-box .num { font-size: 40px; }
    .why-tools-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
    .uiux-hero h1 { font-size: 34px; }
    .hero-design-mockup { max-width: 100%; }
    .hdm-collab-badge { left: 8px; bottom: -14px; }
    .uiux-about-img-wrap img { height: 320px; }
}


/* ================================================================
   FLOATING TOOL ELEMENTS — Hero Section
================================================================ */

.hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.hero-floats > * {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

/* ---- Pill chips (icon + label) ---- */
.hf-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-full);
    padding: 9px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hf-pill i {
    font-size: 16px;
    background: linear-gradient(135deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Notification card ---- */
.hf-notif {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 12px 18px;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hf-notif-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hf-notif-icon i { font-size: 18px; }

.hf-icon-green { background: rgba(74, 222, 128, 0.14); }
.hf-icon-green i { color: #4ade80; }

.hf-icon-purple { background: rgba(192, 132, 252, 0.14); }
.hf-icon-purple i { color: #c084fc; }

.hf-icon-blue { background: rgba(96, 165, 250, 0.14); }
.hf-icon-blue i { color: #60a5fa; }

.hf-notif-title {
    display: block;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hf-notif-sub {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 1px;
}

/* ---- Color palette card ---- */
.hf-palette-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hf-palette-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.hf-palette-swatches {
    display: flex;
    gap: 5px;
}

.hf-palette-swatches span {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: block;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

/* ---- Design cursor ---- */
.hf-cursor-wrap {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.hf-cursor-icon {
    font-size: 24px;
    color: #c084fc;
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.7));
    display: block;
    line-height: 1;
}

.hf-cursor-label {
    background: rgba(192, 132, 252, 0.14);
    border: 1px solid rgba(192, 132, 252, 0.32);
    border-radius: 8px;
    padding: 5px 10px;
    font-family: var(--font-secondary);
    font-size: 11px;
    color: #c084fc;
    font-weight: 700;
    margin-top: 3px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ---- Activity bar (progress-like element) ---- */
.hf-progress-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hf-progress-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.hf-progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 5px;
}

.hf-progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #5f0a87, #c084fc);
    animation: hfProgressPulse 2s ease-in-out infinite;
}

.hf-progress-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hf-progress-pct {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(90deg, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hf-progress-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes hfProgressPulse {
    0%, 100% { width: 72%; opacity: 1; }
    50% { width: 78%; opacity: 0.85; }
}

/* ---- Sparkle dots ---- */
.hf-sparkle {
    border-radius: 50%;
    animation: hfSparkle 3.5s ease-in-out infinite;
}

/* ================================================================
   INDIVIDUAL POSITIONS
================================================================ */

/* --- Left side elements --- */

.hf-figma {
    top: 17%;
    left: 44.2%;
    animation: hfFloat1 5.5s ease-in-out infinite;
}

.hf-sketch {
    top: 54%;
    left: 1.5%;
    animation: hfFloat3 4.8s ease-in-out infinite;
    animation-delay: 0.7s;
}

.hf-components {
    bottom: 18%;
    left: 2%;
    animation: hfFloat2 6.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

/* --- Right side / center elements --- */

.hf-approved {
    top: 9%;
    right: 3%;
    animation: hfFloat2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hf-prototype {
    top: 43%;
    right: 1.5%;
    animation: hfFloat1 5.2s ease-in-out infinite;
    animation-delay: 2.2s;
}

.hf-palette-card {
    bottom: 13%;
    right: 31.5%;
    animation: hfFloat3 7s ease-in-out infinite;
    animation-delay: 0.9s;
}

.hf-design-progress {
    bottom: 22%;
    right: 3%;
    animation: hfFloat2 5.8s ease-in-out infinite;
    animation-delay: 3s;
}

.hf-cursor-wrap {
    top: 56%;
    left: 46%;
    animation: hfFloat3 5s ease-in-out infinite;
    animation-delay: 2.8s;
}

/* --- Sparkle dots --- */

.hf-spark-1 {
    width: 5px; height: 5px;
    background: #c084fc;
    top: 26%; left: 11%;
    animation-delay: 0s;
    box-shadow: 0 0 6px #c084fc;
}

.hf-spark-2 {
    width: 7px; height: 7px;
    background: #60a5fa;
    top: 70%; right: 20%;
    animation-delay: 1.2s;
    box-shadow: 0 0 8px #60a5fa;
}

.hf-spark-3 {
    width: 4px; height: 4px;
    background: #c084fc;
    top: 15%; right: 26%;
    animation-delay: 2.3s;
    box-shadow: 0 0 5px #c084fc;
}

.hf-spark-4 {
    width: 6px; height: 6px;
    background: #60a5fa;
    bottom: 32%; left: 16%;
    animation-delay: 0.8s;
    box-shadow: 0 0 7px #60a5fa;
}

.hf-spark-5 {
    width: 4px; height: 4px;
    background: #c084fc;
    bottom: 14%; left: 38%;
    animation-delay: 1.7s;
    box-shadow: 0 0 5px #c084fc;
}

/* ================================================================
   KEYFRAME ANIMATIONS
================================================================ */

@keyframes hfFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    35% { transform: translateY(-14px) rotate(1.2deg); }
    65% { transform: translateY(6px) rotate(-0.6deg); }
}

@keyframes hfFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    40% { transform: translateY(-18px) translateX(5px); }
    70% { transform: translateY(7px) translateX(-3px); }
}

@keyframes hfFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    28% { transform: translateY(-10px) translateX(7px) rotate(-1.2deg); }
    58% { transform: translateY(-22px) translateX(-4px) rotate(0.8deg); }
    78% { transform: translateY(4px) translateX(2px) rotate(-0.3deg); }
}

@keyframes hfSparkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(2.2); }
}

/* ================================================================
   RESPONSIVE — hide floats that would overlap content
================================================================ */

@media (max-width: 1399px) {
    .hf-figma  { left: 44.2%; }
    .hf-sketch { left: 0.2%; }
    .hf-components { left: 0.2%; }
    .hf-cursor-wrap { display: none; }
    .hf-spark-1 { display: none; }
    .hf-spark-4 { display: none; }
    .hf-spark-5 { display: none; }
}

@media (max-width: 1199px) {
    .hf-figma      { display: none; }
    .hf-sketch     { display: none; }
    .hf-components { display: none; }
    .hf-design-progress { display: none; }
    .hf-spark-1 { display: none; }
    .hf-spark-4 { display: none; }
}

@media (max-width: 991px) {
    .hero-floats { display: none; }
}


/* ================================================================
   OFFERING WORKFLOW VISUALS — CSS-only UI mockups
================================================================ */

/* Base wrapper */
.owv {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ---------------------------------------------------------------
   1. WEB UI/UX — Browser window
--------------------------------------------------------------- */
.owv-web {
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.owv-browser-bar {
    background: #f0f0f2;
    border-bottom: 1px solid #e5e7eb;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.owv-dots { display: flex; gap: 4px; }
.owv-dots span { width: 8px; height: 8px; border-radius: 50%; display: block; }
.owv-dots span:nth-child(1) { background: #ff5f57; }
.owv-dots span:nth-child(2) { background: #febc2e; }
.owv-dots span:nth-child(3) { background: #28c840; }

.owv-url-bar { flex: 1; height: 17px; background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; }

.owv-web-nav {
    background: #0f172a;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
    flex-shrink: 0;
}

.owv-web-logo { width: 32px; height: 7px; background: linear-gradient(90deg, #c084fc, #60a5fa); border-radius: 4px; flex-shrink: 0; }
.owv-web-nav-links { display: flex; gap: 5px; flex: 1; }
.owv-nav-link { width: 20px; height: 4px; background: rgba(255,255,255,0.25); border-radius: 2px; }
.owv-web-nav-cta { width: 30px; height: 14px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 8px; flex-shrink: 0; }

.owv-web-hero {
    background: linear-gradient(135deg, #1a0530, #0d1f3d);
    padding: 14px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.owv-hero-text { flex: 1; }

.owv-line { height: 5px; border-radius: 3px; margin-bottom: 5px; }
.owv-line-xl { width: 82%; background: rgba(255,255,255,0.9); }
.owv-line-lg { width: 65%; background: rgba(255,255,255,0.5); }
.owv-line-sm { width: 50%; background: rgba(255,255,255,0.28); margin-bottom: 0; }
.owv-hero-cta { width: 42px; height: 13px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 10px; margin-top: 8px; }
.owv-hero-img-block { width: 58px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 6px; flex-shrink: 0; }

.owv-web-cards { display: flex; gap: 6px; padding: 8px; background: #f7f9fc; }
.owv-web-card { flex: 1; background: #fff; border: 1px solid #e5e7eb; border-radius: 6px; overflow: hidden; }
.owv-web-card-img { height: 26px; background: linear-gradient(135deg, rgba(95,10,135,0.12), rgba(44,115,210,0.12)); }
.owv-web-card-body { padding: 5px; }
.owv-web-card-line { height: 4px; background: #e5e7eb; border-radius: 2px; margin-bottom: 3px; width: 88%; }
.owv-web-card-line-sm { width: 58%; margin-bottom: 0; }


/* ---------------------------------------------------------------
   2. MOBILE — Two overlapping phones
--------------------------------------------------------------- */
.owv-mobile {
    background: linear-gradient(135deg, #08000e, #0a0e1c);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 16px 16px;
    min-height: 210px;
    position: relative;
}

.owv-phone {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
    border: 3px solid #2d3748;
    background: #1e1b4b;
    flex-shrink: 0;
    position: relative;
}

.owv-phone-notch {
    width: 26px;
    height: 5px;
    background: #111827;
    border-radius: 0 0 5px 5px;
    margin: 0 auto;
}

.owv-phone-main { width: 90px; z-index: 2; }

.owv-phone-secondary {
    width: 68px;
    opacity: 0.78;
    transform: translateX(-12px) translateY(12px) scale(0.93);
    z-index: 1;
    border-color: #1f2937;
}

.owv-phone-screen {
    background: #fff;
    margin: 0 3px 3px;
    border-radius: 5px;
    overflow: hidden;
}

.owv-app-header {
    background: linear-gradient(90deg, #5f0a87, #2c73d2);
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.owv-app-header-logo { width: 22px; height: 5px; background: rgba(255,255,255,0.88); border-radius: 3px; }
.owv-app-header-space { flex: 1; }
.owv-app-header-icon { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }

.owv-app-banner {
    margin: 5px;
    background: linear-gradient(135deg, rgba(95,10,135,0.1), rgba(44,115,210,0.1));
    border-radius: 5px;
    padding: 7px;
    min-height: 32px;
}

.owv-app-banner-title { height: 5px; background: rgba(95,10,135,0.45); border-radius: 3px; width: 72%; margin-bottom: 3px; }
.owv-app-banner-sub { height: 3px; background: #e5e7eb; border-radius: 2px; width: 50%; }

.owv-app-row {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 7px;
    border-bottom: 1px solid #f3f4f6;
}

.owv-app-icon { width: 14px; height: 14px; background: linear-gradient(135deg, #5f0a87, #2c73d2); border-radius: 3px; flex-shrink: 0; }
.owv-app-text { flex: 1; }
.owv-app-text-line { height: 4px; background: #e5e7eb; border-radius: 2px; margin-bottom: 2px; }
.owv-app-text-line-sm { width: 55%; margin-bottom: 0; height: 3px; }

.owv-phone-bottom { height: 12px; display: flex; align-items: center; justify-content: center; }
.owv-phone-bottom::before { content: ''; width: 20px; height: 3px; background: rgba(255,255,255,0.18); border-radius: 2px; }


/* ---------------------------------------------------------------
   3. DASHBOARD — Analytics panel
--------------------------------------------------------------- */
.owv-dashboard {
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.owv-db-topbar {
    background: #0f172a;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 7px;
    flex-shrink: 0;
}

.owv-db-topbar-logo { width: 28px; height: 6px; background: linear-gradient(90deg, #c084fc, #60a5fa); border-radius: 3px; }
.owv-db-topbar-space { flex: 1; }
.owv-db-topbar-avatar { width: 14px; height: 14px; background: rgba(255,255,255,0.15); border-radius: 50%; }

.owv-db-body { display: flex; flex: 1; overflow: hidden; }

.owv-db-sidebar {
    width: 28px;
    background: #1e1b4b;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.owv-db-nav-item { height: 14px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.owv-db-nav-item.active { background: linear-gradient(90deg, #5f0a87, #2c73d2); }

.owv-db-main { flex: 1; background: #f8fafc; padding: 7px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }

.owv-db-kpis { display: flex; gap: 4px; flex-shrink: 0; }
.owv-db-kpi { flex: 1; background: #fff; border: 1px solid #e5e7eb; border-radius: 5px; padding: 5px; }
.owv-db-kpi-val { height: 8px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 3px; width: 65%; margin-bottom: 3px; }
.owv-db-kpi-lbl { height: 3px; background: #e5e7eb; border-radius: 2px; width: 80%; }

.owv-db-chart { flex: 1; background: #fff; border: 1px solid #e5e7eb; border-radius: 5px; padding: 6px; display: flex; flex-direction: column; overflow: hidden; }
.owv-db-chart-title { height: 4px; background: #e5e7eb; border-radius: 2px; width: 32%; margin-bottom: 8px; }
.owv-db-bars { display: flex; align-items: flex-end; gap: 3px; flex: 1; }
.owv-db-bar { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, rgba(95,10,135,0.55), rgba(44,115,210,0.45)); min-height: 4px; }
.owv-db-bar:nth-child(even) { background: linear-gradient(180deg, rgba(44,115,210,0.38), rgba(96,165,250,0.3)); }
.owv-db-bar:nth-child(4) { background: linear-gradient(180deg, #5f0a87, #2c73d2); }

.owv-db-table { flex-shrink: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 5px; overflow: hidden; }
.owv-db-row { display: flex; align-items: center; gap: 5px; padding: 4px 6px; border-bottom: 1px solid #f3f4f6; }
.owv-db-row:last-child { border-bottom: none; }
.owv-db-row-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(90deg, #5f0a87, #2c73d2); flex-shrink: 0; }
.owv-db-row-cell { height: 3px; background: #e5e7eb; border-radius: 2px; }


/* ---------------------------------------------------------------
   4. E-COMMERCE — Product grid
--------------------------------------------------------------- */
.owv-ecommerce {
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.owv-ec-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.owv-ec-logo { width: 26px; height: 6px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 3px; }
.owv-ec-searchbar { flex: 1; height: 14px; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 12px; }
.owv-ec-cart { width: 20px; height: 14px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 3px; }

.owv-ec-body { display: flex; flex: 1; overflow: hidden; }

.owv-ec-sidebar {
    width: 38px;
    background: #fafafa;
    border-right: 1px solid #e5e7eb;
    padding: 6px 5px;
    flex-shrink: 0;
}

.owv-ec-filter-head { height: 4px; background: #9ca3af; border-radius: 2px; margin-bottom: 6px; width: 80%; }
.owv-ec-filter-row { display: flex; align-items: center; gap: 3px; margin-bottom: 4px; }
.owv-ec-check { width: 6px; height: 6px; border: 1px solid #d1d5db; border-radius: 1px; flex-shrink: 0; }
.owv-ec-check.on { background: #5f0a87; border-color: #5f0a87; }
.owv-ec-check-lbl { height: 3px; background: #e5e7eb; border-radius: 2px; flex: 1; }

.owv-ec-grid { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 6px; align-content: start; overflow: hidden; }
.owv-ec-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 5px; overflow: hidden; }
.owv-ec-thumb { height: 30px; background: linear-gradient(135deg, rgba(95,10,135,0.12), rgba(44,115,210,0.12)); }
.owv-ec-info { padding: 4px; }
.owv-ec-name { height: 4px; background: #e5e7eb; border-radius: 2px; width: 88%; margin-bottom: 3px; }
.owv-ec-price { height: 6px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 3px; width: 36%; margin-bottom: 4px; }
.owv-ec-add { height: 10px; background: rgba(95,10,135,0.1); border: 1px solid rgba(95,10,135,0.18); border-radius: 3px; }


/* ---------------------------------------------------------------
   5. REDESIGN — Before / After split
--------------------------------------------------------------- */
.owv-redesign {
    display: flex;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #fff;
}

.owv-before, .owv-after { flex: 1; display: flex; flex-direction: column; }

.owv-panel-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
}

.owv-before .owv-panel-label { background: #6b7280; color: #fff; }
.owv-after .owv-panel-label { background: linear-gradient(90deg, #5f0a87, #2c73d2); color: #fff; }

.owv-before-body { flex: 1; background: #eceff1; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.owv-before-nav { height: 12px; background: #9ca3af; border-radius: 3px; }
.owv-before-hero { height: 30px; background: #c9d0da; border-radius: 4px; }
.owv-before-row { display: flex; gap: 4px; }
.owv-before-card { flex: 1; height: 22px; background: #d4d8df; border-radius: 3px; border: 1px solid #c5cad1; }

.owv-redesign-divider {
    width: 22px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
    z-index: 1;
}

.owv-redesign-divider i { font-size: 10px; color: var(--primary); }

.owv-after-body { flex: 1; background: #fff; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.owv-after-nav { height: 12px; background: linear-gradient(90deg, #5f0a87, #2c73d2); border-radius: 3px; }
.owv-after-hero { height: 30px; background: linear-gradient(135deg, rgba(95,10,135,0.14), rgba(44,115,210,0.14)); border: 1px solid rgba(95,10,135,0.15); border-radius: 4px; }
.owv-after-row { display: flex; gap: 4px; }
.owv-after-card { flex: 1; height: 22px; background: linear-gradient(135deg, rgba(95,10,135,0.07), rgba(44,115,210,0.07)); border: 1px solid rgba(95,10,135,0.14); border-radius: 3px; }


/* ---------------------------------------------------------------
   6. DESIGN SYSTEM — Palette / Type / Components
--------------------------------------------------------------- */
.owv-design-system {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.owv-ds-label {
    font-size: 9px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

/* Color palette */
.owv-ds-palette { display: flex; gap: 5px; }
.owv-ds-color-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.owv-ds-swatch { width: 100%; height: 22px; border-radius: 5px; }
.owv-ds-swatch-hex { font-size: 7px; color: #9ca3af; font-family: monospace; text-align: center; }

/* Typography */
.owv-ds-type-row { display: flex; align-items: baseline; gap: 8px; }
.owv-ds-type-item { font-family: var(--font-secondary); font-weight: 800; line-height: 1; }
.owv-ds-type-xl { font-size: 22px; color: #111827; }
.owv-ds-type-lg { font-size: 16px; color: #374151; }
.owv-ds-type-md { font-size: 12px; color: #6b7280; }
.owv-ds-type-sm { font-size: 9px; color: #9ca3af; }

/* Components */
.owv-ds-comp-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

.owv-ds-btn { background: linear-gradient(90deg, #5f0a87, #2c73d2); color: #fff; border-radius: 20px; padding: 4px 10px; font-size: 9px; font-weight: 700; white-space: nowrap; }
.owv-ds-btn-ghost { border: 1.5px solid #5f0a87; color: #5f0a87; border-radius: 20px; padding: 3px 9px; font-size: 9px; font-weight: 700; }
.owv-ds-input { height: 18px; width: 64px; background: #f7f9fc; border: 1.5px solid #e5e7eb; border-radius: 4px; }
.owv-ds-tag { background: rgba(95,10,135,0.08); color: #5f0a87; border: 1px solid rgba(95,10,135,0.18); border-radius: 10px; padding: 2px 8px; font-size: 9px; font-weight: 600; }

/* Spacing scale */
.owv-ds-space-row { display: flex; align-items: flex-end; gap: 4px; }
.owv-ds-space { background: linear-gradient(135deg, rgba(95,10,135,0.18), rgba(44,115,210,0.18)); border-radius: 2px; border: 1px solid rgba(95,10,135,0.12); }


/* Responsive */
@media (max-width: 767px) {
    .owv-mobile { min-height: 180px; }
    .owv-phone-main { width: 76px; }
    .owv-phone-secondary { width: 58px; transform: translateX(-10px) translateY(10px) scale(0.93); }
}
