/* ============================================
   E-TİCARET ÇÖZÜMLERİ - ÖZEL SAYFA STİLLERİ
   Tema: Mavi + Koral (ERP/B2B'den farklı)
   Konsept: Alışveriş akışı, admin panel, kampanya merkezi
   ============================================ */

:root {
    --ec-primary: #2563EB;
    --ec-primary-dark: #1E40AF;
    --ec-accent: #F97316;
    --ec-accent-dark: #EA580C;
    --ec-coral: #FB7185;
    --ec-success: #10B981;
}

.ec-gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ============================================
   HERO - Alışveriş Akışı
   ============================================ */
.ec-hero {
    position: relative;
    padding: 40px 24px 100px;
    overflow: visible; /* hidden → visible */
    max-width: var(--container);
    margin: 0 auto;
}

.ec-hero-bg {
    position: absolute;
    top: -150px;
    left: -150px;
    right: -150px;
    bottom: -150px;
    z-index: 0;
    pointer-events: none;
    overflow: visible; /* hidden → visible */
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 95%);
}

.ec-shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #2563EB 0%, transparent 70%);
    top: 50px;
    left: 50px;
    opacity: 0.3;
    filter: blur(100px);
    animation: ecFloat 18s ease-in-out infinite;
}

.ec-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #F97316 0%, transparent 70%);
    bottom: 50px;
    right: 50px;
    opacity: 0.28;
    filter: blur(100px);
    animation: ecFloat 18s ease-in-out infinite reverse;
}

.ec-shape-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #FB7185 0%, transparent 70%);
    top: 50%;
    left: 45%;
    opacity: 0.18;
    filter: blur(100px);
    animation: ecFloat 22s ease-in-out infinite;
}

@keyframes ecFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.ec-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ec-hero-text {
    max-width: 560px;
}

.ec-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ec-primary-dark);
    margin-bottom: 24px;
}

.ec-pill-icon {
    font-size: 1rem;
}

.ec-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.ec-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 500px;
}

.ec-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ec-ministats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.ec-ministat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ms-val {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563EB, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ms-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   ALIŞVERİŞ AKIŞI ANIMASYONU
   ============================================ */
.ec-hero-visual {
    perspective: 1500px;
}

.journey-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 20px;
}

.journey-step {
    opacity: 0;
    animation: journeyAppear 0.6s var(--ease-back) forwards;
}

.journey-step.js-1 {
    animation-delay: 0.3s;
}

.journey-step.js-2 {
    animation-delay: 0.6s;
}

.journey-step.js-3 {
    animation-delay: 0.9s;
}

.journey-step.js-4 {
    animation-delay: 1.2s;
}

@keyframes journeyAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.js-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.js-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25),
    0 16px 40px rgba(37, 99, 235, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.4s var(--ease-back);
}

.journey-step:hover .js-icon {
    transform: translateY(-6px) rotate(-5deg) scale(1.08);
}

.js-1 .js-icon {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
}

.js-2 .js-icon {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.js-3 .js-icon {
    background: linear-gradient(135deg, #10B981, #047857);
}

.js-4 .js-icon {
    background: linear-gradient(135deg, #FB7185, #E11D48);
}

.js-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #DC2626;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.js-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.js-detail {
    margin-top: 8px;
    padding: 10px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08),
    0 8px 16px rgba(37, 99, 235, 0.06);
    min-width: 150px;
    max-width: 180px;
}

.js-product-card {
    display: flex;
    gap: 8px;
    align-items: center;
}

.js-product-img {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #DBEAFE, #FED7AA);
    border-radius: 6px;
    flex-shrink: 0;
}

.js-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.jsp-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
}

.jsp-price {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ec-primary);
}

.js-cart-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 3px 0;
}

.js-cart-line.discount {
    color: var(--ec-success);
    font-weight: 600;
}

.js-cart-line.total {
    border-top: 1px dashed var(--border);
    margin-top: 4px;
    padding-top: 6px;
    font-weight: 800;
    color: var(--text);
    font-size: 0.78rem;
}

