:root {
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --orange: #f97316;
    --teal: #14b8a6;
    --dark: #0f0f1a;
    --text-muted: #4b5563;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.ht-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   LOGO HERO SECTION
   ========================================================================== */

/* ==========================================================================
   PRODUCT LABEL DESIGNING HERO SECTION (NEW)
   ========================================================================== */

/* ---- Hero Container ---- */
.plabel-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #fdfdff;
}

/* Background Layer */
.plabel-hero-bg {
    background-image: url('../../images/logo-designing/label/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Animated orbs */
.plabel-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.plabel-orb-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    animation: plabelOrb1 10s ease-in-out infinite;
}

.plabel-orb-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -150px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    animation: plabelOrb2 12s ease-in-out infinite 2s;
}

.plabel-orb-3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    animation: plabelOrb2 9s ease-in-out infinite 1s;
}

@keyframes plabelOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes plabelOrb2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}

/* Dot grid overlay */
.plabel-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ---- Hero Layout ---- */
.plabel-hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.plabel-hero-content {
    flex: 1;
    min-width: 420px;
}

.plabel-hero-visual {
    flex: 1;
    min-width: 420px;
    position: relative;
}

/* ---- Eyebrow ---- */
.plabel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(249, 115, 22, 0.9);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.plabel-eyebrow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: plabelDotPulse 2s ease-in-out infinite;
}

@keyframes plabelDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* ---- Hero Title ---- */
.plabel-hero-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #0c0e1a;
    margin-bottom: 24px;
}

/* Gradient text */
.plabel-grad-text {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ---- Hero Description ---- */
.plabel-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 560px;
}

/* ---- Feature Pills ---- */
.plabel-feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.plabel-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.plabel-pill:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.plabel-pill i {
    font-size: 12px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- CTA Buttons ---- */
.plabel-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.plabel-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(109, 44, 249, 0.35);
    letter-spacing: -0.2px;
}

.plabel-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(109, 44, 249, 0.5);
    color: #fff;
}

.plabel-btn-primary i {
    transition: transform 0.3s ease;
}

.plabel-btn-primary:hover i {
    transform: translateX(4px);
}

.plabel-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.plabel-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Trust Strip ---- */
.plabel-trust-strip {
    display: flex;
    align-items: center;
    gap: 0;
}

