/* jak.css - Interaktywna strona "Jak to działa" - ULEPSZONA WERSJA */

/* ==================== VARIABLES ==================== */
:root {
    --jak-magenta: #e52687;
    --jak-magenta-dark: #c41e72;
    --jak-blue: #004AAD;
    --jak-dark: #130b21;
    --jak-darker: #0a0512;
    --jak-green: #1eb482;
    --jak-green-light: rgba(30, 180, 130, 0.15);
    --jak-yellow: #ffc200;
    --jak-text: #2f373d;
    --jak-text-light: #666;
    --jak-shadow: #2b2d42;
    --jak-light-bg: #f8f9fa;
    --jak-card-bg: #ffffff;
    --jak-border-radius: 24px;
    --jak-border-radius-sm: 12px;
    --jak-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --jak-transition-fast: 0.15s ease;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--jak-light-bg);
    color: var(--jak-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.jak-page {
    overflow-x: hidden;
    position: relative;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 38, 135, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px 5px rgba(229, 38, 135, 0.2); }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes stampPop {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    60% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-200px) rotate(720deg); opacity: 0; }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(229, 38, 135, 0.3); }
    50% { box-shadow: 0 0 40px rgba(229, 38, 135, 0.5); }
}

@keyframes flyIn {
    0% { transform: translateX(-100px) translateY(50px) rotate(-30deg); opacity: 0; }
    100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.from-left {
    transform: translateX(-40px);
}

.animate-on-scroll.from-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.from-right {
    transform: translateX(40px);
}

.animate-on-scroll.from-right.visible {
    transform: translateX(0);
}

/* ==================== TYPOGRAPHY ==================== */
.jak-section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
    color: var(--jak-text);
    line-height: 1.3;
}

.jak-section-subtitle {
    font-size: 1.1rem;
    color: var(--jak-text-light);
    text-align: left;
    max-width: 600px;
    margin: 0 0 40px;
}

.jak-gradient-text {
    background: linear-gradient(135deg, var(--jak-magenta), #ff6b9d, var(--jak-magenta));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
}

.jak-highlight-text {
    color: var(--jak-magenta);
}

.jak-title-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--jak-magenta);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* ==================== SECTIONS ==================== */
.jak-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 24px;
    position: relative;
}

/* Odstępy między sekcjami na desktop */
@media (min-width: 769px) {
    .jak-section {
        margin-bottom: 32px;
    }

    /* Większy odstęp dla sekcji CTA */
    .jak-cta-section {
        margin-top: 32px;
        margin-bottom: 48px;
    }
}

/* Mniejsze odstępy na mobile */
@media (max-width: 768px) {
    .jak-section {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .jak-section {
        margin-bottom: 12px;
    }
}

/* ==================== BACK BUTTON ==================== */
.jak-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--jak-blue);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--jak-transition);
    font-size: 0.9rem;
}

.jak-back-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* ==================== HERO SECTION ==================== */
.jak-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 20px;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, var(--jak-light-bg) 100%);
    overflow: visible;
}

.jak-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.jak-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.jak-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--jak-magenta), var(--jak-magenta-dark));
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulseBadge 2s ease-in-out infinite;
}

.jak-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--jak-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.jak-google-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4285F4;
}

.jak-google-highlight i {
    font-size: 0.8em;
}

.jak-google-maps-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    vertical-align: baseline;
}

.jak-google-maps-icon {
    height: 1em;
    width: auto;
    object-fit: contain;
    vertical-align: baseline;
    position: relative;
    top: 0.15em;
}

.jak-google-maps-inline span {
    color: #1a73e8;
    font-weight: 800;
}

.jak-hero-subtitle {
    font-size: 1.25rem;
    color: var(--jak-text-light);
    margin-bottom: 35px;
}

.jak-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.jak-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--jak-magenta), var(--jak-magenta-dark));
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(229, 38, 135, 0.4);
    transition: var(--jak-transition);
    overflow: hidden;
}

.jak-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.jak-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(229, 38, 135, 0.5);
}

.jak-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--jak-text);
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--jak-text);
    transition: var(--jak-transition);
}

.jak-hero-secondary:hover {
    background: var(--jak-text);
    color: #fff;
}

/* Floating stamps */
.jak-floating-stamps {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.jak-floating-stamp {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 50px;
    height: 50px;
    background: rgba(229, 38, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jak-magenta);
    font-size: 1.2rem;
    animation: floatSlow 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

/* Scroll indicator */
.jak-hero-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--jak-text-light);
    font-size: 0.8rem;
    z-index: 100;
    animation: scrollIndicatorFade 2s ease-out forwards;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes scrollIndicatorFade {
    0%, 75% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

.jak-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--jak-text-light);
    border-radius: 13px;
    position: relative;
}

.jak-scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--jak-magenta);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ==================== COMPACT STEPS ==================== */
.jak-steps-compact {
    background: var(--jak-dark);
    padding: 50px 20px 60px;
    /* Full-width na desktop z ładnymi zaokrągleniami */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 8px 32px rgba(19, 11, 33, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtelny gradient overlay dla głębi */
.jak-steps-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(229, 38, 135, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 74, 173, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Na bardzo dużych ekranach ogranicz szerokość i wycentruj */
@media (min-width: 1400px) {
    .jak-steps-compact {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-steps-header {
    text-align: center;
    margin-bottom: 31px;
}

.jak-steps-header .jak-section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.jak-compact-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.jak-compact-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.jak-compact-content {
    padding-top: 10px;
}

.jak-compact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.jak-compact-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.jak-compact-desc strong {
    color: #fff;
}

.jak-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Insight box (lightbulb) */
.jak-insight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    margin-left: 105px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--jak-yellow);
}

.jak-insight-icon {
    font-size: 2rem;
    color: var(--jak-yellow);
    flex-shrink: 0;
}

.jak-insight-content {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
}

.jak-insight-content p {
    margin-bottom: 12px;
}

.jak-insight-content p:last-child {
    margin-bottom: 0;
}

.jak-highlight-pink {
    color: var(--jak-magenta);
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==================== STEP SECTIONS ==================== */
.jak-step-section {
    padding: 100px 20px;
}

.jak-step-dark {
    background: var(--jak-dark);
}

.jak-step-dark .jak-step-title,
.jak-step-dark .jak-step-description {
    color: #fff;
}

.jak-step-dark .jak-step-description {
    color: rgba(255, 255, 255, 0.8);
}

.jak-step-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.jak-step-container.jak-step-centered {
    justify-content: center;
}

.jak-step-centered .jak-step-content {
    max-width: 700px;
    text-align: center;
}

.jak-step-centered .jak-step-header {
    justify-content: center;
}

.jak-step-centered .jak-step-features {
    justify-content: center;
}

.jak-step-centered .jak-surprise-bubble {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.jak-step-reverse {
    flex-direction: row-reverse;
}

.jak-step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.jak-step-content {
    flex: 1;
}

.jak-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.jak-step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--jak-magenta), var(--jak-magenta-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(229, 38, 135, 0.3);
}

.jak-instant-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--jak-magenta);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.jak-badge-green {
    background: var(--jak-green);
}

.jak-step-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--jak-text);
    margin-bottom: 15px;
}

.jak-step-description {
    font-size: 1.1rem;
    color: var(--jak-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.jak-step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.jak-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--jak-light-bg);
    padding: 12px 18px;
    border-radius: var(--jak-border-radius-sm);
    transition: var(--jak-transition);
}

.jak-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.jak-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--jak-green), #15a070);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.jak-feature-text {
    display: flex;
    flex-direction: column;
}