.js-card-mock {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    background: linear-gradient(135deg, #1E3A8A, #1E40AF);
    border-radius: 6px;
    text-align: left;
    color: white;
}

.jsc-brand {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.jsc-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.jsc-secure {
    font-size: 0.58rem;
    opacity: 0.9;
    margin-top: 2px;
}

.js-tracking {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.jst-code {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.jst-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ec-success);
}

.jst-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ec-success);
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* Journey Line (Bağlantı) */
.journey-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #F97316);
    min-width: 20px;
    opacity: 0.4;
    overflow: hidden;
    align-self: center;
    margin-top: -60px;
}

.jl-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
    animation: dotFlow 3s linear infinite;
}

.jl-1 .jl-dot {
    animation-delay: 0s;
}

.jl-2 .jl-dot {
    animation-delay: 0.75s;
}

.jl-3 .jl-dot {
    animation-delay: 1.5s;
}

@keyframes dotFlow {
    from {
        left: -8px;
    }
    to {
        left: calc(100% + 8px);
    }
}

/* ============================================
   NEDEN E-TİCARET
   ============================================ */
.ec-why {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.why-grid-ec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-box {
    position: relative;
    padding: 32px 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #F97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.why-box:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08),
    0 16px 32px rgba(249, 115, 22, 0.08);
}

.why-box:hover::before {
    transform: scaleX(1);
}

.why-box-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-soft);
    letter-spacing: -0.03em;
    line-height: 1;
    opacity: 0.6;
    transition: all 0.3s var(--ease);
}

.why-box:hover .why-box-num {
    background: linear-gradient(135deg, #2563EB, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.why-box-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: inline-block;
    transition: transform 0.4s var(--ease-back);
}

.why-box:hover .why-box-icon {
    transform: scale(1.15) rotate(-8deg);
}

.why-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.why-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ============================================
   MODULES SHOWCASE (Admin Panel Mockup)
   ============================================ */
.ec-modules-showcase {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.admin-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border-radius: var(--r-xl);
    padding: 8px;
    box-shadow: 0 12px 24px rgba(26, 26, 46, 0.2),
    0 32px 64px rgba(26, 26, 46, 0.3);
    overflow: hidden;
}

.admin-sidebar-mock {
    background: #0F1729;
    border-radius: calc(var(--r-xl) - 8px);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.asm-header {
    padding: 8px 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.asm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
}

.asm-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #F97316);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

.asm-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.asm-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.asm-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.asm-item.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(249, 115, 22, 0.1));
    color: white;
    position: relative;
}

.asm-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 3px;
    background: linear-gradient(180deg, #2563EB, #F97316);
    border-radius: 0 2px 2px 0;
}

.asm-icon {
    font-size: 1rem;
}

.asm-title {
    font-size: 0.82rem;
    font-weight: 600;
}

.asm-count {
    padding: 1px 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--r-full);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.asm-item.active .asm-count {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
}

/* Content Panel */
.admin-content-mock {
    background: #1E2A44;
    border-radius: calc(var(--r-xl) - 8px);
    padding: 36px;
    min-height: 540px;
    position: relative;
}

.acm-panel {
    display: none;
    animation: panelFade 0.4s ease;
}

.acm-panel.active {
    display: block;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acm-head {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}

.acm-head h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.acm-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.acm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.acm-feature {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-sm);
    transition: all 0.3s ease;
}

.acm-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.acm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #F97316);
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.acm-feature > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acm-feature strong {
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.acm-feature span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ============================================
   FEATURE STRIP (Yatay scroll)
   ============================================ */
.ec-feature-strip {
    padding: var(--section-py) 0 var(--section-py) 24px;
    max-width: 100%;
    overflow: hidden;
}

.strip-wrapper {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding-right: 24px;
}

.strip-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--ec-primary) transparent;
}

.strip-track::-webkit-scrollbar {
    height: 6px;
}

.strip-track::-webkit-scrollbar-track {
    background: var(--bg-soft);
    border-radius: 3px;
}

.strip-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
    border-radius: 3px;
}