.plabel-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plabel-trust-item strong {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.plabel-trust-item span {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plabel-trust-sep {
    width: 1px;
    height: 36px;
    background: rgba(0,0,0,0.08);
    margin: 0 24px;
    flex-shrink: 0;
}

/* =============================================================
   LABEL STUDIO UI (HERO VISUAL)
   ============================================================= */

.plabel-studio-ui {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

/* Window Frame */
.plabel-window {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.02),
        0 40px 80px rgba(0,0,0,0.12),
        0 0 60px rgba(139,92,246,0.04);
    animation: plabelFloat 7s ease-in-out infinite;
}

@keyframes plabelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Title Bar */
.plabel-window-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: #f8f9fc;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.plabel-win-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.plabel-win-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wd-red    { background: #ff5f56; }
.wd-yellow { background: #ffbd2e; }
.wd-green  { background: #27c93f; }

.plabel-win-title {
    flex: 1;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.3px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    text-align: center;
}

.plabel-win-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.plabel-win-actions span {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plabel-win-actions span:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* Toolbar */
.plabel-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plabel-tb-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.plabel-tb-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.plabel-tb-btn:hover, .plabel-tb-btn.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
}

.plabel-tb-sep {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,0.08);
    margin: 0 4px;
}

.plabel-tb-label {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    font-family: monospace;
    letter-spacing: 0.3px;
}

.plabel-tb-actions {
    margin-left: auto;
}

.plabel-export-btn {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.plabel-export-btn:hover {
    background: rgba(249, 115, 22, 0.15);
}

/* Canvas Area — 3-column layout */
.plabel-canvas-area {
    display: grid;
    grid-template-columns: 130px 1fr 120px;
    height: 300px;
}

/* Left: Layers Panel */
.plabel-layers-panel {
    background: #f8f9fc;
    border-right: 1px solid rgba(0,0,0,0.06);
    padding: 12px 10px;
    overflow: hidden;
}

.plabel-panel-title {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.plabel-layer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 2px;
     background: rgba(139, 92, 246, 0.1);
     
}

.plabel-layer:hover {
    background: rgba(255,255,255,0.04);
}

.plabel-layer.active {
    background: rgba(139, 92, 246, 0.1);
}

.plabel-layer i {
    font-size: 9px;
    color: #000;
    flex-shrink: 0;
}

.plabel-layer.active i {
    color: var(--dark);
}

.plabel-layer span {
    font-size: 10px;
    color: #000;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.plabel-layer.active span {
    color: #000;
}

.plabel-layer-lock {
    font-size: 8px !important;
    color: rgba(255,255,255,0.15) !important;
}

.plabel-variant {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 2px;
}

.plabel-variant:hover {
    background: rgba(255,255,255,0.04);
}

.plabel-variant.active {
    background: rgba(249, 115, 22, 0.08);
}

.plabel-variant-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.15);
}

.plabel-variant span {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}

.plabel-variant.active span {
    color: rgba(255,255,255,0.7);
}

/* Center: Preview / Canvas */
.plabel-preview-area {
    background: #ffffff;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.plabel-canvas-bg {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* The CSS Label Card Mockup */
.plabel-label-mockup {
    position: relative;
}

.plabel-label-card {
    width: 110px;
    background: linear-gradient(160deg, #fdf8f0 0%, #f0ece3 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 0 0 1px rgba(200, 169, 122, 0.3);
    animation: plabelCardFloat 5s ease-in-out infinite;
    position: relative;
}

@keyframes plabelCardFloat {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

.plabel-label-topband {
    height: 8px;
    background: linear-gradient(90deg, #c8a97a, #d4b992, #c8a97a);
}

.plabel-label-brand {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 5px;
    text-align: center;
    color: #2d2d2d;
    padding: 12px 8px 4px;
    font-family: Georgia, serif;
}

.plabel-label-product {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: #4a3728;
    padding: 0 8px 8px;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1.2;
}

.plabel-label-ornament {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px 8px;
    justify-content: center;
}

.plabel-label-ornament span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a97a);
}

.plabel-label-ornament span:last-child {
    background: linear-gradient(90deg, #c8a97a, transparent);
}

.plabel-label-ornament i {
    font-size: 8px;
    color: #c8a97a;
}

.plabel-label-detail {
    font-size: 5.5px;
    font-weight: 700;
    text-align: center;
    color: #7a6450;
    letter-spacing: 2px;
    padding: 0 8px 10px;
}

.plabel-label-barcode {
    padding: 8px 10px 6px;
    border-top: 1px solid rgba(200,169,122,0.3);
}

.plabel-barcode-lines {
    display: flex;
    gap: 1px;
    align-items: flex-end;
    height: 24px;
    justify-content: center;
    margin-bottom: 3px;
}

.plabel-barcode-lines span {
    width: 1.5px;
    background: #2d2d2d;
    flex-shrink: 0;
}

.plabel-barcode-lines span:nth-child(odd) { height: 100%; }
.plabel-barcode-lines span:nth-child(even) { height: 75%; }
.plabel-barcode-lines span:nth-child(3) { height: 60%; }
.plabel-barcode-lines span:nth-child(7) { height: 85%; }
.plabel-barcode-lines span:nth-child(12) { height: 65%; }

.plabel-barcode-num {
    font-size: 5px;
    text-align: center;
    color: #5a4a3a;
    font-family: monospace;
    letter-spacing: 1px;
}

.plabel-label-bottomband {
    height: 8px;
    background: linear-gradient(90deg, #c8a97a, #d4b992, #c8a97a);
}

/* Label shadow */
.plabel-label-shadow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 90%;
    height: 20px;
    background: rgba(0,0,0,0.4);
    filter: blur(12px);
    border-radius: 50%;
}

/* Canvas status bar */
.plabel-canvas-statusbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 14px;
    background: #f8f9fc;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 9px;
    color: #94a3b8;
    font-family: monospace;
    letter-spacing: 0.3px;
}

/* Right: Properties Panel */
.plabel-props-panel {
    background: #f8f9fc;
    border-left: 1px solid rgba(0,0,0,0.06);
    padding: 12px 10px;
    overflow: hidden;
}

.plabel-prop-group {
    margin-bottom: 10px;
}

.plabel-prop-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.plabel-prop-value {
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    font-family: monospace;
}

.plabel-prop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.plabel-ptag {
    font-size: 8px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.plabel-ptag.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--purple);
}

.plabel-color-row {
    display: flex;
    gap: 4px;
}

.plabel-color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.plabel-export-ready {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 5px 8px;
    border-radius: 6px;
    margin-top: 12px;
    letter-spacing: 0.3px;
}

.plabel-export-ready i {
    font-size: 10px;
}

/* ---- Floating Badges ---- */
.plabel-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
}

.plabel-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.plabel-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.plabel-badge-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #0f0f1a;
}

.plabel-badge-text span {
    font-size: 10px;
    color: #6b7280;
}

.plabel-badge-1 {
    top: -20px;
    left: -16px;
    animation: plabelBadge1 5s ease-in-out infinite;
}

.plabel-badge-2 {
    bottom: -20px;
    right: -16px;
    animation: plabelBadge2 6s ease-in-out infinite 1s;
}

@keyframes plabelBadge1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes plabelBadge2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .plabel-canvas-area {
        grid-template-columns: 110px 1fr 100px;
    }

    .plabel-hero-visual {
        min-width: 380px;
    }
}

@media (max-width: 991px) {
    .plabel-hero {
        padding: 80px 0 60px;
    }

    .plabel-hero-content,
    .plabel-hero-visual {
        min-width: 100%;
        text-align: center;
    }

    .plabel-hero-desc {
        margin: 0 auto 32px;
    }

    .plabel-feature-pills {
        justify-content: center;
    }

    .plabel-hero-cta {
        justify-content: center;
    }

    .plabel-trust-strip {
        justify-content: center;
    }

    .plabel-studio-ui {
        max-width: 500px;
    }

    .plabel-badge-1, .plabel-badge-2 {
        display: none;
    }
}

@media (max-width: 575px) {
    .plabel-hero-title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .plabel-canvas-area {
        grid-template-columns: 100px 1fr;
    }

    .plabel-props-panel {
        display: none;
    }

    .plabel-trust-strip {
        flex-wrap: wrap;
        gap: 16px;
    }

    .plabel-trust-sep {
        display: none;
    }

    .plabel-trust-item {
        align-items: center;
    }
}

/* ========================================================================== */