.jak-feature-text strong {
    font-weight: 700;
    color: var(--jak-text);
}

.jak-feature-text span {
    font-size: 0.8rem;
    color: var(--jak-text-light);
}

/* Surprise bubble */
.jak-surprise-bubble {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(229, 38, 135, 0.1), rgba(229, 38, 135, 0.05));
    padding: 20px;
    border-radius: var(--jak-border-radius);
    border-left: 4px solid var(--jak-magenta);
}

.jak-bubble-avatar {
    width: 50px;
    height: 50px;
    background: var(--jak-magenta);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.jak-bubble-quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--jak-magenta);
    margin-bottom: 5px;
}

.jak-bubble-note {
    font-size: 0.9rem;
    color: var(--jak-text-light);
}

/* ==================== DEMO SECTION ==================== */
.jak-demo-section {
    background: var(--jak-dark);
    text-align: center;
}

/* Light variant for /jak page */
.jak-demo-section.jak-demo-light {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
    overflow: hidden;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1400px) {
    .jak-demo-section.jak-demo-light {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .jak-demo-section.jak-demo-light {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .jak-demo-section.jak-demo-light {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
    }
}

.jak-demo-section.jak-demo-light::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(229, 38, 135, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 180, 130, 0.05) 0%, transparent 50%);
    animation: demoGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes demoGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(5deg); }
    66% { transform: translate(-2%, -1%) rotate(-3deg); }
}

.jak-demo-section.jak-demo-light .jak-section-title {
    color: var(--jak-text);
}

.jak-demo-section.jak-demo-light .jak-section-subtitle {
    color: var(--jak-text-light);
}

.jak-demo-section.jak-demo-light .jak-section-subtitle strong {
    color: var(--jak-magenta);
    font-weight: 700;
}

/* Demo Badge */
.jak-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--jak-magenta) 0%, #c41e6a 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(229, 38, 135, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.jak-demo-badge i {
    font-size: 0.9rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.jak-demo-section .jak-section-title,
.jak-demo-section .jak-section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.jak-demo-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* ==================== CAMERA DEMO - FAKE CAMERA LAUNCHER ==================== */
.jak-camera-demo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Visual Preview */
.jak-camera-preview {
    position: relative;
    width: 280px;
    height: 200px;
}

.jak-preview-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.jak-preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(229, 38, 135, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: previewPulse 3s ease-in-out infinite;
}

@keyframes previewPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Viewfinder corners */
.jak-preview-viewfinder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.jak-viewfinder-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--jak-magenta);
    border-style: solid;
    border-width: 0;
}

.jak-viewfinder-corner.top-left {
    top: 0; left: 0;
    border-top-width: 3px;
    border-left-width: 3px;
    border-top-left-radius: 8px;
}

.jak-viewfinder-corner.top-right {
    top: 0; right: 0;
    border-top-width: 3px;
    border-right-width: 3px;
    border-top-right-radius: 8px;
}

.jak-viewfinder-corner.bottom-left {
    bottom: 0; left: 0;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-left-radius: 8px;
}

.jak-viewfinder-corner.bottom-right {
    bottom: 0; right: 0;
    border-bottom-width: 3px;
    border-right-width: 3px;
    border-bottom-right-radius: 8px;
}

.jak-viewfinder-scan {
    position: absolute;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jak-magenta), transparent);
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { top: 10%; opacity: 0.3; }
    50% { top: 85%; opacity: 1; }
}

/* Preview icons */
.jak-preview-qr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: qrPulse 2s ease-in-out infinite;
}