.strip-card {
    flex-shrink: 0;
    width: 300px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    scroll-snap-align: start;
    box-shadow: var(--shadow);
    transition: all 0.3s var(--ease);
}

.strip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08),
    0 16px 32px rgba(249, 115, 22, 0.08);
}

.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.4s var(--ease-back);
}

.strip-card:hover .sc-icon {
    transform: rotate(-8deg) scale(1.1);
}

.strip-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.strip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.strip-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    padding-right: 8px;
}

.strip-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.strip-btn:hover {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ============================================
   CAMPAIGN GRID
   ============================================ */
.ec-campaign {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.campaign-card {
    position: relative;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow);
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08),
    0 24px 48px rgba(249, 115, 22, 0.1);
}

.cc-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-radius: var(--r-full);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    z-index: 999;
}

.campaign-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 24px 0 8px;
    letter-spacing: -0.02em;
}

.campaign-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* KUPON MOCK */
.cc-coupon-mock {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cc-coupon-mock::before,
.cc-coupon-mock::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--surface);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.cc-coupon-mock::before {
    left: 112px;
}

.cc-coupon-mock::after {
    left: 120px;
    background: var(--bg-soft);
    width: 2px;
    height: 80%;
    transform: translateY(-50%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
    background-size: 2px 6px;
    border-radius: 0;
}

.coupon-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 2px;
}

.coupon-brand {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.coupon-off {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.coupon-off-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.coupon-right {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.coupon-code {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    text-align: center;
}

.coupon-exp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

/* SEPET KAMPANYA MOCK */
.cc-cart-mock {
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ccm-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 500;
}

.ccm-remaining {
    color: var(--ec-accent);
    font-weight: 700;
}

.ccm-progress {
    width: 100%;
    height: 8px;
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
    margin: 6px 0;
}

.ccm-progress-fill {
    height: 100%;
    width: 97%;
    background: linear-gradient(90deg, #2563EB, #F97316);
    border-radius: 4px;
    animation: progressFill 2s var(--ease) forwards;
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

.ccm-reward {
    padding: 8px 12px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: var(--r-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25);
}

/* ÜRÜN KAMPANYA MOCK */
.cc-product-mock {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #FEF2F2, #FFF7ED);
    border-radius: var(--r);
    text-align: center;
}

.ccp-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.ccp-new {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #DC2626, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 4px 0 12px;
}

.ccp-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.35);
    animation: badgeShake 3s ease-in-out infinite;
}

@keyframes badgeShake {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.ccp-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ccp-timer-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #DC2626;
}

.ccp-timer-grid {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 800;
}

.ccp-t-box {
    padding: 6px 10px;
    background: #1F2937;
    color: white;
    border-radius: 6px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    min-width: 36px;
    text-align: center;
}

/* KADEMELİ FİYAT MOCK */
.cc-tier-mock {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: var(--bg-soft);
    border-radius: var(--r);
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-row.active {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    color: white;
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.tier-row small {
    color: var(--ec-accent);
    font-weight: 800;
    margin-left: 6px;
}

.tier-row.active small {
    color: #FED7AA;
}

/* ============================================
   INTEGRATIONS
   ============================================ */
.ec-integrations {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.integrations-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.int-group {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    transition: all 0.3s var(--ease);
}

.int-group:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08),
    0 16px 32px rgba(249, 115, 22, 0.08);
}

.int-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.int-group-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.int-group-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.int-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.int-badge {
    padding: 8px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: all 0.3s ease;
    cursor: default;
}

.int-badge:hover {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* ============================================
   JOURNEY MAP
   ============================================ */
.ec-journey-map {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.jmap-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.jmap-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg,
    #2563EB 0%,
    #F97316 100%);
    opacity: 0.25;
    z-index: 0;
}

.jmap-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.jms-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--ec-primary);
    color: var(--ec-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15),
    0 0 0 6px var(--bg);
    transition: all 0.3s var(--ease-back);
}

.jmap-step:hover .jms-num {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3),
    0 0 0 6px var(--bg);
}

.jms-body h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.jms-body p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ============================================
   PACKAGES
   ============================================ */
.ec-packages {
    padding: var(--section-py) 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pkg-card {
    position: relative;
    padding: 36px 28px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow);
}

.pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.08),
    0 24px 48px rgba(249, 115, 22, 0.1);
}

