: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
   ========================================================================== */

.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;
}

.egf-hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: egfRingPulse 4s ease-in-out infinite;
}

.egf-ring-1 {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
}

.egf-ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(249, 115, 22, 0.1);
    animation-delay: 1s;
    animation-duration: 5s;
}

@keyframes egfRingPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.egf-hub-core {
    width: 110px;
    height: 110px;
    background: #fff;
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow:
        0 0 0 6px rgba(139, 92, 246, 0.06),
        0 20px 40px rgba(139, 92, 246, 0.12);
    animation: egfHubFloat 6s ease-in-out infinite;
}

@keyframes egfHubFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.egf-hub-svg {
    width: 46px;
    height: 46px;
}

.egf-hub-label {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    font-family: monospace;
}

/* Satellite Nodes */
.egf-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 3;
}

.egf-node-card {
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

.egf-node-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
}

.egf-node-card i {
    font-size: 18px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.egf-node-card span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(0,0,0,0.5);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Node connector lines (SVG-less approach using pseudo-elements) */
.egf-node-connector {
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    height: 1px;
    flex-shrink: 0;
}

/* Node positions - radial layout around center */
.egf-node-1 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
}
.egf-node-1 .egf-node-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.egf-node-2 {
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}
.egf-node-2 .egf-node-connector {
    width: 36px;
    height: 1px;
}

.egf-node-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
}
.egf-node-3 .egf-node-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(0deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.egf-node-4 {
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}
.egf-node-4 .egf-node-connector {
    width: 36px;
    height: 1px;
    background: linear-gradient(270deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.egf-node-4 .egf-node-card {
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.06);
}

.egf-node-4 .egf-node-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.1);
}

/* Stat Pills */
.egf-stat {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.08);
}

.egf-stat 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;
}

.egf-stat span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.egf-stat-tl {
    top: 10%;
    left: 18%;
    animation: egfStatFloat 5s ease-in-out infinite;
}

.egf-stat-br {
    bottom: 10%;
    right: 18%;
    animation: egfStatFloat 5s ease-in-out infinite 1.5s;
}

@keyframes egfStatFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- Right: Content ---- */
.egf-content {
    padding-left: 20px;
}

.egf-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: #0f0f1a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.egf-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Numbered Pillars */
.egf-pillars {
    margin: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.egf-pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    cursor: default;
}

.egf-pillar:last-child {
    border-bottom: none;
}

.egf-pillar:hover {
    padding-left: 8px;
}

.egf-pillar-num {
    font-size: 32px;
    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;
    flex-shrink: 0;
    width: 48px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.egf-pillar:hover .egf-pillar-num {
    opacity: 1;
}

.egf-pillar-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f0f1a;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.egf-pillar-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.egf-cta {
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .egf-visual {
        max-width: 400px;
        aspect-ratio: 1 / 1;
    }

    .egf-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .egf-hub-core {
        width: 90px;
        height: 90px;
    }

    .egf-hub-svg {
        width: 36px;
        height: 36px;
    }

    .egf-ring-1 { width: 130px; height: 130px; }
    .egf-ring-2 { width: 180px; height: 180px; }
}

@media (max-width: 575px) {
    .egf-node-card {
        padding: 8px 12px;
        min-width: 70px;
    }

    .egf-node-card i { font-size: 14px; }
    .egf-node-card span { font-size: 8px; }

    .egf-stat strong { font-size: 18px; }
    .egf-stat span { font-size: 8px; }

    .egf-title { letter-spacing: -1px; }

    .egf-pillars { margin: 24px 0; }
}

/* ==========================================================================
   ENTERPRISE CTA BANNER SECTION
   ========================================================================== */

.ent-cta-section {
    background: #08090f;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* 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: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* 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: 32px;
}

.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, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

/* 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: 680px;
    margin: 0 auto 48px;
}

/* Buttons */
.ent-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.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);
}

/* Metrics bar */
.ent-cta-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    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: 28px 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-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;
    }
}