@keyframes qrPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.jak-preview-character {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* CTA Section */
.jak-camera-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Success Badge - shown after demo completion */
.jak-demo-success-badge {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1eb482 0%, #17a372 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow:
        0 6px 25px rgba(30, 180, 130, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    transition: none;
}

.jak-demo-success-badge.visible {
    display: flex;
    animation: successBadgeAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.jak-demo-success-badge i {
    font-size: 1.2rem;
    animation: successIconPulse 1s ease-in-out 0.6s;
}

@keyframes successBadgeAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    60% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Success hints - additional text shown after demo completion */
.jak-demo-success-hints {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
}

.jak-demo-success-hints.visible {
    display: flex;
    animation: successHintAppear 0.5s ease 0.4s forwards;
}

.jak-demo-success-hint-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1eb482;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    max-width: 420px;
    line-height: 1.5;
    margin: 0;
}

.jak-demo-success-hint-item i {
    color: #f5a623;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.jak-demo-success-hint-item span {
    flex: 1;
}

@keyframes successHintAppear {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.jak-open-camera-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--jak-magenta) 0%, #c41e6a 100%);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow:
        0 8px 30px rgba(229, 38, 135, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.jak-open-camera-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.jak-open-camera-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(229, 38, 135, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.15);
}

.jak-open-camera-btn:active {
    transform: translateY(-2px) scale(1);
}

.jak-camera-btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.jak-open-camera-btn:hover .jak-camera-btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.jak-camera-btn-text {
    position: relative;
    z-index: 1;
}

.jak-camera-hint {
    font-size: 0.9rem;
    color: var(--jak-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.jak-camera-hint i {
    color: var(--jak-magenta);
    animation: hintBounce 1.5s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 600px) {
    .jak-camera-preview {
        width: 240px;
        height: 170px;
    }

    .jak-open-camera-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .jak-camera-btn-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .jak-camera-hint {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* ==================== PHONE MOCKUP & LOYALTY CARD ==================== */
.jak-demo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.jak-phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px #444;
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.jak-phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.jak-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--jak-dark), var(--jak-darker));
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 50px 15px 20px;
}

.jak-loyalty-card {
    background: linear-gradient(135deg, var(--jak-magenta) 0%, #c41e72 50%, #a01860 100%);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jak-card-brand {
    margin-bottom: 15px;
}

.jak-card-brand-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.jak-card-brand-tag {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jak-card-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.jak-stamp {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--jak-transition);
    position: relative;
    cursor: default;
}

.jak-stamp:hover:not(.filled) {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.jak-stamp.filled {
    background: #fff;
    color: var(--jak-magenta);
    animation: stampPop 0.4s ease-out;
}

.jak-stamp-reward {
    background: linear-gradient(135deg, var(--jak-yellow), #e6ac00) !important;
    color: #fff !important;
}

.jak-stamp-reward i {
    font-size: 1rem;
}

.jak-card-message {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 20px;
    transition: var(--jak-transition);
}

.jak-card-message i {
    font-size: 0.9rem;
}

.jak-card-message .fa-fire {
    color: #ff6b35;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

.jak-card-message .fa-gift {
    animation: giftBounce 0.6s ease-in-out infinite;
}

@keyframes fireFlicker {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.jak-card-actions {
    display: flex;
    gap: 8px;
}

.jak-card-action-btn {
    flex: 1;
    padding: 10px 8px;
    border: none;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--jak-transition);
}

.jak-action-google {
    background: #fff;
    color: var(--jak-text);
}

.jak-action-wallet {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.jak-card-action-btn:hover {
    transform: scale(1.05) translateY(-2px);
}

.jak-action-google:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.jak-action-wallet:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.jak-card-action-btn:active {
    transform: scale(0.98);
}

/* Demo controls */
.jak-demo-controls {
    text-align: center;
}

.jak-add-stamp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--jak-green), #15a070);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 180, 130, 0.4);
    transition: var(--jak-transition);
}

.jak-add-stamp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 180, 130, 0.5);
}

.jak-add-stamp-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 20px rgba(30, 180, 130, 0.4);
}

.jak-add-stamp-btn .jak-btn-icon {
    transition: transform 0.3s ease;
}

.jak-add-stamp-btn:hover .jak-btn-icon {
    transform: rotate(90deg);
}

.jak-demo-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Light variant hints */
.jak-demo-light .jak-demo-hint {
    color: var(--jak-text-light);
}

.jak-demo-light .jak-demo-hint i {
    color: var(--jak-magenta);
    animation: pointBounce 1.5s ease-in-out infinite;
}

@keyframes pointBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Light variant wrapper */
.jak-demo-light .jak-demo-wrapper {
    z-index: 1;
}

/* Responsive demo badge */
@media (max-width: 600px) {
    .jak-demo-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* Confetti */
.jak-confetti-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 100;
}

.jak-confetti-piece {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Flying coffee */
.jak-flying-coffee {
    position: absolute;
    width: 60px;
    height: 70px;
    opacity: 0;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
}

.jak-flying-coffee.animate {
    animation: flyingCoffee 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes flyingCoffee {
    0% {
        opacity: 0;
        transform: translate(-50%, 100%) scale(0.3) rotate(-30deg);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    }
    50% {
        transform: translate(-50%, -80%) scale(1.3) rotate(-5deg);
    }
    70% {
        transform: translate(-50%, -60%) scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(0.8) rotate(0deg);
    }
}

/* Steam effect for coffee */
.jak-coffee-steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.jak-steam-particle {
    width: 8px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: steamRise 1.5s ease-out infinite;
}

.jak-steam-particle:nth-child(2) {
    animation-delay: 0.3s;
    height: 15px;
}

.jak-steam-particle:nth-child(3) {
    animation-delay: 0.6s;
    height: 18px;
}

@keyframes steamRise {
    0% {
        opacity: 0.6;
        transform: translateY(0) scaleX(1);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-15px) scaleX(1.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scaleX(2);
    }
}

/* Coffee SVG styling */
.jak-coffee-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Stamp animation enhancement */
.jak-stamp.filled::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: stampRipple 0.6s ease-out forwards;
}

@keyframes stampRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Card pulse when near completion */
.jak-loyalty-card.nearly-complete {
    animation: cardPulse 1s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 194, 0, 0.4), 0 0 20px rgba(255, 194, 0, 0.2);
    }
}

/* Reward stamp special glow */
.jak-stamp-reward.filled {
    animation: rewardGlow 1.5s ease-in-out infinite;
}

@keyframes rewardGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 194, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 194, 0, 0.6), 0 0 50px rgba(255, 194, 0, 0.3);
    }
}

/* Step highlights */
.jak-step-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.jak-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.jak-highlight-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ==================== RETURN VISIT SECTION ==================== */
.jak-return-visit-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    padding: 80px 20px;
    text-align: center;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1400px) {
    .jak-return-visit-section {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-return-visit-container {
    max-width: 800px;
    margin: 0 auto;
}

.jak-return-visit-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(229, 38, 135, 0.1), rgba(0, 74, 173, 0.1));
    border: 1px solid rgba(229, 38, 135, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--jak-magenta);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jak-return-visit-badge i {
    font-size: 1rem;
    animation: spinSlow 4s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jak-return-visit-text {
    margin-bottom: 40px;
}

.jak-return-visit-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--jak-text);
    font-weight: 500;
}

.jak-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin: 0 4px;
    vertical-align: middle;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.jak-inline-icon:hover {
    transform: scale(1.15);
}

.jak-icon-home {
    background: linear-gradient(135deg, var(--jak-magenta), #c41e72);
    color: white;
}

.jak-icon-wallet {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.jak-accent-text {
    color: var(--jak-magenta);
    font-style: normal;
    font-weight: 700;
}

/* Wallets Showcase - Overlapping Cards with Stagger */
.jak-wallets-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    position: relative;
    min-height: 140px;
    perspective: 1000px;
}

.jak-wallet-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    opacity: 0;
}

/* Google Wallet - slides from left, positioned higher */
.jak-wallet-google {
    transform: translateX(-100px) translateY(-20px) rotate(-15deg);
    z-index: 2;
}

/* Apple Wallet - slides from right, positioned lower, overlaps slightly */
.jak-wallet-apple {
    transform: translateX(100px) translateY(20px) rotate(12deg);
    margin-left: -25px;
    z-index: 1;
}

/* Animation when visible */
.jak-wallets-showcase.visible .jak-wallet-google {
    animation: slideInGoogle 0.8s ease-out forwards;
}

.jak-wallets-showcase.visible .jak-wallet-apple {
    animation: slideInApple 0.8s ease-out 0.2s forwards;
}

@keyframes slideInGoogle {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(-30px) rotate(-15deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(8px) translateY(-18px) rotate(-3deg) scale(1);
    }
}

@keyframes slideInApple {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(30px) rotate(15deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-8px) translateY(18px) rotate(3deg) scale(1);
    }
}

.jak-wallet-card:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.jak-wallet-logo {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
    flex-shrink: 0;
}

.jak-wallet-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jak-text);
    white-space: nowrap;
}

.jak-wallet-google .jak-wallet-name {
    color: #4285F4;
}

.jak-wallet-apple .jak-wallet-name {
    color: #1a1a1a;
}

/* Benefits Pills */
.jak-return-visit-benefits {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.jak-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--jak-text);
    transition: all 0.3s ease;
}

.jak-benefit-pill:hover {
    border-color: var(--jak-magenta);
    background: rgba(229, 38, 135, 0.05);
    transform: translateY(-2px);
}

.jak-benefit-pill i {
    color: var(--jak-magenta);
    font-size: 1rem;
}

