/* ============================================================
   PixiLead Agency Website — Main Stylesheet
   Version: 1.0.0
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --pxl-green:      #1DB954;
    --pxl-dark-green: #0F3D2E;
    --pxl-bg:         #050505;
    --pxl-card:       #111111;
    --pxl-card-2:     #161616;
    --pxl-white:      #FFFFFF;
    --pxl-gray:       #D9D9D9;
    --pxl-gray-dim:   #888888;
    --pxl-glow:       rgba(29, 185, 84, 0.25);
    --pxl-glow-sm:    rgba(29, 185, 84, 0.12);
    --pxl-border:     rgba(255, 255, 255, 0.06);
    --pxl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pxl-radius:     14px;
    --pxl-radius-lg:  20px;
    --pxl-font-head:  'Poppins', sans-serif;
    --pxl-font-body:  'Inter', sans-serif;
    --pxl-container:  1200px;
}

/* ---- Reset & Base ---- */
#pixilead-wrapper,
#pixilead-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#pixilead-wrapper {
    background: var(--pxl-bg);
    color: var(--pxl-white);
    font-family: var(--pxl-font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
#pixilead-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: color var(--pxl-transition);
}
#pixilead-wrapper ul { list-style: none; }
#pixilead-wrapper img { max-width: 100%; height: auto; display: block; }

/* ---- Container ---- */
.pxl-container {
    max-width: var(--pxl-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Common ---- */
.pxl-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.pxl-section-tag {
    display: inline-block;
    background: rgba(29, 185, 84, 0.12);
    border: 1px solid rgba(29, 185, 84, 0.3);
    color: var(--pxl-green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.pxl-section-title {
    font-family: var(--pxl-font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pxl-white);
    margin-bottom: 16px;
}
.pxl-section-sub {
    font-size: 17px;
    color: var(--pxl-gray-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Colors ---- */
.pxl-green { color: var(--pxl-green); }
.pxl-gradient-text {
    background: linear-gradient(135deg, #1DB954, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pxl-green-bg { background: var(--pxl-green); }
.pxl-green-bg-soft { background: rgba(29,185,84,0.15); }

/* ---- Buttons ---- */
.pxl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--pxl-font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--pxl-transition);
    text-decoration: none;
    white-space: nowrap;
}
.pxl-btn-lg { padding: 15px 32px; font-size: 16px; }
.pxl-btn-block { width: 100%; justify-content: center; }

.pxl-btn-primary {
    background: var(--pxl-green);
    color: #000;
    border-color: var(--pxl-green);
}
.pxl-btn-primary:hover {
    background: #25d366;
    border-color: #25d366;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29,185,84,0.35);
}
.pxl-btn-glow {
    box-shadow: 0 4px 20px rgba(29,185,84,0.4);
}
.pxl-btn-glow:hover {
    box-shadow: 0 8px 32px rgba(29,185,84,0.6);
}

.pxl-btn-outline {
    background: transparent;
    color: var(--pxl-white);
    border-color: rgba(255,255,255,0.2);
}
.pxl-btn-outline:hover {
    border-color: var(--pxl-green);
    color: var(--pxl-green);
    transform: translateY(-2px);
}

.pxl-btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.pxl-btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.pxl-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--pxl-transition);
}
.pxl-nav.pxl-nav-scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pxl-border);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.pxl-nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.pxl-logo { display: flex; align-items: center; }
.pxl-logo-img { height: 40px; width: auto; }
.pxl-logo-text {
    font-family: var(--pxl-font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--pxl-white);
    letter-spacing: -0.5px;
}
.pxl-logo-text .pxl-green { color: var(--pxl-green); }

.pxl-nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.pxl-nav-links a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: 6px;
    transition: all var(--pxl-transition);
}
.pxl-nav-links a:hover { color: var(--pxl-green); background: var(--pxl-glow-sm); }
.pxl-nav-cta { margin-left: 8px; }

.pxl-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.pxl-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pxl-white);
    border-radius: 2px;
    transition: all var(--pxl-transition);
}
.pxl-hamburger.pxl-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pxl-hamburger.pxl-open span:nth-child(2) { opacity: 0; }
.pxl-hamburger.pxl-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.pxl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.pxl-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.pxl-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(29,185,84,0.12);
    top: -100px;
    right: -100px;
}
.pxl-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(15,61,46,0.4);
    bottom: 0;
    left: -100px;
}