.logo-hero {
    background: linear-gradient(266deg, rgba(255, 102, 51, 0.08) -1.18%, rgba(109, 44, 249, 0) 96.14%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.logo-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(109, 44, 249, 0.05) 0%, rgba(148, 59, 196, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.logo-hero .container {
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-col-content {
    flex: 1;
    min-width: 450px;
}

.hero-col-visual {
    flex: 1;
    min-width: 450px;
    position: relative;
}

.hero-subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 24px;
    background: rgba(139, 92, 246, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

.hero-subheading::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--orange);
}

.hero-title {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ===================================================
   ENTERPRISE DASHBOARD UI (HERO VISUAL)
   =================================================== */
.enterprise-dashboard-ui {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

/* Dashboard Frame (like a macOS/Windows app window) */
.dash-frame {
    background: #10121e;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 30px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(139, 92, 246, 0.08);
    animation: dashFloat 6s ease-in-out infinite;
}

@keyframes dashFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Title Bar */
.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #0c0e1a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }

.dash-title {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Dashboard Body */
.dash-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Dashboard Panel (generic) */
.dash-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.dash-panel:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.panel-head {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Primary Panel: Logo Safe Zone */
.panel-preview {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-preview.grid-bg {
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Safe Zone Box */
.safe-zone-box {
    position: relative;
    padding: 20px;
    border: 1px dashed rgba(249, 115, 22, 0.4);
    border-radius: 8px;
}

.brand-master-logo {
    width: 72px;
    height: 72px;
    display: block;
}

/* Safe Zone Guide Lines */
.sz-line {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sz-top    { top: -1px;   left: 0; right: 0; border-top: 1px dashed rgba(249,115,22,0.3); }
.sz-bottom { bottom: -1px; left: 0; right: 0; border-bottom: 1px dashed rgba(249,115,22,0.3); }
.sz-left   { left: -1px; top: 0; bottom: 0; border-left: 1px dashed rgba(249,115,22,0.3); flex-direction: column; }
.sz-right  { right: -1px; top: 0; bottom: 0; border-right: 1px dashed rgba(249,115,22,0.3); flex-direction: column; }

.sz-line span {
    font-size: 8px;
    font-weight: 700;
    color: var(--orange);
    background: #10121e;
    padding: 1px 3px;
    border-radius: 2px;
    font-family: monospace;
}

/* Secondary Row: Two Half Panels */
.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


/* Typography List */
.typo-list {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.typo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.typo-item strong {
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    width: 18px;
    flex-shrink: 0;
}

.typo-item span {
    color: rgba(255,255,255,0.45);
    font-family: monospace;
}

/* Color Swatch Grid */
.swatch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 12px 14px;
}

.swatch {
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.swatch span {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    padding: 1px 4px;
}

.swatch.c-purple { background: var(--purple); }
.swatch.c-orange { background: var(--orange); }
.swatch.c-dark   { background: #1e293b; border: 1px solid rgba(255,255,255,0.08); }
.swatch.c-gray   { background: #94a3b8; }

/* Floating Live Status Badge */
.dash-live-status {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: rgba(15, 17, 30, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pabFloat 5s ease-in-out infinite 1s;
    white-space: nowrap;
}

.dash-live-status span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.status-dot.pulsing {
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
}

@keyframes statusPulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   TRUSTED BY SECTION
   ========================================================================== */

.logo-trusted-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.trusted-header .trusted-title {
    font-size: 16px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logo-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Marquee logic */
.logo-marquee {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-content img {
    height: 40px;
    width: auto;
    margin: 0 50px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.marquee-content img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-marquee:hover {
    animation-play-state: paused;
}

/* ==========================================================================
   LOGO ABOUT SECTION
/* ==========================================================================
   PREMIUM ABOUT SECTION (DARK THEME BOX)
   ========================================================================== */

/* ==========================================================================
   ENTERPRISE GOVERNANCE FRAMEWORK SECTION
   ========================================================================== */

.egf-section {
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.egf-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06), transparent 70%);
    pointer-events: none;
}

.egf-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04), transparent 70%);
    pointer-events: none;
}

/* Label */
.egf-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
}

.egf-label::before,
.egf-label::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--purple);
    opacity: 0.5;
}

/* ---- Left: Visual ---- */
.egf-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid BG */
.egf-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.08);
    box-shadow: 0 4px 40px rgba(139, 92, 246, 0.05);
}

/* Central Hub */
.egf-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ==========================================================================
   LABEL DESIGN PROCESS SECTION (LDP) - REDESIGNED
   ========================================================================== */

.ldp-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}

/* Background split */
.ldp-bg-split {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
}

.ldp-bg-left {
    flex: 1;
    background: #fdfdff;
    position: relative;
}

.ldp-bg-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.ldp-bg-right {
    flex: 1;
    background: #fff;
}

/* Row Layout */
.ldp-row {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.ldp-left {
    flex: 1;
    min-width: 480px;
    position: relative;
}

.ldp-right {
    flex: 1;
    min-width: 480px;
}

/* =============================================================
   LEFT: SHOWCASE PANEL
   ============================================================= */
.ldp-showcase-wrap {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.ldp-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.ldp-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    position: relative;
}

.ldp-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: ldpPulse 2s ease-out infinite;
}

@keyframes ldpPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Label Stack */
.ldp-label-stack {
    position: relative;
    height: 320px;
    margin-bottom: 40px;
}

.ldp-label-card {
    position: absolute;
    width: 280px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.ldp-card-inner {
    background: #12131e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.ldp-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), #b794f4);
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Active/Hover states for stack */
.ldp-card-beauty { z-index: 3; bottom: 0; left: 0; }
.ldp-card-bev { z-index: 2; bottom: 20px; left: 40px; opacity: 0.6; transform: scale(0.95); }
.ldp-card-wellness { z-index: 1; bottom: 40px; left: 80px; opacity: 0.3; transform: scale(0.9); }

.ldp-label-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

/* Card Previews */
.ldp-card-preview {
    height: 180px;
    background: #1a1c2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.ldp-card-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15), transparent 70%);
}

.ldp-card-preview-bev::before { background: radial-gradient(circle at center, rgba(22, 163, 74, 0.15), transparent 70%); }
.ldp-card-preview-well::before { background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2), transparent 70%); }

/* CSS Label Designs */
.ldp-bottle-label {
    width: 80px;
    background: #fff;
    border-radius: 6px;
    padding: 8px 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.ldbl-topstrip { height: 4px; background: #c8a97a; margin-bottom: 6px; }
.ldbl-brand { font-size: 7px; font-weight: 900; letter-spacing: 3px; color: #2d2d2d; margin-bottom: 2px; }
.ldbl-product { font-size: 8px; font-weight: 600; color: #4a3728; font-style: italic; margin-bottom: 4px; }
.ldbl-divider { display: flex; align-items: center; justify-content: center; gap: 3px; margin-bottom: 4px; }
.ldbl-divider span { height: 0.5px; background: #c8a97a; flex: 1; }
.ldbl-divider i { font-size: 5px; color: #c8a97a; }
.ldbl-tags { font-size: 4px; color: #7a6450; letter-spacing: 1px; }
.ldbl-bottomstrip { height: 4px; background: #c8a97a; margin-top: 6px; }

/* Bev Variant */
.ldbl-topstrip-green { background: #16a34a; }
.ldbl-brand-bev { color: #1a2e1a; letter-spacing: 2px; }
.ldbl-product-bev { font-style: normal; font-weight: 800; color: #16a34a; }
.ldbl-divider-bev i { color: #16a34a; }
.ldbl-divider-bev span { background: #16a34a; }

/* Wellness Variant */
.ldbl-topstrip-purple { background: #8b5cf6; }
.ldbl-brand-well { color: #1a0b2e; }
.ldbl-product-well { font-weight: 700; color: #6d28d9; }
.ldbl-divider-well i { color: #8b5cf6; font-size: 4px; }
.ldbl-divider-well span { background: #8b5cf6; }

.ldp-card-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.ldp-meta-item {
    font-size: 9px;
    font-weight: 600;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ldp-meta-dot { font-size: 6px; }

/* Spec Badges */
.ldp-spec-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    z-index: 5;
    animation: ldpBadgeFloat 4s ease-in-out infinite;
}

.ldp-spec-badge i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ldp-spec-badge strong { display: block; font-size: 11px; color: #0f0f1a; }
.ldp-spec-badge span { font-size: 9px; color: #6b7280; }

.ldp-spec-1 { top: 120px; right: -20px; }
.ldp-spec-2 { bottom: 120px; right: 20px; animation-delay: 1s; }

@keyframes ldpBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Row */
.ldp-stats-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ldp-stat { text-align: center; }
.ldp-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #0f0f1a;
    line-height: 1;
    margin-bottom: 4px;
}
.ldp-stat span {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ldp-stat-line { width: 1px; height: 30px; background: rgba(0,0,0,0.08); }

/* =============================================================
   RIGHT: CONTENT & PROCESS
   ============================================================= */
.ldp-content {
    padding-left: 20px;
}

.ldp-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ldp-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--purple);
}

.ldp-title {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    color: #0d0e1a;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.ldp-grad {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ldp-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

/* Steps */
.ldp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ldp-step {
    display: flex;
    gap: 30px;
    position: relative;
}

.ldp-step-icon {
    width: 54px;
    height: 54px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.ldp-step:hover .ldp-step-icon {
    background: #fff;
    border-color: var(--purple);
    color: var(--purple);
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(109, 44, 249, 0.1);
}

.ldp-step-connector {
    position: absolute;
    top: 54px;
    left: 27px;
    width: 1px;
    height: calc(100% - 30px);
    background: #e2e8f0;
    z-index: 1;
}

.ldp-step-body {
    padding-bottom: 40px;
}

.ldp-step-num {
    font-size: 11px;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 6px;
    opacity: 0.6;
}

.ldp-step-body h4 {
    font-size: 19px;
    font-weight: 800;
    color: #0d0e1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.ldp-step-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
}

.ldp-step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ldp-step-tags span {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
}

.ldp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0d0e1a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ldp-cta-btn:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(109, 44, 249, 0.25);
}

.ldp-cta-btn i {
    transition: transform 0.3s ease;
}

.ldp-cta-btn:hover i { transform: translateX(5px); }

/* Responsive */
@media (max-width: 1199px) {
    .ldp-row { gap: 60px; }
    .ldp-left { min-width: 440px; }
    .ldp-spec-badge { transform: scale(0.9); }
}

@media (max-width: 991px) {
    .ldp-section { padding: 80px 0; }
    .ldp-bg-split { flex-direction: column; }
    .ldp-bg-left { min-height: 600px; order: 2; }
    .ldp-bg-right { order: 1; }
    .ldp-left { min-width: 100%; order: 2; margin-top: 60px; }
    .ldp-right { min-width: 100%; order: 1; }
    .ldp-content { padding-left: 0; }
}

@media (max-width: 575px) {
    .ldp-showcase-wrap { padding: 30px 20px; }
    .ldp-label-card { width: 220px; }
    .ldp-card-preview { height: 140px; }
    .ldp-bottle-label { width: 65px; }
    .ldbl-brand { font-size: 6px; }
    .ldbl-product { font-size: 7px; }
    .ldp-spec-badge { display: none; }
    .ldp-stat strong { font-size: 20px; }
    .ldp-title { letter-spacing: -1px; }
}


/* ==========================================================================
   ENTERPRISE CTA BANNER SECTION
   ========================================================================== */

.ent-cta-section {
    background: #08090f;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Animated radial glows */
.ent-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.ent-cta-glow-l {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
    animation: entGlowPulse 8s ease-in-out infinite;
}

.ent-cta-glow-r {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    animation: entGlowPulse 8s ease-in-out infinite 2s;
}

@keyframes entGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* Dot grid overlay */
.ent-cta-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('https://img.freepik.com/free-vector/gradient-connection-background_23-2150434517.jpg?t=st=1774846367~exp=1774849967~hmac=caf342791854dc3ca9e69c44c085a29e6b50306255ef10f4b8f3541b7dbe5526&w=2000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); */
    /* background-size: 32px 32px; */
    pointer-events: none;
}

/* Row Layout */
.ent-cta-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.ent-cta-col-content {
    flex: 1.2;
}

.ent-cta-col-image {
    flex: 1;
    position: relative;
}

/* Eyebrow */
.ent-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.ent-cta-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    animation: entDotPulse 2s ease-in-out infinite;
}

@keyframes entDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
}

/* Title */
.ent-cta-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

/* Gradient span */
.ent-cta-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sub */
.ent-cta-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.ent-cta-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ent-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(109, 44, 249, 0.35);
    letter-spacing: -0.2px;
}

.ent-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(109, 44, 249, 0.5);
    color: #fff;
}

.ent-cta-btn-primary i {
    transition: transform 0.3s ease;
}

.ent-cta-btn-primary:hover i {
    transform: translateX(4px);
}

.ent-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ent-cta-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- IMAGE COLUMN STYLING ---- */
.ent-cta-image-wrapper {
    position: relative;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.5),
        0 0 40px rgba(139, 92, 246, 0.1);
    animation: entImgFloat 6s ease-in-out infinite;
}

@keyframes entImgFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.ent-cta-image-frame {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ent-cta-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ent-cta-image-wrapper:hover img {
    transform: scale(1.05);
}

.ent-cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 15, 0.4), transparent 60%);
    pointer-events: none;
}

.ent-cta-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(15, 17, 30, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    animation: entBadgePulse 3s ease-in-out infinite;
}

@keyframes entBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ent-cta-img-badge i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ent-cta-img-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ---- BOTTOM BAR STYLING ---- */
.ent-cta-bottom-wrap {
    margin-top: 20px;
}

.ent-cta-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 0;
    margin-bottom: 40px;
}

.ent-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 48px;
}

.ent-metric strong {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.ent-metric span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ent-metric-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* Trust stamps */
.ent-cta-stamps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ent-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ent-stamp:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    color: rgba(255,255,255,0.8);
}

.ent-stamp i {
    color: var(--purple);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .ent-cta-section { padding: 80px 0 60px; }
    
    .ent-cta-row { 
        flex-direction: column; 
        gap: 60px; 
        text-align: center;
        margin-bottom: 60px;
    }

    .ent-cta-col-content { 
        width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ent-cta-sub { margin: 0 auto 40px; }
    
    .ent-cta-btns { justify-content: center; }

    .ent-cta-col-image { width: 100%; max-width: 500px; }
    
    .ent-cta-title { letter-spacing: -1.5px; }

    .ent-metric { padding: 0 28px; }

    .ent-metric strong { font-size: 30px; }
}

@media (max-width: 767px) {
    .ent-cta-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 20px;
    }

    .ent-metric {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .ent-metric-divider { display: none; }

    .ent-cta-title { letter-spacing: -1px; }
}

@media (max-width: 575px) {
    .ent-cta-btns { flex-direction: column; align-items: stretch; }
    .ent-cta-btn-primary, .ent-cta-btn-ghost { justify-content: center; }
    .ent-cta-metrics { grid-template-columns: 1fr; }
    .ent-metric { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .ent-metric:last-child { border-bottom: none; }
}

.premium-about-section {
    background: #fff;
    position: relative;
    z-index: 1;
}

.premium-about-box {
    background: #0f0f1a;
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Glowing Orbs */
.pab-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.pab-glow-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
}

.pab-glow-2 {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 70%);
}

/* Image Wrapper */
.pab-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pab-image-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.pab-image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pab-image-wrapper:hover .pab-image-frame img {
    transform: scale(1.05);
}

.pab-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 15, 26, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Status Card */
.pab-status-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: pabFloat 4s ease-in-out infinite;
}

.pab-status-card .status-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pab-status-card .status-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.pab-status-card .status-info span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

@keyframes pabFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Content Styling */
.pab-content {
    color: #fff;
}

.pab-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pab-eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--purple);
}

.pab-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -1px;
}

.pab-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

/* Feature Grid */
.pab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pab-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pab-feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.pab-f-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pab-feature-card:hover .pab-f-icon {
    background: var(--purple);
    color: #fff;
}

.pab-feature-card span {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.pab-cta {
    margin-top: 10px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 991px) {
    .premium-about-box {
        padding: 50px 30px;
    }

    .pab-status-card {
        right: 10px;
        bottom: -20px;
    }
    
    .pab-features {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 80px 0;
    }

    .hero-col-content,
    .hero-col-visual {
        min-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .video-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .ps-lg-5 {
        padding-left: 15px !important;
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .premium-about-box {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .pab-status-card {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .pab-title {
        font-size: 28px;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

/* ==========================================================================
   LABEL DESIGN SECTION (DARK THEME)
   ========================================================================== */

.label-design-section {
    background: #0f0f1a url('../../images/logo-designing/label-bg.png') no-repeat center center / cover;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.label-design-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f0f1a 0%, rgba(15, 15, 26, 0.7) 100%);
    z-index: 0;
}

.label-design-section .container {
    position: relative;
    z-index: 1;
}

.label-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.label-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
}

/* Tags */
.label-tags {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.label-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.label-tag i {
    font-size: 20px;
    color: #fff;
}

/* Glassmorphic Highlight */
.label-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
}

.highlight-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-inner i {
    font-size: 22px;
    color: #3b82f6;
    /* Blue check as in reference */
    margin-top: 3px;
}

.highlight-inner p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.label-cta {
    min-width: 240px;
    background: linear-gradient(to right, #1e40af, #2563eb) !important;
    /* Premium blue gradient */
    border: none !important;
    padding: 16px 32px !important;
}

.label-assets-wrap {
    perspective: 1000px;
}

.label-main-img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s ease;
}

.label-main-img:hover {
    transform: rotateY(-5deg) scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .label-design-section {
        background-position: left center;
    }

    .label-design-section::before {
        background: rgba(15, 15, 26, 0.9);
    }

    .label-content {
        text-align: center;
    }

    .label-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .label-tags {
        justify-content: center;
    }

    .label-highlight {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   PRODUCT LABEL SCALE SECTION (PREMIUM DARK)
   ========================================================================== */

.label-scale-section {
    background: #0f0f1a;
    position: relative;
    z-index: 1;
}

.label-scale-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image: url('https://img.freepik.com/free-vector/gradient-particle-wave-background_23-2150434514.jpg?t=st=1774609789~exp=1774613389~hmac=58be5f4c7e86cbe5ac8d5a85ad754c77ebfc8cade4243fae247e3f581c67374a&w=1480'); */
    background-image: url('https://img.freepik.com/premium-photo/block-chain-data-flow-through-information-tunnels_494516-2097.jpg?w=1480');
    /* background: radial-gradient(circle at top, rgba(139, 92, 246, 0.05), transparent 70%); */
    z-index: -1;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    background-attachment: fixed;
}

.scale-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

.scale-subtitle {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   ENTERPRISE NODE CARDS
   ========================================================================== */
.enterprise-node-card {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px 40px;
    position: relative;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    text-align: left;
}

.enterprise-node-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 60%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.enterprise-node-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(139, 92, 246, 0.1) inset;
}

.enterprise-node-card:hover::before {
    opacity: 1;
}

.featured-node {
    background: linear-gradient(145deg, #13151f 0%, #0a0b10 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.featured-node::before {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 60%);
    opacity: 1;
}

.featured-node:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(59, 130, 246, 0.15) inset;
}

/* Background Icon Watermark */
.node-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    transition: all 0.5s ease;
    transform: rotate(-15deg);
}

.enterprise-node-card:hover .node-icon-bg {
    color: rgba(139, 92, 246, 0.06);
    transform: rotate(0) scale(1.1);
}

.featured-node:hover .node-icon-bg {
    color: rgba(59, 130, 246, 0.06);
}

/* Animated Top Glow */
.node-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-node .node-glow {
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.enterprise-node-card:hover .node-glow {
    opacity: 1;
    animation: nodeScan 2s linear infinite;
}

@keyframes nodeScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header & Badges */
.node-header {
    margin-bottom: 25px;
}

.node-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    display: inline-block;
}

.badge-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.badge-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.badge-dark { background: linear-gradient(135deg, #475569, #1e293b); }

/* Typography */
.node-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.node-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 25px;
}

.featured-node .node-subtitle {
    color: #93c5fd;
}

.node-divider {
    height: 2px;
    width: 50px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    transition: width 0.3s ease;
}

.enterprise-node-card:hover .node-divider {
    width: 80px;
    background: var(--purple);
}

.featured-node:hover .node-divider {
    background: #3b82f6;
}

.node-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .enterprise-node-card {
        padding: 40px 30px;
    }
}

/* ==========================================================================
   LOGO DESIGN PROCESS SECTION (REDESIGNED)
   ========================================================================== */

.logo-process-section {
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* Left Side: Full Bleed Video */
.process-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: #000;
}

.process-video-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

/* Right Side: Content Wrapper */
.process-content-wrap {
    padding: 100px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.process-content-inner {
    padding-left: 60px;
    padding-right: 30px;
    max-width: 650px;
}

.process-main-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.process-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Modern Steps Redesign */
.modern-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modern-step-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

.modern-step-card:hover {
    background: #fafafa;
    transform: translateX(15px);
}

.step-num-wrap {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.num-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.08);
    line-height: 1;
    z-index: 1;
}

.step-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--purple);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.modern-step-card:hover .step-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    transform: rotate(-5deg);
}

.step-details {
    flex-grow: 1;
}

.step-h {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Connecting Dot Line */
.step-dot-line {
    position: absolute;
    left: 56px;
    top: 95px;
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom, #e2e8f0, #e2e8f0 4px, transparent 4px, transparent 8px);
}

@media (max-width: 991px) {
    .process-video-container {
        min-height: 400px;
    }

    .process-content-inner {
        padding: 60px 20px;
        max-width: 100%;
        text-align: center;
    }

    .modern-step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .modern-step-card:hover {
        transform: translateY(-10px);
    }

    .step-dot-line {
        display: none;
    }

    .step-num-wrap {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   LOGO PORTFOLIO SECTION
   ========================================================================== */

.logo-portfolio-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logo-portfolio-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Section Header --- */
.portfolio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(139, 92, 246, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
}

.portfolio-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.portfolio-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 600px;
}

/* --- Tabs Wrapper --- */
.portfolio-tabs-wrap {
    margin-bottom: 40px;
}

.portfolio-tabs {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: none;
    position: relative;
}

/* Tab Buttons */
.ptab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.ptab-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ptab-btn:hover {
    color: var(--purple);
}

.ptab-btn:hover i {
    transform: scale(1.2);
}

.ptab-btn.active {
    color: var(--purple);
    font-weight: 700;
}

/* Animated bottom indicator bar */
.ptab-indicator-bar {
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
    margin-top: 0;
}

.ptab-indicator {
    position: absolute;
    height: 3px;
    bottom: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #f63 -1.18%, #6d2cf9 96.14%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(109, 44, 249, 0.3);
}

/* --- Portfolio Panels --- */
.portfolio-panels {
    position: relative;
}

.portfolio-panel {
    display: none;
}

.portfolio-panel.active {
    display: block;
    animation: panelFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* --- Logo Cards --- */
.plogo-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
    cursor: pointer;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease;
    /* Stagger animation */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: cardReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger delays for 12 cards */
.portfolio-panel.active .plogo-card:nth-child(1) {
    animation-delay: 0.05s;
}

.portfolio-panel.active .plogo-card:nth-child(2) {
    animation-delay: 0.10s;
}

.portfolio-panel.active .plogo-card:nth-child(3) {
    animation-delay: 0.15s;
}

.portfolio-panel.active .plogo-card:nth-child(4) {
    animation-delay: 0.20s;
}

.portfolio-panel.active .plogo-card:nth-child(5) {
    animation-delay: 0.25s;
}

.portfolio-panel.active .plogo-card:nth-child(6) {
    animation-delay: 0.30s;
}

.portfolio-panel.active .plogo-card:nth-child(7) {
    animation-delay: 0.35s;
}

.portfolio-panel.active .plogo-card:nth-child(8) {
    animation-delay: 0.40s;
}

.portfolio-panel.active .plogo-card:nth-child(9) {
    animation-delay: 0.45s;
}

.portfolio-panel.active .plogo-card:nth-child(10) {
    animation-delay: 0.50s;
}

.portfolio-panel.active .plogo-card:nth-child(11) {
    animation-delay: 0.55s;
}

.portfolio-panel.active .plogo-card:nth-child(12) {
    animation-delay: 0.60s;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.plogo-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(109, 44, 249, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    z-index: 2;
}

/* Hover gradient overlay */
.plogo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(109, 44, 249, 0.04), rgba(249, 115, 22, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.plogo-card:hover::after {
    opacity: 1;
}

.plogo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}

.plogo-card:hover img {
    transform: scale(1.06);
}

/* --- Portfolio CTA --- */
.portfolio-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

/* ==========================================================================
   PORTFOLIO RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ptab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .portfolio-tabs {
        gap: 4px;
    }

    .ptab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .ptab-btn i {
        display: none;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   BUSINESS TOOLS SECTION
   ========================================================================== */

.biz-tools-section {
    background: #fff;
}

.biz-tools-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.biz-tools-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 860px;
}

/* Slider wrapper — positions arrows + track */
.biz-tools-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Scrollable track container (clips overflow) */
.biz-tools-track-outer {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

/* Flex row of cards */
.biz-tools-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual card */
.biz-tool-card {
    flex: 0 0 calc(20% - 16px);
    /* 5 columns: 20% minus gap compensation */
    min-width: 180px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
    border-radius: 24px;
    text-align: left;
}

.biz-tool-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

/* Image container */
.btc-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.biz-tool-card:hover .btc-img-wrap img {
    transform: scale(1.08);
}

/* Card label */
.btc-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.biz-tool-card:hover .btc-label {
    color: #fff;
}

.biz-tool-card span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #64748b;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.biz-tool-card:hover span {
    opacity: 1;
    visibility: visible;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(0);
}



/* "New" badge */
.btc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Card label */
.btc-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: left;
    padding: 0 2px;
}

/* Arrow buttons */
.biz-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.biz-arrow:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    box-shadow: 0 6px 20px rgba(109, 44, 249, 0.3);
}

.biz-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.biz-arrow-prev {
    margin-right: 16px;
}

.biz-arrow-next {
    margin-left: 16px;
}

/* Responsive */
@media (max-width: 1199px) {
    .biz-tool-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 991px) {
    .biz-tool-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 767px) {
    .biz-tool-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
    }

    .biz-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .biz-arrow-prev {
        margin-right: 10px;
    }

    .biz-arrow-next {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .biz-tool-card {
        flex: 0 0 calc(60% - 10px);
    }
}

/* ==========================================================================
   LOGO CTA SECTION
   ========================================================================== */


.logo-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(266deg, rgba(255, 102, 51, 0.08) -1.18%, rgba(109, 44, 249, 0) 96.14%);
    padding: 120px 0;
    text-align: center;

}

/* Floating glow orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: ctaOrbFloat 8s ease-in-out infinite alternate;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(109, 44, 249, 0.18);
    top: -150px;
    left: -150px;
    animation-duration: 9s;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -100px;
    animation-duration: 11s;
    animation-direction: alternate-reverse;
}

.cta-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 13s;
}

@keyframes ctaOrbFloat {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(30px, -20px);
    }
}

.cta-orb-3 {
    animation-name: ctaOrbFloat3;
}

@keyframes ctaOrbFloat3 {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Two Column Layout */
.cta-two-col {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 60px; */
    align-items: center;
    padding: 0px 60px;


}

/* LEFT: Content column */
.cta-col-content {
    text-align: left;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 22px;
    border-radius: 50px;
}

.cta-badge i {
    color: #f97316;
    font-size: 12px;
}

/* Heading */
.cta-heading {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    /* color: #fff; */
    letter-spacing: -1.5px;
}

/* Gradient span */
.cta-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Sub-text */
.cta-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    max-width: 500px;
}

/* Button Group */
.cta-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(109, 44, 249, 0.35);
    position: relative;
    overflow: hidden;
}


.cta-btn-primary:hover {
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(109, 44, 249, 0.5);
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary i,
.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

/* Outline Button */
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgb(140 56 208);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-outline i {
    color: #f97316;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    /* color: #fff; */
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Mini Trust Pills */
.cta-trust-pills {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgb(145 58 199);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-trust-pill i {
    color: #fff;
    /* Green check */
}

/* RIGHT: Image column */
.cta-col-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-img-wrap {
    position: relative;
    width: 100%;
    /* max-width: 500px; */
    /* Soft floating animation for the image to make it premium */
    animation: ctaImgFloat 6s ease-in-out infinite alternate;
}

.cta-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes ctaImgFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

/* ==========================================================================
   CTA RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {
    .cta-two-col {
        padding: 50px 40px;
        gap: 40px;
    }

    .cta-heading {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .logo-cta-section {
        padding: 80px 0;
    }

    .cta-two-col {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
        gap: 50px;
    }

    .cta-col-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-subtext {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn-group {
        justify-content: center;
    }

    .cta-trust-pills {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cta-two-col {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .cta-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 28px;
    }
}

/* ==========================================================================
   LOGO CONTACT FORM SECTION
   ========================================================================== */

.logo_contact-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logo_contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left: Info Side */
.logo_contact-info-inner {
    padding-right: 20px;
}

.logo_contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.logo_contact-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.logo_contact-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.logo_contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo_cf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.logo_cf-icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 44, 249, 0.1);
    color: #6d2cf9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo_cf-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.logo_cf-item p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Right: Form Form */
.logo_contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo_cb-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.logo_form {
    display: block;
}

.logo_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.logo_form-group {
    margin-bottom: 24px;
}

.logo_form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.logo_text-danger {
    color: #ef4444;
}

.logo_form-input,
.logo_form-select,
.logo_form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logo_form-input:focus,
.logo_form-select:focus,
.logo_form-textarea:focus {
    outline: none;
    border-color: #6d2cf9;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 44, 249, 0.1);
}

.logo_form-textarea {
    resize: vertical;
    min-height: 120px;
}

.logo_form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(109, 44, 249, 0.25);
}

.logo_form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 44, 249, 0.4);
}

/* Responsive */
@media (max-width: 1199px) {
    .logo_contact-wrapper {
        gap: 40px;
    }

    .logo_contact-box {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .logo_contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo_contact-info-inner {
        padding-right: 0;
        text-align: center;
    }

    .logo_contact-features {
        align-items: center;
        text-align: left;
    }

    .logo_cf-item {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .logo_form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logo_contact-box {
        padding: 30px 20px;
    }
}




/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testi-section {
    padding: 100px 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}


.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
}

.eyebrow .dot2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.eyebrow .dot3 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 2px;
}

.main-title {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1.08;
}

.main-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lets-talk-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
}

.arc-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -4px;
}

.arc-row svg {
    width: 68px;
    opacity: 0.40;
}

.lets-talk-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lets-talk-text {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: var(--purple);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.lets-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 320px;
    text-align: right;
}

.testi-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.rating-card_testi {
    background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(139, 92, 246, 0.10);
}

.rating-card_testi::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
    opacity: 0.20;
    pointer-events: none;
}

.big-rating {
    font-size: 96px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    z-index: 4;
}

.av2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
    z-index: 3;
}

.av3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    z-index: 2;
}

.av4 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    z-index: 1;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.client-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.rating-tagline {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testi-right {
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    border-radius: 24px;
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.card-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 30px;
    background: var(--purple);
    border-radius: 10px;
}



.card-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex: 1;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.c-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.c-avatar-fb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-info .c-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.author-info .c-role {
    font-size: 12px;
    color: var(--text-muted);
}

.card-rating {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.stars {
    display: flex;
    gap: 2px;
}

.st {
    width: 12px;
    height: 12px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
    background: #E5E7EB;
}

.nav-row {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.faq-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    top: -100px;
    left: -150px;
}

.faq-orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(20, 184, 166, 0.04);
    bottom: -150px;
    right: -100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
}

.faq-dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    position: relative;
}

.faq-dot-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.faq-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    border-radius: 2px;
    margin: auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f0eeff;
    border-radius: 20px;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
    border-color: var(--purple);
    background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-item.active .faq-question span {
    color: var(--purple);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f0ff;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--purple);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.faq-footer-cta {
    margin-top: 50px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-footer-cta p {
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.faq-cta-link {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-cta-link:hover {
    gap: 12px;
    color: var(--purple-dark);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media(max-width:1100px) {
    .testi-grid {
        grid-template-columns: 240px 1fr;
    }
}

@media(max-width:991px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .rating-card {
        min-height: auto;
    }

    .lets-talk-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

@media(max-width:576px) {
    .testi-section {
        padding: 70px 0 0;
    }

    .big-rating {
        font-size: 72px;
    }

    .main-title {
        letter-spacing: -1px;
    }
}