.pkg-card.featured {
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1),
    0 24px 48px rgba(249, 115, 22, 0.15);
    transform: scale(1.03);
}

.pkg-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    padding: 2px;
    background: linear-gradient(135deg, #2563EB, #F97316);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pkg-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.pkg-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pkg-tier {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-soft);
    color: var(--ec-primary-dark);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pkg-card.featured .pkg-tier {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
}

.pkg-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.pkg-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pkg-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.pkg-list li {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 500;
    line-height: 1.5;
}

.pkg-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease);
}

.pkg-cta:hover {
    background: var(--text);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pkg-card.featured .pkg-cta {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pkg-card.featured .pkg-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.pkg-note {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #EFF6FF, #FFF7ED);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--r);
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ============================================
   SSS - Özel tasarım
   ============================================ */
.ec-faq {
    padding: var(--section-py) 24px;
    max-width: 860px;
    margin: 0 auto;
}

.ec-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ec-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.ec-faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.ec-faq-item[open] {
    border-color: var(--ec-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.ec-faq-item summary {
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    letter-spacing: -0.01em;
}

.ec-faq-item summary::-webkit-details-marker {
    display: none;
}

.ec-faq-item summary:hover {
    color: var(--ec-primary);
}

.ec-faq-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ec-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    line-height: 1;
}

.ec-faq-item[open] .ec-faq-arrow {
    background: linear-gradient(135deg, #2563EB, #F97316);
    color: white;
    transform: rotate(45deg);
}

.ec-faq-item p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ec-hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ec-hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .ec-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .ec-hero-cta,
    .ec-ministats {
        justify-content: center;
    }

    .ec-ministats {
        gap: 24px;
    }

    .journey-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .journey-line {
        display: none;
    }

    .why-grid-ec {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-showcase {
        grid-template-columns: 1fr;
    }

    .admin-sidebar-mock {
        order: 2;
    }

    .admin-content-mock {
        order: 1;
        min-height: auto;
    }

    .acm-features {
        grid-template-columns: 1fr;
    }

    .campaign-grid,
    .integrations-wrap {
        grid-template-columns: 1fr;
    }

    .jmap-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
    }

    .jmap-steps::before {
        display: none;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .pkg-card.featured {
        transform: none;
    }

    .pkg-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .ec-hero {
        padding: 30px 16px 60px;
    }

    .ec-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .ec-hero-cta > * {
        width: 100%;
        justify-content: center;
    }

    .ec-ministats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .journey-wrap {
        grid-template-columns: 1fr 1fr;
        padding: 12px;
    }

    .js-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .js-detail {
        min-width: auto;
        padding: 8px 10px;
    }

    .why-grid-ec {
        grid-template-columns: 1fr;
    }

    .admin-showcase {
        padding: 6px;
    }

    .admin-content-mock {
        padding: 24px 20px;
    }

    .acm-head h3 {
        font-size: 1.2rem;
    }

    .asm-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .asm-item {
        grid-template-columns: 24px 1fr;
    }

    .asm-count {
        display: none;
    }

    .strip-card {
        width: 260px;
        padding: 22px;
    }

    .campaign-card {
        padding: 24px;
    }

    .cc-coupon-mock {
        grid-template-columns: 100px 1fr;
    }

    .cc-coupon-mock::before {
        left: 92px;
    }

    .cc-coupon-mock::after {
        left: 100px;
    }

    .coupon-off {
        font-size: 1.6rem;
    }

    .jmap-steps {
        grid-template-columns: 1fr 1fr;
    }

    .ec-faq-item summary {
        padding: 18px 20px;
        font-size: 0.92rem;
    }

    .ec-faq-item p {
        padding: 0 20px 20px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .journey-wrap {
        grid-template-columns: 1fr;
    }

    .jmap-steps {
        grid-template-columns: 1fr;
    }

    .asm-menu {
        grid-template-columns: 1fr;
    }
}