.pxl-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pxl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29,185,84,0.1);
    border: 1px solid rgba(29,185,84,0.25);
    color: var(--pxl-green);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.pxl-hero-headline {
    font-family: var(--pxl-font-head);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.pxl-hero-sub {
    font-size: 18px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.pxl-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.pxl-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius);
    backdrop-filter: blur(10px);
}
.pxl-stat { text-align: center; flex: 1; }
.pxl-stat-num {
    font-family: var(--pxl-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--pxl-green);
}
.pxl-stat-plus { font-size: 18px; font-weight: 700; color: var(--pxl-green); }
.pxl-stat-label { display: block; font-size: 12px; color: #888; margin-top: 2px; }
.pxl-stat-divider { width: 1px; height: 40px; background: var(--pxl-border); margin: 0 16px; }

/* Hero Visual / Dashboard */
.pxl-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pxl-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29,185,84,0.08);
    animation: pxl-ring-pulse 4s ease-in-out infinite;
}
.pxl-ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.pxl-ring-2 { width: 560px; height: 560px; animation-delay: 1.5s; opacity: 0.5; }

@keyframes pxl-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.pxl-dashboard-card {
    background: var(--pxl-card);
    border: 1px solid rgba(29,185,84,0.15);
    border-radius: var(--pxl-radius);
    padding: 20px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}
.pxl-dash-main {
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(29,185,84,0.1);
}
.pxl-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.pxl-dash-title { font-size: 13px; font-weight: 600; color: #888; }
.pxl-dash-badge {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    animation: pxl-blink 2s ease-in-out infinite;
}
@keyframes pxl-blink { 0%,100%{opacity:1} 50%{opacity:0.6} }

.pxl-dash-metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.pxl-dash-m { display: flex; flex-direction: column; gap: 2px; }
.pxl-dash-m-label { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }
.pxl-dash-m-val { font-family: var(--pxl-font-head); font-size: 22px; font-weight: 700; }
.pxl-dash-m-trend { font-size: 11px; color: var(--pxl-green); font-weight: 600; }

.pxl-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding-top: 8px;
}
.pxl-bar {
    flex: 1;
    background: rgba(29,185,84,0.2);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}
.pxl-bar:hover, .pxl-bar-active { background: var(--pxl-green); }
.pxl-bar span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #666;
    white-space: nowrap;
}

.pxl-dash-small {
    position: absolute;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: pxl-float 3s ease-in-out infinite;
}
.pxl-dash-small-1 { top: -20px; right: -40px; animation-delay: 0s; }
.pxl-dash-small-2 { bottom: 0; left: -60px; animation-delay: 1.5s; }
@keyframes pxl-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.pxl-dash-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pxl-dash-sm-val { font-family: var(--pxl-font-head); font-size: 16px; font-weight: 700; }
.pxl-dash-sm-label { font-size: 11px; color: #888; }

.pxl-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pxl-scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--pxl-green));
    animation: pxl-scroll-pulse 2s ease-in-out infinite;
}
@keyframes pxl-scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.pxl-trust {
    padding: 48px 0;
    border-top: 1px solid var(--pxl-border);
    border-bottom: 1px solid var(--pxl-border);
    background: rgba(255,255,255,0.01);
}
.pxl-trust-headline {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 32px;
}
.pxl-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.pxl-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--pxl-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    transition: all var(--pxl-transition);
    cursor: default;
}
.pxl-trust-item:hover {
    border-color: rgba(29,185,84,0.3);
    color: var(--pxl-green);
    background: rgba(29,185,84,0.06);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.pxl-services { padding: 100px 0; }
.pxl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pxl-service-card {
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--pxl-transition);
    display: flex;
    flex-direction: column;
}
.pxl-service-card:hover {
    border-color: rgba(29,185,84,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pxl-service-card:hover .pxl-card-glow {
    opacity: 1;
}
.pxl-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pxl-green), transparent);
    opacity: 0;
    transition: opacity var(--pxl-transition);
}