/* Mobile responsive for return visit section */
@media (max-width: 768px) {
    .jak-steps-compact {
        padding-bottom: 35px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-return-visit-section {
        padding: 35px 15px 50px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-return-visit-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .jak-return-visit-text p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .jak-inline-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .jak-wallets-showcase {
        min-height: 130px;
    }

    .jak-wallet-card {
        padding: 12px 18px;
        gap: 10px;
    }

    .jak-wallet-logo {
        height: 38px;
    }

    .jak-wallet-name {
        font-size: 0.9rem;
    }

    .jak-wallet-apple {
        margin-left: -20px;
    }

    @keyframes slideInGoogle {
        from {
            opacity: 0;
            transform: translateX(-60px) translateY(-25px) rotate(-12deg) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(6px) translateY(-15px) rotate(-2deg) scale(1);
        }
    }

    @keyframes slideInApple {
        from {
            opacity: 0;
            transform: translateX(60px) translateY(25px) rotate(12deg) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(-6px) translateY(15px) rotate(2deg) scale(1);
        }
    }

    .jak-return-visit-benefits {
        gap: 10px;
    }

    .jak-benefit-pill {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .jak-benefit-pill i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .jak-steps-compact {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        padding: 40px 15px 30px;
    }

    .jak-return-visit-section {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        padding: 30px 12px 40px;
    }

    .jak-return-visit-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: -23px;
    }

    .jak-wallets-showcase {
        min-height: 120px;
    }

    .jak-wallet-card {
        padding: 10px 14px;
        gap: 8px;
        border-radius: 12px;
    }

    .jak-wallet-logo {
        height: 32px;
    }

    .jak-wallet-name {
        font-size: 0.8rem;
    }

    .jak-wallet-apple {
        margin-left: -15px;
    }

    @keyframes slideInGoogle {
        from {
            opacity: 0;
            transform: translateX(-40px) translateY(-20px) rotate(-10deg) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(4px) translateY(-12px) rotate(-2deg) scale(1);
        }
    }

    @keyframes slideInApple {
        from {
            opacity: 0;
            transform: translateX(40px) translateY(20px) rotate(10deg) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(-4px) translateY(12px) rotate(2deg) scale(1);
        }
    }

    .jak-benefit-pill {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* ==================== INTEGRATIONS ==================== */
.jak-integrations-section {
    background: #fff;
}

.jak-integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.jak-integration-card {
    background: var(--jak-card-bg);
    border-radius: var(--jak-border-radius);
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--jak-transition);
    position: relative;
    overflow: hidden;
}

.jak-integration-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 38, 135, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.jak-integration-card:hover .jak-integration-glow {
    opacity: 1;
}

.jak-integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.jak-integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}


.jak-wallet-icon {
    width: 100%;
    height: 100%;
}

/* ==================== SMARTWATCH - APPLE WATCH STYLE ==================== */
.jak-smartwatch-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatWatch 4s ease-in-out infinite;
}

@keyframes floatWatch {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Watch body - Premium aluminum case */
.jak-watch-body {
    width: 60px;
    height: 72px;
    background: linear-gradient(
        145deg,
        #f5f5f5 0%,
        #e0e0e0 20%,
        #c8c8c8 50%,
        #d8d8d8 80%,
        #ececec 100%
    );
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* Watch bands - match body width */
.jak-watch-band {
    width: 38px;
    background: linear-gradient(90deg, #1f1f1f 0%, #333 50%, #1f1f1f 100%);
    position: relative;
}

.jak-watch-band-top {
    height: 20px;
    border-radius: 5px 5px 0 0;
    margin-bottom: -1px;
}

.jak-watch-band-bottom {
    height: 25px;
    border-radius: 0 0 5px 5px;
    margin-top: -1px;
}

.jak-band-texture {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(255,255,255,0.05) 2px,
        rgba(255,255,255,0.05) 3px
    );
    border-radius: inherit;
}

.jak-band-clasp {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: linear-gradient(90deg, #555, #777, #555);
    border-radius: 2px;
}

/* Digital Crown */
.jak-watch-crown {
    position: absolute;
    right: -5px;
    top: 18px;
    width: 5px;
    height: 12px;
    background: linear-gradient(90deg, #bbb, #e5e5e5, #bbb);
    border-radius: 2px;
    box-shadow: 1px 0 3px rgba(0,0,0,0.25);
}

.jak-watch-crown::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    right: 1px;
    bottom: 2px;
    background: repeating-linear-gradient(
        0deg,
        #aaa 0px,
        #aaa 1px,
        #ddd 1px,
        #ddd 2px
    );
    border-radius: 1px;
}

/* Side Button */
.jak-watch-button {
    position: absolute;
    right: -4px;
    top: 36px;
    width: 4px;
    height: 8px;
    background: linear-gradient(90deg, #bbb, #ddd, #bbb);
    border-radius: 1px;
    box-shadow: 1px 0 2px rgba(0,0,0,0.2);
}

/* Screen bezel - thin black frame */
.jak-watch-bezel {
    width: 52px;
    height: 64px;
    background: #111;
    border-radius: 12px;
    padding: 3px;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.9);
}

/* OLED Screen - shows loyalty card */
.jak-watch-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

/* Mini loyalty card on screen */
.jak-watch-app {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 6px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hide the header - no text */
.jak-watch-app-header {
    display: none;
}

.jak-watch-app-title {
    display: none;
}

/* Stamp Grid - 8 stamps in 2 rows of 4 */
.jak-watch-stamps {
    display: grid;
    grid-template-columns: repeat(4, 6px);
    grid-template-rows: repeat(2, 6px);
    gap: 3px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.jak-watch-stamp {
    width: 6px;
    height: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #e0e0e0;
    border: 1px solid #bbb;
    box-sizing: border-box;
    flex-shrink: 0;
    /* Explicit defaults for animation reset */
    transform: scale(1);
    opacity: 1;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.jak-watch-stamp.filled {
    background: var(--jak-magenta);
    border-color: var(--jak-magenta);
    box-shadow: 0 1px 3px rgba(229, 38, 135, 0.4);
}

/* Reward stamp - only yellow when FILLED */
.jak-watch-stamp.reward {
    /* Empty reward looks like empty stamp - gray */
}

.jak-watch-stamp.reward.filled {
    background: linear-gradient(135deg, var(--jak-yellow), #e6a800);
    border-color: #d4a000;
    box-shadow: 0 1px 3px rgba(255, 194, 0, 0.4);
}

.jak-watch-stamp.reward i {
    display: none;
}

/* Progress bar at bottom of card */
.jak-watch-progress {
    width: 80%;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.jak-watch-progress-bar {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--jak-magenta), var(--jak-blue));
    border-radius: 2px;
    transition: width 0.5s ease-out, background 0.5s ease-out;
}

.jak-integration-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--jak-text);
    margin-bottom: 10px;
}

.jak-integration-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--jak-green-light);
    color: var(--jak-green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== SMARTWATCH FEATURE SECTION ==================== */
.jak-smartwatch-section {
    background: linear-gradient(135deg, var(--jak-dark) 0%, #1a0a2e 100%);
    padding: 80px 20px;
    overflow: hidden;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 8px 32px rgba(19, 11, 33, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 1400px) {
    .jak-smartwatch-section {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-smartwatch-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* Left side - Watch visual */
.jak-smartwatch-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.jak-smartwatch-featured.jak-smartwatch-icon {
    animation: none;
    transform: rotate(-12deg) scale(2.5);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
    opacity: 0;
}

.jak-smartwatch-visual.visible .jak-smartwatch-featured {
    animation: slideInWatch 1s ease-out forwards, watchSway 3s ease-in-out 1s infinite;
}

@keyframes slideInWatch {
    from {
        opacity: 0;
        transform: translateX(-100px) rotate(-15deg) scale(1.5);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-12deg) scale(2.5);
    }
}

@keyframes watchSway {
    0%, 100% {
        transform: translateX(0) rotate(-12deg) scale(2.5) translateY(0);
    }
    50% {
        transform: translateX(0) rotate(-10deg) scale(2.5) translateY(-8px);
    }
}

.jak-smartwatch-featured .jak-watch-body {
    box-shadow:
        0 8px 30px rgba(0,0,0,0.4),
        inset 0 2px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* Glow effect behind watch */
.jak-smartwatch-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(229, 38, 135, 0.35) 0%, rgba(0, 74, 173, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Right side - Content */
.jak-smartwatch-content {
    color: white;
    text-align: left;
}

.jak-smartwatch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 38, 135, 0.2);
    border: 1px solid rgba(229, 38, 135, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jak-magenta);
    margin-bottom: 20px;
}

.jak-smartwatch-badge i {
    font-size: 0.9rem;
}

.jak-smartwatch-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.jak-highlight-gradient {
    background: linear-gradient(135deg, var(--jak-magenta), var(--jak-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jak-smartwatch-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.jak-smartwatch-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jak-smartwatch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.jak-smartwatch-features li i {
    color: var(--jak-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Stamp filling animation */
.jak-watch-stamp.filling {
    animation: stampFill 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes stampFill {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    60% {
        transform: scale(1.25);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reward stamp filling animation */
.jak-watch-stamp.reward-active {
    animation: rewardPulse 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes rewardPulse {
    0% {
        transform: scale(0.3);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 194, 0, 0);
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 12px 4px rgba(255, 194, 0, 0.7);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 1px 3px rgba(255, 194, 0, 0.4);
    }
}

/* Stamp unfilling animation */
.jak-watch-stamp.unfilling {
    animation: stampUnfill 0.3s ease-out both;
}

@keyframes stampUnfill {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    40% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(0.3);
        opacity: 0;
    }
}

/* Reward stamp unfilling */
.jak-watch-stamp.reward.unfilling {
    animation: rewardUnfill 0.35s ease-out both;
}

@keyframes rewardUnfill {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 1px 3px rgba(255, 194, 0, 0.4);
    }
    30% {
        transform: scale(1.2);
        box-shadow: 0 0 10px 3px rgba(255, 194, 0, 0.6);
    }
    100% {
        transform: scale(0.3);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 194, 0, 0);
    }
}

/* Mobile responsive for smartwatch section */
@media (max-width: 768px) {
    .jak-smartwatch-section {
        padding: 60px 20px 80px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-smartwatch-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .jak-smartwatch-visual {
        min-height: 180px;
        order: 1;
    }

    .jak-smartwatch-content {
        order: 2;
        text-align: center;
    }

    .jak-smartwatch-featured.jak-smartwatch-icon {
        transform: rotate(-8deg) scale(1.8);
    }

    .jak-smartwatch-visual.visible .jak-smartwatch-featured {
        animation: slideInWatchMobile 1s ease-out forwards, watchSwayMobile 3s ease-in-out 1s infinite;
    }

    @keyframes slideInWatchMobile {
        from {
            opacity: 0;
            transform: translateX(-50px) rotate(-10deg) scale(1);
        }
        to {
            opacity: 1;
            transform: translateX(0) rotate(-8deg) scale(1.8);
        }
    }

    @keyframes watchSwayMobile {
        0%, 100% {
            transform: translateX(0) rotate(-8deg) scale(1.8) translateY(0);
        }
        50% {
            transform: translateX(0) rotate(-6deg) scale(1.8) translateY(-6px);
        }
    }

    .jak-smartwatch-title {
        font-size: 1.8rem;
    }

    .jak-smartwatch-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .jak-smartwatch-features {
        align-items: flex-start;
        max-width: 320px;
        margin: 0 auto;
    }

    .jak-smartwatch-features li {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .jak-smartwatch-section {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        padding: 50px 15px 60px;
    }
}

/* ==================== SPEED TRACK - Compact Horizontal Timeline ==================== */
.jak-speedtrack-section {
    background: var(--jak-light-bg);
    padding: 50px 20px 60px !important;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1400px) {
    .jak-speedtrack-section {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-speedtrack-header {
    text-align: center;
    margin-bottom: 35px;
}

.jak-speedtrack-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--jak-magenta), #c41e72);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(229, 38, 135, 0.35);
}

.jak-speedtrack-badge i {
    font-size: 1rem;
    animation: boltPulse 1.5s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Main Track Container */
.jak-speedtrack {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Step Item */
.jak-speedtrack-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 200px;
}

/* Node (Circle with number) */
.jak-speedtrack-node {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 3px solid var(--jak-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(229, 38, 135, 0.2);
    transition: all 0.3s ease;
}

.jak-speedtrack-node::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(229, 38, 135, 0.3);
    animation: nodeRotate 8s linear infinite;
}

@keyframes nodeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jak-speedtrack-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--jak-magenta);
    font-family: 'Poppins', sans-serif;
}

/* Final Node (Rocket) */
.jak-speedtrack-node-final {
    background: linear-gradient(135deg, var(--jak-green), #0d9668);
    border-color: var(--jak-green);
    box-shadow: 0 4px 15px rgba(30, 180, 130, 0.35);
}

.jak-speedtrack-node-final::before {
    border-color: rgba(30, 180, 130, 0.3);
}

.jak-speedtrack-node-final i {
    color: #fff;
    font-size: 1.3rem;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-4px) rotate(-15deg); }
}

/* Labels */
.jak-speedtrack-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 0 5px;
}

.jak-speedtrack-label strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jak-text);
    line-height: 1.2;
}

.jak-speedtrack-label span {
    font-size: 0.8rem;
    color: var(--jak-text-light);
    line-height: 1.4;
    max-width: 180px;
}

/* Connector */
.jak-speedtrack-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 24px; /* Half of node height (52px/2) - half of line height */
    flex-shrink: 0;
}

.jak-speedtrack-line {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--jak-magenta), var(--jak-magenta-dark));
    border-radius: 2px;
    position: relative;
}

.jak-speedtrack-line::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left: 7px solid var(--jak-magenta-dark);
}

@keyframes lineShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Final step styling */
.jak-speedtrack-final .jak-speedtrack-label strong {
    color: var(--jak-green);
}

/* Hover Effects */
.jak-speedtrack-step:hover .jak-speedtrack-node {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(229, 38, 135, 0.3);
}

.jak-speedtrack-final:hover .jak-speedtrack-node {
    box-shadow: 0 6px 20px rgba(30, 180, 130, 0.4);
}

/* Animation on scroll */
.jak-speedtrack.visible .jak-speedtrack-step {
    animation: stepFadeIn 0.5s ease-out forwards;
}

.jak-speedtrack.visible .jak-speedtrack-step:nth-child(1) { animation-delay: 0s; }
.jak-speedtrack.visible .jak-speedtrack-connector:nth-child(2) { animation-delay: 0.2s; }
.jak-speedtrack.visible .jak-speedtrack-step:nth-child(3) { animation-delay: 0.4s; }
.jak-speedtrack.visible .jak-speedtrack-connector:nth-child(4) { animation-delay: 0.6s; }
.jak-speedtrack.visible .jak-speedtrack-step:nth-child(5) { animation-delay: 0.8s; }

.jak-speedtrack-step,
.jak-speedtrack-connector {
    opacity: 0;
    transform: translateY(15px);
}

.jak-speedtrack.visible .jak-speedtrack-step,
.jak-speedtrack.visible .jak-speedtrack-connector {
    animation: stepFadeIn 0.5s ease-out forwards;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .jak-speedtrack-section {
        padding: 40px 15px 50px !important;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-speedtrack-badge {
        font-size: 1rem;
        padding: 10px 22px;
    }

    .jak-speedtrack {
        gap: 0;
    }

    .jak-speedtrack-node {
        width: 44px;
        height: 44px;
    }

    .jak-speedtrack-node::before {
        inset: -5px;
    }

    .jak-speedtrack-num {
        font-size: 1.1rem;
    }

    .jak-speedtrack-node-final i {
        font-size: 1.1rem;
    }

    .jak-speedtrack-label strong {
        font-size: 0.9rem;
    }

    .jak-speedtrack-label span {
        font-size: 0.75rem;
    }

    .jak-speedtrack-line {
        width: 30px;
        height: 3px;
    }

    .jak-speedtrack-line::before {
        border-width: 4px;
        border-left-width: 5px;
        right: -5px;
    }

    .jak-speedtrack-connector {
        padding-top: 20px; /* 44px/2 - 2px */
    }

    .jak-speedtrack-step {
        max-width: 160px;
    }

    .jak-speedtrack-label span {
        font-size: 0.7rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .jak-speedtrack-section {
        padding: 35px 10px 45px !important;
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
    }

    .jak-speedtrack-header {
        margin-bottom: 25px;
    }

    .jak-speedtrack-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
        gap: 8px;
    }

    .jak-speedtrack-node {
        width: 38px;
        height: 38px;
        border-width: 2px;
    }

    .jak-speedtrack-node::before {
        inset: -4px;
        border-width: 1.5px;
    }

    .jak-speedtrack-num {
        font-size: 1rem;
    }

    .jak-speedtrack-node-final i {
        font-size: 1rem;
    }

    .jak-speedtrack-label strong {
        font-size: 0.8rem;
    }

    .jak-speedtrack-label span {
        font-size: 0.7rem;
    }

    .jak-speedtrack-line {
        width: 18px;
        height: 2px;
    }

    .jak-speedtrack-line::before {
        border-width: 3px;
        border-left-width: 4px;
        right: -4px;
    }

    .jak-speedtrack-connector {
        padding-top: 17px; /* 38px/2 - 2px */
    }

    .jak-speedtrack-step {
        max-width: 100px;
    }

    .jak-speedtrack-label span {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .jak-speedtrack-label strong {
        font-size: 0.75rem;
    }
}

/* ==================== STATS STRIP - Compact Benefits ==================== */
.jak-stats-section {
    background: #fff;
    padding: 45px 20px 55px !important;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1400px) {
    .jak-stats-section {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-stats-header {
    text-align: center;
    margin-bottom: 28px;
}

.jak-stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--jak-dark);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(19, 11, 33, 0.3);
}

.jak-stats-badge i {
    color: var(--jak-yellow);
}

/* Stats Strip Container */
.jak-stats-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

/* Individual Stat Chip */
.jak-stat-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--jak-light-bg);
    padding: 12px 18px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

/* Alternating left/right positions */
.jak-stat-chip:nth-child(odd) {
    align-self: flex-start;
    margin-left: 20px;
}

.jak-stat-chip:nth-child(even) {
    align-self: flex-end;
    margin-right: 20px;
}

.jak-stat-chip:hover {
    transform: translateX(0) translateY(-3px) !important;
    border-color: var(--jak-magenta);
    box-shadow: 0 8px 25px rgba(229, 38, 135, 0.15);
}

/* Stat Icon */
.jak-stat-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--jak-yellow), #e6a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jak-stat-icon i {
    color: #fff;
    font-size: 0.95rem;
}

.jak-stat-icon-green {
    background: linear-gradient(135deg, var(--jak-green), #0d9668);
}

.jak-stat-icon-blue {
    background: linear-gradient(135deg, #4285F4, #2b6cb0);
}

.jak-stat-icon-purple {
    background: linear-gradient(135deg, var(--jak-magenta), #c41e72);
}

/* Stat Content */
.jak-stat-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.jak-stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--jak-text);
    line-height: 1;
}

.jak-stat-number i {
    font-size: 0.95rem;
    margin-right: 6px;
}

.jak-stat-number .fa-check {
    color: var(--jak-green);
}

.jak-stat-number .fa-arrow-up {
    color: var(--jak-green);
}

.jak-stat-text {
    font-size: 0.75rem;
    color: var(--jak-text-light);
    white-space: nowrap;
}

/* Google Maps special styling */
.jak-stat-google .jak-stat-icon {
    background: linear-gradient(135deg, #FBBC04, #EA4335);
}

.jak-stat-icon-maps {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(52, 168, 83, 0.15) 100%) !important;
    border: 2px solid rgba(66, 133, 244, 0.3);
}

.jak-stat-maps-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Scroll parallax handled by JavaScript - chips move opposite directions */
.jak-stats-strip .jak-stat-chip {
    transition: transform 0.1s ease-out;
}

/* Fade in on scroll */
.jak-stats-strip .jak-stat-chip {
    opacity: 0;
    transform: translateY(20px);
}

.jak-stats-strip.visible .jak-stat-chip {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.1s ease-out;
}

.jak-stats-strip.visible .jak-stat-chip:nth-child(1) { transition-delay: 0s, 0s; }
.jak-stats-strip.visible .jak-stat-chip:nth-child(2) { transition-delay: 0.1s, 0s; }
.jak-stats-strip.visible .jak-stat-chip:nth-child(3) { transition-delay: 0.2s, 0s; }
.jak-stats-strip.visible .jak-stat-chip:nth-child(4) { transition-delay: 0.3s, 0s; }

/* ==================== PREPAID - APPLE STYLE ==================== */
.jak-prepaid-dark {
    background: var(--jak-dark);
    padding: 60px 20px !important;
    position: relative;
    overflow: hidden;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 8px 32px rgba(19, 11, 33, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 1400px) {
    .jak-prepaid-dark {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-prepaid-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 38, 135, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.jak-prepaid-wrap {
    max-width: 700px;
    margin: 0 auto;
}

/* Header z tytułem */
.jak-prepaid-header {
    text-align: center;
    margin-bottom: 20px;
}

.jak-prepaid-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--jak-magenta);
    background: rgba(229, 38, 135, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.jak-prepaid-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.jak-prepaid-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Content: Karta + Features obok siebie */
.jak-prepaid-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Pass Visual - Elegant Card */
.jak-pass-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Savings Badge - Mega Custom Style */
.jak-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(30, 180, 130, 0.15) 0%, rgba(30, 180, 130, 0.08) 100%);
    border: 1px solid rgba(30, 180, 130, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

.jak-savings-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.jak-savings-badge i {
    font-size: 0.9rem;
    color: var(--jak-green);
    filter: drop-shadow(0 0 6px rgba(30, 180, 130, 0.5));
}

.jak-savings-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.jak-pass-card {
    width: 220px;
    background: linear-gradient(145deg, #1e1e2e 0%, #2a2a3e 100%);
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.jak-pass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--jak-magenta);
}

.jak-pass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.jak-pass-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.jak-pass-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.jak-pass-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.jak-pass-highlight {
    color: var(--jak-green);
}

.jak-pass-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Coffee Track - Apple Style */
.jak-coffee-track {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 5px;
}

.jak-coffee-cup {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Collected coffee - elegant warm brown */
.jak-coffee-cup.collected {
    background: linear-gradient(145deg, #8B6914 0%, #6B4423 100%);
    color: #fff;
    box-shadow:
        0 3px 12px rgba(107, 68, 35, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.jak-coffee-cup.collected i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Bonus cup - green with glow */
.jak-coffee-cup.bonus {
    background: linear-gradient(145deg, var(--jak-green) 0%, #15a070 100%);
    color: #fff;
    box-shadow:
        0 3px 12px rgba(30, 180, 130, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: bonusPulse 2.5s ease-in-out infinite;
}

.jak-coffee-cup.bonus i {
    font-size: 0.75rem;
}

@keyframes bonusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(30, 180, 130, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 20px rgba(30, 180, 130, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.jak-prepaid-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Specific selector to override global .jak-feature-item */
.jak-prepaid-features .jak-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jak-prepaid-features .jak-feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: none;
    box-shadow: none;
}

.jak-prepaid-features .jak-feature-item i {
    width: 32px;
    height: 32px;
    background: rgba(229, 38, 135, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jak-magenta);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .jak-prepaid-dark {
        padding: 50px 15px !important;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-prepaid-content {
        flex-direction: column;
        gap: 25px;
    }

    .jak-pass-card {
        width: 200px;
        padding: 22px;
    }

    .jak-pass-big {
        font-size: 3rem;
    }

    .jak-coffee-cup {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .jak-savings-badge {
        padding: 8px 14px;
    }

    .jak-savings-badge span {
        font-size: 0.75rem;
    }

    .jak-prepaid-heading {
        font-size: 1.5rem;
    }

    .jak-prepaid-features {
        align-items: stretch;
    }

    .jak-prepaid-features .jak-feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .jak-prepaid-dark {
        padding: 40px 10px !important;
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
    }

    .jak-prepaid-heading {
        font-size: 1.3rem;
    }

    .jak-prepaid-desc {
        font-size: 0.9rem;
    }

    .jak-pass-card {
        width: 190px;
        padding: 20px;
    }

    .jak-pass-big {
        font-size: 2.8rem;
    }

    .jak-pass-unit {
        font-size: 0.8rem;
    }

    .jak-coffee-cup {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .jak-coffee-track {
        gap: 6px;
    }

    .jak-savings-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .jak-savings-badge i {
        font-size: 0.8rem;
    }

    .jak-savings-badge span {
        font-size: 0.7rem;
    }

    .jak-prepaid-features .jak-feature-item {
        font-size: 0.85rem;
        padding: 12px 15px;
    }

    .jak-prepaid-features .jak-feature-item i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ==================== BONUS - COMPACT DOPAMINE ==================== */
.jak-bonus-compact {
    background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%);
    padding: 40px 20px !important;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1400px) {
    .jak-bonus-compact {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

.jak-bonus-strip {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Label z prezentem */
.jak-bonus-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--jak-magenta) 0%, #c41e6a 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(229, 38, 135, 0.35);
    position: relative;
    overflow: hidden;
}

.jak-bonus-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: labelShimmer 2.5s ease-in-out infinite;
}

@keyframes labelShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.jak-bonus-label i {
    font-size: 1rem;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.15) rotate(-5deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.15) rotate(5deg); }
}

/* Items container */
.jak-bonus-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Bonus Chips */
.jak-bonus-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 38, 135, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.jak-bonus-chip:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(229, 38, 135, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(229, 38, 135, 0.25);
}

.jak-chip-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(229, 38, 135, 0.12) 0%, rgba(229, 38, 135, 0.06) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--jak-magenta);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.jak-bonus-chip:hover .jak-chip-icon {
    background: linear-gradient(135deg, var(--jak-magenta) 0%, #c41e6a 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.jak-chip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jak-chip-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--jak-text);
}

.jak-chip-text span {
    font-size: 0.8rem;
    color: var(--jak-text-light);
}

/* Instagram CTA Button */
.jak-bonus-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(193, 53, 132, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.jak-bonus-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.jak-bonus-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(193, 53, 132, 0.5);
}

.jak-bonus-cta i.fa-instagram {
    font-size: 1.1rem;
}

.jak-bonus-cta i.fa-arrow-right {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.jak-bonus-cta:hover i.fa-arrow-right {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 600px) {
    .jak-bonus-cta {
        font-size: 0.8rem;
        padding: 10px 18px;
        gap: 8px;
    }

    .jak-bonus-compact {
        padding: 30px 15px !important;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-bonus-strip {
        gap: 15px;
    }

    .jak-bonus-label {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .jak-bonus-items {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .jak-bonus-chip {
        padding: 12px 16px;
        gap: 12px;
    }

    .jak-chip-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .jak-chip-text strong {
        font-size: 0.9rem;
    }

    .jak-chip-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .jak-bonus-compact {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        padding: 25px 12px !important;
    }
}

/* ==================== CTA SECTION ==================== */
.jak-cta-section {
    background: var(--jak-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    /* Elegancki styl karty na desktop */
    max-width: none;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 32px;
    box-shadow:
        0 8px 32px rgba(19, 11, 33, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 1400px) {
    .jak-cta-section {
        max-width: 1360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .jak-cta-section {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
        padding: 70px 15px;
    }
}

@media (max-width: 480px) {
    .jak-cta-section {
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
        padding: 50px 15px;
    }
}

.jak-cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jak-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 38, 135, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.jak-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.jak-cta-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.jak-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.jak-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: var(--jak-transition);
}

.jak-cta-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--jak-magenta), var(--jak-magenta-dark));
    transition: var(--jak-transition);
}

.jak-cta-btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.jak-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(229, 38, 135, 0.5);
}

.jak-cta-btn:hover .jak-cta-btn-bg {
    transform: scale(1.1);
}

.jak-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.jak-proof-item {
    text-align: center;
}

.jak-proof-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--jak-magenta);
}

.jak-proof-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.jak-proof-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ==================== FOOTER ==================== */
.jak-footer {
    background: var(--jak-darker);
    padding: 40px 20px;
    text-align: center;
}

.jak-footer-logo {
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.jak-footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .jak-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .jak-section {
        padding: 50px 15px 40px;
    }

    .jak-hero {
        padding: 80px 15px 20px;
        min-height: auto;
    }

    .jak-back-btn {
        top: 10px;
        left: 10px;
        padding: 10px 16px;
    }

    .jak-hero-scroll-indicator {
        font-size: 0.75rem;
        gap: 6px;
        padding: 10px 16px;
    }

    .jak-scroll-mouse {
        width: 22px;
        height: 34px;
    }

    .jak-scroll-wheel {
        width: 3px;
        height: 6px;
    }

    .jak-floating-stamp {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        opacity: 0.4;
    }

    /* Stats Strip Tablet */
    .jak-stats-section {
        padding: 40px 15px 50px !important;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
    }

    .jak-stats-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .jak-stats-strip {
        gap: 8px;
        max-width: 400px;
    }

    .jak-stat-chip {
        padding: 11px 16px;
        gap: 10px;
    }

    .jak-stat-chip:nth-child(odd) {
        margin-left: 10px;
    }

    .jak-stat-chip:nth-child(even) {
        margin-right: 10px;
    }

    .jak-stat-icon {
        width: 32px;
        height: 32px;
    }

    .jak-stat-icon i {
        font-size: 0.85rem;
    }

    .jak-stat-maps-logo {
        width: 20px;
        height: 20px;
    }

    .jak-stat-number {
        font-size: 1rem;
    }

    .jak-stat-number i {
        margin-right: 5px;
    }

    .jak-stat-text {
        font-size: 0.72rem;
    }

    /* Compact steps mobile */
    .jak-compact-step {
        gap: 15px;
    }

    .jak-compact-number {
        font-size: 3.5rem;
        min-width: 50px;
    }

    .jak-compact-title {
        font-size: 1.4rem;
    }

    .jak-compact-desc {
        font-size: 1rem;
    }

    .jak-insight-box {
        padding: 20px;
        gap: 15px;
        margin-left: 65px;
        margin-right: 15px;
    }

    .jak-insight-icon {
        font-size: 1.5rem;
    }

    .jak-insight-content {
        font-size: 0.95rem;
    }

    .jak-highlight-pink {
        font-size: 1rem;
    }

    .jak-step-container {
        flex-direction: column !important;
        gap: 40px;
    }

    .jak-step-section {
        padding: 60px 15px;
    }

    .jak-phone-mockup {
        width: 240px;
        height: 480px;
    }

    .jak-card-stamps {
        gap: 6px;
    }

    .jak-stamp {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .jak-integrations-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    /* Stats Strip Mobile */
    .jak-stats-section {
        padding: 35px 10px 45px !important;
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 20px;
    }

    .jak-stats-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .jak-stats-strip {
        gap: 8px;
        max-width: 320px;
    }

    .jak-stat-chip {
        padding: 10px 14px;
        gap: 10px;
    }

    .jak-stat-chip:nth-child(odd) {
        margin-left: 5px;
    }

    .jak-stat-chip:nth-child(even) {
        margin-right: 5px;
    }

    .jak-stat-icon {
        width: 30px;
        height: 30px;
    }

    .jak-stat-icon i {
        font-size: 0.8rem;
    }

    .jak-stat-maps-logo {
        width: 18px;
        height: 18px;
    }

    .jak-stat-number {
        font-size: 0.95rem;
    }

    .jak-stat-number i {
        margin-right: 4px;
    }

    .jak-stat-text {
        font-size: 0.7rem;
    }

    .jak-prepaid-container {
        padding: 40px 20px;
    }

    .jak-prepaid-content {
        flex-direction: column;
        gap: 40px;
    }

    .jak-bonus-grid {
        grid-template-columns: 1fr;
    }

    .jak-social-proof {
        flex-direction: column;
        gap: 20px;
    }

    .jak-proof-divider {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .jak-hero-title {
        font-size: 1.8rem;
    }

    .jak-hero-scroll-indicator {
        padding: 8px 14px;
    }

    .jak-floating-stamp {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        opacity: 0.3;
    }

    .jak-compact-step {
        gap: 12px;
    }

    .jak-compact-number {
        font-size: 2.8rem;
        min-width: 40px;
    }

    .jak-compact-title {
        font-size: 1.2rem;
    }

    .jak-compact-desc {
        font-size: 0.95rem;
    }

    .jak-insight-box {
        margin-left: 52px;
        margin-right: 10px;
        padding: 15px;
    }

    .jak-insight-icon {
        font-size: 1.3rem;
    }

    .jak-insight-content {
        font-size: 0.9rem;
    }

    .jak-inline-btn {
        padding: 4px 10px;
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .jak-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .jak-hero-cta,
    .jak-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .jak-step-number-large {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .jak-step-features {
        flex-direction: column;
    }

    .jak-feature-item {
        width: 100%;
    }

    .jak-coffee-stack {
        gap: 8px;
    }

    .jak-coffee-item {
        width: 40px;
        height: 55px;
    }
}

/* ==================== ENROLLMENT INVITATION IN CTA ==================== */
.jak-enrollment-invitation {
    max-width: 500px;
    margin: 0 auto;
}

.jak-enrollment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.jak-enrollment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
}

.jak-enrollment-icon i {
    font-size: 22px;
    color: white;
}

.jak-enrollment-text {
    text-align: left;
}

.jak-enrollment-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
    text-align: left;
}

.jak-enrollment-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.jak-enrollment-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.jak-enrollment-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jak-enrollment-benefit i {
    font-size: 15px;
    color: var(--jak-magenta);
    flex-shrink: 0;
}

.jak-enrollment-benefit span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    white-space: nowrap;
}

.jak-enrollment-benefit span strong {
    color: #fff;
}

@media (max-width: 480px) {
    .jak-enrollment-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}