.pxl-service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(29,185,84,0.1);
    border: 1px solid rgba(29,185,84,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--pxl-transition);
}
.pxl-service-card:hover .pxl-service-icon-wrap {
    background: rgba(29,185,84,0.18);
    box-shadow: 0 0 20px rgba(29,185,84,0.2);
}
.pxl-service-card h3 {
    font-family: var(--pxl-font-head);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pxl-white);
}
.pxl-service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.pxl-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pxl-green);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    transition: gap var(--pxl-transition);
}
.pxl-service-link:hover { gap: 10px; color: var(--pxl-green); }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.pxl-why {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15,61,46,0.06) 0%, transparent 100%);
}
.pxl-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pxl-why-card {
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--pxl-transition);
    overflow: hidden;
}
.pxl-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29,185,84,0.04), transparent);
    opacity: 0;
    transition: opacity var(--pxl-transition);
}
.pxl-why-card:hover::before { opacity: 1; }
.pxl-why-card:hover {
    border-color: rgba(29,185,84,0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.pxl-why-num {
    font-family: var(--pxl-font-head);
    font-size: 48px;
    font-weight: 900;
    color: rgba(29,185,84,0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}
.pxl-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(29,185,84,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pxl-why-card h3 {
    font-family: var(--pxl-font-head);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pxl-white);
}
.pxl-why-card p { font-size: 14px; color: #777; line-height: 1.7; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.pxl-process { padding: 100px 0; }
.pxl-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 16px;
}
.pxl-process-line {
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pxl-green), transparent);
    z-index: 0;
}
.pxl-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pxl-process-dot {
    width: 56px;
    height: 56px;
    background: var(--pxl-dark-green);
    border: 2px solid var(--pxl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(29,185,84,0.25);
    flex-shrink: 0;
}
.pxl-process-dot span {
    font-family: var(--pxl-font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--pxl-green);
}
.pxl-process-card {
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius);
    padding: 28px 24px;
    width: 100%;
    transition: all var(--pxl-transition);
}
.pxl-process-card:hover {
    border-color: rgba(29,185,84,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.pxl-process-icon {
    width: 48px;
    height: 48px;
    background: rgba(29,185,84,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.pxl-process-card h3 {
    font-family: var(--pxl-font-head);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pxl-white);
}
.pxl-process-card p { font-size: 13px; color: #777; line-height: 1.7; }

/* ============================================================
   CASE STUDIES SECTION
   ============================================================ */
.pxl-cases { padding: 100px 0; }
.pxl-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pxl-case-card {
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--pxl-transition);
    position: relative;
    overflow: hidden;
}
.pxl-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29,185,84,0.3), transparent);
    opacity: 0;
    transition: opacity var(--pxl-transition);
}
.pxl-case-card:hover { transform: translateY(-6px); border-color: rgba(29,185,84,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pxl-case-card:hover::before { opacity: 1; }

.pxl-case-featured {
    border-color: rgba(29,185,84,0.25);
    background: linear-gradient(135deg, rgba(29,185,84,0.05), var(--pxl-card));
}
.pxl-case-featured::before { opacity: 0.6; }

.pxl-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pxl-case-industry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pxl-gray-dim);
}
.pxl-case-tag {
    font-size: 11px;
    font-weight: 600;
    background: rgba(29,185,84,0.12);
    color: var(--pxl-green);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(29,185,84,0.2);
}
.pxl-case-tag-featured {
    background: rgba(29,185,84,0.2);
    border-color: var(--pxl-green);
}
.pxl-case-title {
    font-family: var(--pxl-font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--pxl-white);
}
.pxl-case-desc { font-size: 14px; color: #777; line-height: 1.7; flex: 1; }
.pxl-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--pxl-border);
    border-radius: 10px;
}
.pxl-case-stat { text-align: center; }
.pxl-case-stat-val {
    display: block;
    font-family: var(--pxl-font-head);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}
.pxl-case-stat-label { font-size: 11px; color: #666; }
.pxl-case-footer {
    padding-top: 16px;
    border-top: 1px solid var(--pxl-border);
}
.pxl-case-quote {
    font-size: 13px;
    color: #888;
    font-style: italic;
    line-height: 1.6;
}
.pxl-case-quote::before { content: '"'; color: var(--pxl-green); font-size: 16px; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.pxl-testimonials { padding: 100px 0; }
.pxl-testimonial-carousel { position: relative; overflow: hidden; }
.pxl-testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pxl-testimonial-slide {
    min-width: 100%;
    padding: 0 80px;
}
.pxl-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
}
.pxl-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 40px;
    font-size: 80px;
    color: rgba(29,185,84,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.pxl-stars { color: #FFD700; font-size: 20px; margin-bottom: 20px; letter-spacing: 3px; }
.pxl-testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 32px;
    font-style: italic;
}
.pxl-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.pxl-author-avatar {
    width: 50px;
    height: 50px;
    background: var(--pxl-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}
.pxl-author-info { text-align: left; }
.pxl-author-info strong { display: block; font-size: 15px; font-weight: 600; color: var(--pxl-white); }
.pxl-author-info span { font-size: 13px; color: #888; }

.pxl-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.pxl-testimonial-prev,
.pxl-testimonial-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--pxl-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--pxl-transition);
    color: var(--pxl-white);
}
.pxl-testimonial-prev:hover,
.pxl-testimonial-next:hover {
    background: var(--pxl-green);
    border-color: var(--pxl-green);
    color: #000;
}
.pxl-testimonial-dots { display: flex; gap: 8px; }
.pxl-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--pxl-transition);
    padding: 0;
}
.pxl-dot-active { background: var(--pxl-green); width: 24px; border-radius: 4px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.pxl-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.pxl-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15,61,46,0.5), transparent);
    pointer-events: none;
}
.pxl-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.pxl-cta-title {
    font-family: var(--pxl-font-head);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.pxl-cta-text {
    font-size: 18px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 40px;
}
.pxl-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.pxl-contact { padding: 100px 0; }
.pxl-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.pxl-contact-info { display: flex; flex-direction: column; gap: 28px; }
.pxl-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.pxl-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(29,185,84,0.1);
    border: 1px solid rgba(29,185,84,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pxl-contact-info-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pxl-green);
    margin-bottom: 4px;
}
.pxl-contact-info-item a,
.pxl-contact-info-item span {
    font-size: 15px;
    color: #ccc;
    transition: color var(--pxl-transition);
}
.pxl-contact-info-item a:hover { color: var(--pxl-green); }

/* Contact Form */
.pxl-contact-form-wrap {
    background: var(--pxl-card);
    border: 1px solid var(--pxl-border);
    border-radius: var(--pxl-radius-lg);
    padding: 40px;
}
.pxl-contact-form { display: flex; flex-direction: column; gap: 20px; }
.pxl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pxl-form-group { display: flex; flex-direction: column; gap: 8px; }
.pxl-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}
.pxl-form-group label span { color: var(--pxl-green); }
.pxl-form-group input,
.pxl-form-group select,
.pxl-form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--pxl-font-body);
    color: var(--pxl-white);
    transition: all var(--pxl-transition);
    outline: none;
    -webkit-appearance: none;
}
.pxl-form-group select {
    background-color: #161616;
    cursor: pointer;
}
.pxl-form-group input:focus,
.pxl-form-group select:focus,
.pxl-form-group textarea:focus {
    border-color: var(--pxl-green);
    box-shadow: 0 0 0 3px rgba(29,185,84,0.1);
    background: rgba(29,185,84,0.03);
}
.pxl-form-group input::placeholder,
.pxl-form-group textarea::placeholder { color: #555; }
.pxl-form-group textarea { resize: vertical; min-height: 100px; }
.pxl-form-success {
    text-align: center;
    padding: 48px 32px;
}
.pxl-form-success svg { margin: 0 auto 16px; }
.pxl-form-success h3 { font-family: var(--pxl-font-head); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.pxl-form-success p { color: #888; }
.pxl-form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pxl-footer {
    background: #070707;
    border-top: 1px solid var(--pxl-border);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}
.pxl-footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29,185,84,0.4), transparent);
}
.pxl-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.pxl-footer-brand .pxl-logo { margin-bottom: 16px; }
.pxl-footer-tagline {
    font-family: var(--pxl-font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--pxl-green);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.pxl-footer-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 24px; }

.pxl-social-links { display: flex; gap: 10px; }
.pxl-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--pxl-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: all var(--pxl-transition);
}
.pxl-social-link:hover {
    background: var(--pxl-green);
    border-color: var(--pxl-green);
    color: #000;
}

.pxl-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pxl-footer-col h4 {
    font-family: var(--pxl-font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--pxl-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pxl-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.pxl-footer-col a {
    font-size: 14px;
    color: #666;
    transition: color var(--pxl-transition);
}
.pxl-footer-col a:hover { color: var(--pxl-green); }
.pxl-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    font-size: 14px;
}
.pxl-footer-contact li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.pxl-footer-contact a { color: #666; }
.pxl-footer-contact a:hover { color: var(--pxl-green); }

.pxl-footer-bottom {
    border-top: 1px solid var(--pxl-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.pxl-footer-bottom p { font-size: 13px; color: #555; }
.pxl-footer-legal { display: flex; gap: 20px; }
.pxl-footer-legal a { font-size: 13px; color: #555; transition: color var(--pxl-transition); }
.pxl-footer-legal a:hover { color: var(--pxl-green); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.pxl-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: all var(--pxl-transition);
    animation: pxl-wa-pulse 3s ease-in-out infinite;
}
.pxl-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
    color: #fff;
}
@keyframes pxl-wa-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

.pxl-back-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: rgba(17,17,17,0.9);
    border: 1px solid var(--pxl-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pxl-white);
    backdrop-filter: blur(10px);
    transition: all var(--pxl-transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
.pxl-back-top.pxl-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.pxl-back-top:hover {
    background: var(--pxl-green);
    border-color: var(--pxl-green);
    color: #000;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.pxl-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pxl-animate[data-animation="fade-up"] { transform: translateY(30px); }
.pxl-animate[data-animation="fade-left"] { transform: translateX(40px); }
.pxl-animate[data-animation="fade-right"] { transform: translateX(-40px); }

.pxl-animate.pxl-animated {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .pxl-nav-cta { display: none; }
    .pxl-why-grid { grid-template-columns: 1fr 1fr; }
    .pxl-process-timeline { grid-template-columns: 1fr 1fr; gap: 24px; }
    .pxl-process-line { display: none; }
    .pxl-footer-links { grid-template-columns: 1fr 1fr; }
    .pxl-hero-visual .pxl-dash-small-1 { right: -16px; }
    .pxl-hero-visual .pxl-dash-small-2 { left: -16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .pxl-hamburger { display: flex; }
    .pxl-nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }
    .pxl-nav-links.pxl-nav-open { display: flex; }
    .pxl-nav-links a { font-size: 22px; padding: 12px 24px; }

    /* Hero */
    .pxl-hero { padding: 100px 0 60px; }
    .pxl-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .pxl-hero-visual { display: none; }
    .pxl-hero-headline { font-size: 40px; letter-spacing: -1px; }
    .pxl-hero-buttons { flex-direction: column; }
    .pxl-hero-stats { flex-direction: column; gap: 16px; text-align: center; }
    .pxl-stat-divider { width: 80%; height: 1px; margin: 0 auto; }

    /* Services */
    .pxl-services-grid { grid-template-columns: 1fr; }

    /* Why */
    .pxl-why-grid { grid-template-columns: 1fr; }

    /* Process */
    .pxl-process-timeline { grid-template-columns: 1fr; }

    /* Cases */
    .pxl-cases-grid { grid-template-columns: 1fr; }
    .pxl-case-stats { grid-template-columns: 1fr 1fr; }

    /* Testimonials */
    .pxl-testimonial-slide { padding: 0 16px; }
    .pxl-testimonial-card { padding: 32px 24px; }

    /* Contact */
    .pxl-contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .pxl-form-row { grid-template-columns: 1fr; }
    .pxl-contact-form-wrap { padding: 28px 20px; }

    /* Footer */
    .pxl-footer-top { grid-template-columns: 1fr; gap: 40px; }
    .pxl-footer-links { grid-template-columns: 1fr; gap: 24px; }
    .pxl-footer-bottom { flex-direction: column; text-align: center; }

    /* Floating */
    .pxl-whatsapp-float { bottom: 20px; right: 20px; }
    .pxl-back-top { bottom: 84px; right: 20px; }

    /* Trust */
    .pxl-trust-grid { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .pxl-hero-headline { font-size: 34px; }
    .pxl-section-title { font-size: 26px; }
    .pxl-cta-title { font-size: 30px; }
    .pxl-testimonial-card { padding: 24px 16px; }
    .pxl-case-stats { grid-template-columns: 1fr; }
}
