/* Dominika Woźniak Website - Metafora Górskiej Wyprawy */

/* Root variables - błękitno-granatowa paleta z ciepłym akcentem */
:root {
    /* Primary colors - błękit i granat (zaufanie, spokój, stabilność) */
    --primary-blue: #5B9BD5;
    --primary-navy: #1F3A5F;
    --primary: #1F3A5F;
    --primary-light: #5B9BD5;
    --primary-accent: #729FCC;

    /* Secondary colors - warm taupe (ciepło bez agresji) */
    --accent-taupe: #C9A68A;
    --accent-gold: #D4AF37;
    --secondary: #C9A68A;
    --secondary-light: #D4AF37;
    --accent: #C9A68A;
    --accent-light: #D4AF37;

    /* Neutral colors - professional grays */
    --neutral-white: #FFFFFF;
    --neutral-light: #F5F7FA;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;

    /* Background colors */
    --background: #FFFFFF;
    --background-alt: #F5F7FA;
    --background-warm: #F9FAFB;
    --background-accent: #EBF5FF;

    /* Borders and subtle elements */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E0;

    /* Shadows - z odcieniem primary */
    --shadow-sm: 0 1px 3px rgba(31, 58, 95, 0.1);
    --shadow-md: 0 4px 6px rgba(31, 58, 95, 0.1);
    --shadow-lg: 0 10px 25px rgba(31, 58, 95, 0.15);
    --shadow-xl: 0 20px 40px rgba(31, 58, 95, 0.2);

    /* Spacing - organiczne (NIE matematyczne) */
    --space-md: 1.85rem;
    --space-lg: 3.7rem;
    --space-xl: 5.3rem;
    --space-2xl: 7.9rem;

    /* Typography */
    --font-primary: 'Inter Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;

    /* Timing - animacje */
    --timing-fast: 200ms;
    --timing-medium: 350ms;
    --timing-slow: 500ms;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   ENHANCED MICRO-INTERACTIONS
   ========================================== */

/* Buttons - Enhanced hover states */
.btn-primary,
.btn-secondary,
.nav-cta,
.wspolpraca-cta {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.wspolpraca-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.wspolpraca-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* Cards - Tilt effect on hover */
.icon-card,
.case-card,
.wspolpraca-card,
.testimonial-card {
    transition: all 0.4s var(--easing);
    transform-style: preserve-3d;
}

.icon-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(31, 58, 95, 0.15);
}

.case-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.wspolpraca-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(31, 58, 95, 0.18);
}

/* Card glow border on hover */
.icon-card::after,
.wspolpraca-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.icon-card:hover::after,
.wspolpraca-card:hover::after {
    border-color: rgba(91, 155, 213, 0.3);
}

/* Timeline markers - Enhanced pulse */
.timeline-marker {
    position: relative;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(91, 155, 213, 0.1);
    animation: markerGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes markerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* FAQ items - Smooth expand */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: rgba(91, 155, 213, 0.05);
}

.faq-item summary {
    transition: color 0.3s ease;
}

.faq-item:hover summary {
    color: var(--primary);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.nav.scrolled {
    background: rgba(31, 58, 95, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: var(--shadow-lg);
}

.nav.scrolled .nav-menu a {
    color: #FFFFFF;
}

.nav.scrolled .nav-menu a:hover {
    color: var(--accent-light);
}

.nav.scrolled .nav-menu a::after {
    background: var(--accent-light);
}

.nav.scrolled .nav-logo-text {
    color: #FFFFFF;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.nav-logo {
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-personal-link,
.nav-blog-link {
    font-size: 14px !important;
    opacity: 0.8;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-mobile-toggle:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--background-warm) 0%, var(--background-accent) 50%, rgba(31, 58, 95, 0.03) 100%);
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(91, 155, 213, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Mountain SVG Background */
.hero-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mountain-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-out;
}

.mountain-far {
    transform: translateY(40%);
    animation: mountainFloat 8s ease-in-out infinite;
}

.mountain-mid {
    transform: translateY(30%);
    animation: mountainFloat 6s ease-in-out infinite reverse;
}

.mountain-near {
    transform: translateY(20%);
    animation: mountainFloat 10s ease-in-out infinite;
}

@keyframes mountainFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mountain-logo-accent {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 300px;
    height: auto;
    opacity: 0.6;
    animation: logoAccentPulse 4s ease-in-out infinite;
}

@keyframes logoAccentPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

/* Gradient Orbs - Drifting blobs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: orbDrift1 20s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation: orbDrift2 15s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(31, 58, 95, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: orbDrift3 18s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-30px, 20px); }
    50% { transform: translate(-50px, -10px); }
    75% { transform: translate(-20px, -30px); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -20px); }
    66% { transform: translate(20px, 30px); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -40px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.hero-title-line2 {
    display: block;
    white-space: nowrap;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-urgency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-icon {
    font-size: 20px;
    animation: urgencyShake 0.5s ease-in-out infinite;
}

.urgency-text strong {
    font-weight: 700;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes urgencyShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 6px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--timing-medium) cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(91, 155, 213, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 32px rgba(91, 155, 213, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.3);
}

.btn-secondary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 18px 30px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero Image Wrapper with Floating Badges and Glow */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Badges - Frosted Glass Style */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(31, 58, 95, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(31, 58, 95, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-years {
    top: 10%;
    right: -20px;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-companies {
    bottom: 15%;
    left: -30px;
    animation: badgeFloat 4s ease-in-out infinite 1s;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mountain Glow Behind Image */
.hero-image-glow {
    position: absolute;
    width: 460px;
    height: 560px;
    border-radius: 30px;
    background: linear-gradient(135deg,
        rgba(91, 155, 213, 0.3) 0%,
        rgba(31, 58, 95, 0.2) 50%,
        rgba(212, 175, 55, 0.15) 100%
    );
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    /* Architektura ramki */
    max-width: 420px;
    border-radius: 30px;
    padding: 4px;
    background: linear-gradient(160deg,
        rgba(91, 155, 213, 0.6) 0%,
        rgba(31, 58, 95, 0.8) 50%,
        rgba(201, 166, 138, 0.4) 100%
    );
    box-shadow:
        0 30px 80px rgba(31, 58, 95, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 60px 100px rgba(31, 58, 95, 0.2);
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(31, 58, 95, 0.3), 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-placeholder {
    width: 420px;
    height: 520px;
    border-radius: 30px;
    background: var(--background-alt);
    border: 2px dashed var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 14px;
}

/* Mountain Dividers - Section separators */
/* Sekcje z dividerami - muszą mieć position relative */
.o-mnie,
.dlaczego-ja,
.sukcesy,
.oferta,
.znajomo-section,
.testimonials,
.contact,
.faq {
    position: relative;
    padding-bottom: 80px; /* miejsce na divider */
}

.mountain-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.mountain-divider svg {
    width: 100%;
    height: 80px; /* zwiększone z 60px dla lepszych proporcji gór */
    display: block;
}

.mountain-divider.divider-flip {
    bottom: 0;
}

.mountain-divider.divider-flip svg {
    height: 50px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Highlight Mark - Yellow underline effect */
.highlight-mark {
    position: relative;
    display: inline;
}

.highlight-mark::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.5) 100%);
    z-index: -1;
    border-radius: 2px;
}

/* Rounded image wrapper - architektura ramki */
.o-mnie-image {
    display: inline-flex;
    justify-content: center;
    position: sticky;
    top: 120px;
    align-self: start;
    /* Architektura ramki */
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(160deg,
        rgba(91, 155, 213, 0.6) 0%,
        rgba(31, 58, 95, 0.8) 50%,
        rgba(201, 166, 138, 0.4) 100%
    );
    box-shadow:
        0 25px 60px rgba(31, 58, 95, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 50px 80px rgba(31, 58, 95, 0.18);
}

/* Rounded image - uniwersalny komponent */
.rounded-image {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Mobile: O mnie image responsywność */
@media (max-width: 768px) {
    .o-mnie-image {
        padding: 3px;
    }

    .rounded-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .rounded-image {
        width: 240px;
        height: 240px;
    }
}

/* O mnie Section */
.o-mnie {
    padding: var(--space-xl) 0;
    background: var(--background-warm);
}

.o-mnie-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.o-mnie-text {
    max-width: 650px;
}

.o-mnie .section-header {
    text-align: left;
    margin-bottom: var(--space-md);
}

.o-mnie-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: var(--space-md) 0;
}

.o-mnie-text p {
    margin-bottom: 1rem;
    line-height: 1.65;
    color: var(--text-medium);
}

.o-mnie-quote {
    margin: var(--space-lg) auto;
    padding: var(--space-md);
    max-width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 1.8rem;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    position: relative;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.o-mnie-quote::before {
    content: '"';
    font-size: 3.5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

@media (max-width: 890px) {
    .o-mnie-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .o-mnie-image {
        order: -1;
    }

    .o-mnie .section-header {
        text-align: center;
    }

    .o-mnie-lead {
        font-size: 1.15rem;
        text-align: center;
    }

    .o-mnie-text p {
        text-align: center;
    }

    .o-mnie-quote {
        font-size: 1.05rem;
    }
}

/* Dlaczego ja Section */
.dlaczego-ja {
    padding: var(--space-xl) 0;
    background: var(--background);
}

.dlaczego-ja .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.dlaczego-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.icon-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--background-warm);
    border-radius: 2.3rem;
    transition: all var(--timing-medium) var(--easing);
    border: 2px solid transparent;
    position: relative;
}

.icon-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91, 155, 213, 0.2);
}

.icon-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: block;
}

.icon-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    white-space: nowrap;
}

.icon-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.65;
}

@media (max-width: 890px) {
    .dlaczego-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Sukcesy Section */
.sukcesy {
    padding: var(--space-xl) 0;
    background: var(--background-warm);
}

.sukcesy .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.sukcesy-swiper {
    padding: 0 50px 60px 50px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.sukcesy-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.sukcesy-swiper .swiper-button-prev,
.sukcesy-swiper .swiper-button-next {
    color: var(--primary);
    width: 44px;
    height: 44px;
}

.sukcesy-swiper .swiper-button-prev::after,
.sukcesy-swiper .swiper-button-next::after {
    font-size: 20px;
}

.sukcesy-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.case-card {
    background: var(--background);
    padding: var(--space-md);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--timing-medium) var(--easing);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.case-icon .icon-svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.case-section {
    margin-bottom: var(--space-md);
    padding: 1.2rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
    /* Animacja sekwencyjna - startuje ukryte */
    opacity: 0;
    transform: translateY(15px);
}

.case-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays dla sekwencyjnego reveal */
.case-section:nth-child(2) { transition-delay: 0s; }
.case-section:nth-child(3) { transition-delay: 0.3s; }
.case-section:nth-child(4) { transition-delay: 0.6s; }

.case-section:last-child {
    margin-bottom: 0;
}

/* Jednolity styl dla wszystkich sekcji - bez kolorowych tł */
.case-section:nth-child(2),
.case-section:nth-child(3),
.case-section:nth-child(4) {
    background-color: rgba(91, 155, 213, 0.04);
    border-left: 3px solid var(--primary-light);
}

/* Subtelna progresja opacity dla wizualnego flow */
.case-section:nth-child(2) {
    border-left-color: var(--primary);
    opacity: 0.95;
}

.case-section:nth-child(3) {
    border-left-color: var(--primary-light);
}

.case-section:nth-child(4) {
    border-left-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.case-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.case-section p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.case-section strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .sukcesy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .sukcesy-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Szlaki Section */
.szlaki {
    padding: 5rem 0;
    background: var(--background-warm);
}

.szlaki-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.7rem;
    margin-top: 5.3rem;
}

.szlak-item {
    text-align: center;
    padding: 2.3rem 1.85rem;
    background: var(--background);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.szlak-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.szlak-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.85rem;
    color: var(--primary);
    display: block;
}

.szlak-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.szlak-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

@media (max-width: 890px) {
    .szlaki-grid {
        grid-template-columns: 1fr;
        gap: 2.3rem;
    }

    .szlak-item {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Pogoda Section */
.pogoda {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pogoda::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.pogoda-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pogoda .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 1.85rem;
}

.pogoda h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.85rem;
    color: white;
}

.pogoda-lead {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.pogoda p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 890px) {
    .pogoda h2 {
        font-size: 2rem;
    }

    .pogoda-lead {
        font-size: 1.15rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--background);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.problem-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 25px 25px 0 0;
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.problem-stat {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.problem-summary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.problem-summary h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.problem-summary p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--background-warm);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 100px;
    align-items: start;
}

.story-timeline {
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-year {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 16px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 140px;
}

.story-image img {
    width: 100%;
    max-width: 420px;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.story-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    background: var(--background-alt);
    border: 2px dashed var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Framework Section */
.framework {
    padding: 80px 0;
    background: var(--background);
}

.framework-steps {
    display: grid;
    gap: 60px;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    align-items: start;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.step-features {
    list-style: none;
    display: grid;
    gap: 16px;
}

.step-features li {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 32px;
    font-size: 16px;
}

.step-features li::before {
    content: '✓';
    color: var(--primary-accent);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.results .section-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
}

.results .section-header h2 {
    color: white;
}

.results .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.result-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
}

.result-number {
    font-size: 42px;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 12px;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 20px;
}

.result-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--background);
}

.testimonials .section-subtitle {
    font-style: italic;
    color: var(--text-light);
}

.testimonials-swiper {
    padding: 0 50px 50px 50px;
    position: relative;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: white;
    padding: 20px 18px;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.testimonial-rating {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 12px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.author-company {
    font-size: 0.75rem;
    color: var(--text-medium);
}

.testimonial-result {
    background: var(--background-accent);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.testimonial-result strong {
    color: var(--primary);
    font-weight: 700;
}

.testimonials-cta {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
}

.testimonials-cta .inline-cta {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.testimonials-cta .inline-cta:hover {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--background-warm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pricing-card.featured .pricing-header h3 {
    color: white;
}

.pricing-duration {
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-duration {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-medium);
    font-size: 16px;
}

.pricing-card.featured .pricing-content p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 50px;
}

.pricing-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
    color: var(--text-dark);
    font-size: 16px;
}

.pricing-card.featured .pricing-features li {
    color: white;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-accent);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 18px;
}

.pricing-card.featured .pricing-features li::before {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    text-align: center;
}

.pricing-card.featured .pricing-footer {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
}

.pricing-card.featured .pricing-cta {
    background: white;
    color: var(--primary);
}

.pricing-card.featured .pricing-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

.pricing-guarantee {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.pricing-guarantee h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-guarantee p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Value Stack */
.value-stack {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.value-stack-header {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.value-stack-items {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.value-stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.value-item-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
}

.value-item-price {
    color: white;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.value-stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 12px;
}

.value-total-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.value-total-price {
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-decoration: line-through;
    opacity: 0.8;
}

.value-stack-actual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    margin: 16px 0;
}

.value-actual-label {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.value-actual-price {
    color: white;
    font-size: 28px;
    font-weight: 900;
}

.value-stack-savings {
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: savingsPulse 2s ease-in-out infinite;
}

.value-stack-savings strong {
    font-weight: 900;
    font-size: 18px;
}

@keyframes savingsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Oferta Section */
.oferta {
    padding: var(--space-xl) 0;
    background: var(--background);
}

.oferta .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.wspolpraca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto var(--space-xl);
}

.wspolpraca-card {
    background: var(--background-warm);
    padding: var(--space-lg) var(--space-md);
    border-radius: 2.3rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--timing-medium) var(--easing);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.wspolpraca-card:hover {
    transform: translateY(-5px) rotate(-0.3deg);
    box-shadow: var(--shadow-xl);
    border-color: rgba(91, 155, 213, 0.2);
}

.wspolpraca-card.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
    color: white;
    border-color: var(--primary);
}

.wspolpraca-card.featured h3 {
    color: white;
}

.wspolpraca-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.wspolpraca-card.featured .wspolpraca-duration {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 0.5rem 1.2rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.wspolpraca-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.wspolpraca-duration {
    background: var(--background-accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.wspolpraca-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.wspolpraca-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    text-align: left;
    flex-grow: 1;
}

.wspolpraca-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.9rem;
    color: var(--text-medium);
    line-height: 1.65;
}

.wspolpraca-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.wspolpraca-card.featured .wspolpraca-list li {
    color: rgba(255, 255, 255, 0.95);
}

.wspolpraca-card.featured .wspolpraca-list li::before {
    color: white;
}

.wspolpraca-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-taupe) 0%, var(--accent-gold) 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--timing-medium) var(--easing);
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.wspolpraca-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wspolpraca-card.featured .wspolpraca-cta {
    background: white;
    color: var(--primary);
}

.wspolpraca-note {
    max-width: 750px;
    margin: 0 auto;
    padding: var(--space-md);
    background: var(--background-accent);
    border-left: 4px solid var(--primary-light);
    border-radius: 1.2rem;
    text-align: left;
}

.wspolpraca-note p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.wspolpraca-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 890px) {
    .wspolpraca-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Contact Section - Cal.com Inline Embed */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--background);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

#my-cal-inline-30min {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    background: white;
}

/* Lead Magnet Box - Mountain Theme */
.lead-magnet {
    margin-top: var(--space-xl);
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(31, 58, 95, 0.04) 0%, rgba(91, 155, 213, 0.1) 50%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 2rem;
    border: 2px solid rgba(91, 155, 213, 0.12);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem 2rem;
    align-items: center;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 58, 95, 0.08);
}

.lead-magnet::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(91, 155, 213, 0.05) 100%);
    clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 50%, 80% 70%, 100% 40%, 100% 100%);
}

.lead-magnet-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    background: rgba(91, 155, 213, 0.1);
    grid-row: 1 / 2;
    border-radius: 50%;
    padding: 18px;
}

.lead-magnet-icon svg {
    width: 100%;
    height: 100%;
}

.lead-magnet-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.lead-magnet-content {
    grid-row: 1 / 2;
}

.lead-magnet-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.lead-magnet-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0;
}

.lead-magnet-form {
    display: flex;
    gap: 0.5rem;
    grid-row: 1 / 2;
}

.lead-magnet-form input {
    width: 180px;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.1);
}

.lead-magnet-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lead-magnet-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.3);
}

.lead-magnet-privacy {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .lead-magnet {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .lead-magnet-icon {
        margin: 0 auto;
    }

    .lead-magnet-form {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }

    .lead-magnet-form input {
        width: 100%;
    }

    .lead-magnet-form button {
        width: 100%;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-info p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: var(--text-medium);
}

/* Calendly CTA Styles */
.calendly-cta {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.calendly-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.calendly-cta h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.calendly-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 40px;
}

.calendly-benefits {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.calendly-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--background-accent);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.calendly-benefit:hover {
    transform: translateX(5px);
    background: rgba(91, 155, 213, 0.15);
}

.benefit-icon {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.calendly-benefit span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.calendly-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.calendly-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
}

.calendly-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.calendly-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-light);
}

.calendly-note a:hover {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--primary-accent);
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links {
    display: grid;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-settings,
.cookie-decline {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary-accent);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-settings {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-decline:hover {
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-light);
}

.cookie-modal-header h3 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 600;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--primary);
}

.cookie-modal-body {
    padding: 40px;
}

.cookie-category {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-header h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.cookie-category p {
    color: var(--text-medium);
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-medium);
    transition: 0.3s;
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-accent);
}

input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-modal-footer {
    padding: 30px 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
}

.cookie-save,
.cookie-accept-all {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-save {
    background: var(--background-alt);
    color: var(--text-dark);
}

.cookie-save:hover {
    background: var(--border-light);
}

.cookie-accept-all {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.cookie-accept-all:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-image {
        position: static;
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .calendly-cta {
        padding: 40px 30px;
    }

    .calendly-benefits {
        gap: 12px;
    }

    .calendly-benefit {
        padding: 12px 16px;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 24px;
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-line2 {
        white-space: normal;
    }

    .hero-stats {
        justify-content: space-around;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    /* Hide complex elements on mobile */
    .hero-mountains,
    .gradient-orbs,
    .particles-container {
        display: none;
    }

    /* Floating badges - mobile positioning */
    .floating-badge {
        padding: 8px 12px;
    }

    .badge-years {
        top: -10px;
        right: 10px;
    }

    .badge-companies {
        bottom: 10%;
        left: 5px;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .badge-label {
        font-size: 0.6rem;
    }

    /* Glow smaller on mobile */
    .hero-image-glow {
        width: 320px;
        height: 400px;
        filter: blur(30px);
    }

    /* Hero image frame - mobile */
    .hero-image {
        max-width: 300px;
        padding: 3px;
    }

    .hero-image img {
        height: 380px;
        border-radius: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }
    
    .problem-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-swiper {
        padding: 0 20px 60px 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .cookie-modal-content {
        margin: 20px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .problem-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
}

/* Loading and Animation States */
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-placeholder,
.story-placeholder {
    animation: pulse 2s infinite;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background: var(--background);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-card h2 {
    margin-bottom: 16px;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--background-alt);
    color: var(--text-medium);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 16px;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.newsletter-form button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.newsletter-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Personal Page Styles */
.personal-hero {
    background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-accent) 100%);
    padding: 140px 0 100px;
}

.personal-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.personal-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.personal-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 40px;
}

.personal-stats {
    display: flex;
    gap: 40px;
}

.personal-stat {
    text-align: left;
}

.personal-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.personal-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.personal-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.personal-hero-image img {
    width: 100%;
    max-width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    /* Semi-transparent gradient - particles prześwitują */
    background: linear-gradient(160deg,
        rgba(26, 39, 68, 0.85) 0%,
        rgba(45, 74, 110, 0.8) 40%,
        rgba(31, 58, 95, 0.85) 70%,
        rgba(21, 34, 56, 0.9) 100%
    );
}

.values-section {
    padding: 120px 0;
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.value-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.experience-section {
    padding: 120px 0;
    background: var(--background-warm);
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-year {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    min-width: 120px;
    height: fit-content;
}

.experience-content h4 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.experience-position {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.experience-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-achievements {
    display: grid;
    gap: 8px;
}

.experience-achievements span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.philosophy-section {
    padding: 120px 0;
    background: var(--background);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.philosophy-points {
    margin-bottom: 40px;
}

.philosophy-point {
    margin-bottom: 30px;
}

.philosophy-point h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.philosophy-point p {
    color: var(--text-medium);
    line-height: 1.6;
}

.philosophy-quote {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-accent) 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.certifications-section {
    padding: 120px 0;
    background: var(--background-alt);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.certification-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.certification-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-institution {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.cert-year {
    color: var(--text-light);
    font-size: 14px;
}

.personal-facts-section {
    padding: 120px 0;
    background: var(--background-warm);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fact-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.fact-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.fact-card p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 14px;
}

.personal-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.personal-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.personal-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.personal-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.personal-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.personal-cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.personal-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Process/Framework Section */
.proces {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--background-warm) 0%, var(--background) 100%);
    position: relative;
}

/* Timeline - Horizontal Journey */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
    padding: 0 40px;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 100px;
    right: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 250px;
}

.timeline-marker {
    position: relative;
    margin-bottom: var(--space-md);
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(91, 155, 213, 0.35);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(91, 155, 213, 0.45);
}

.timeline-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

.timeline-step:nth-child(2) .timeline-pulse { animation-delay: 0.3s; }
.timeline-step:nth-child(3) .timeline-pulse { animation-delay: 0.6s; }
.timeline-step:nth-child(4) .timeline-pulse { animation-delay: 0.9s; }

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.timeline-content {
    text-align: center;
    padding: var(--space-md);
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-badge {
    display: inline-block;
    background: var(--background-accent);
    color: var(--primary-navy);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: calc(100% - 100px);
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-light) 100%);
    }

    .timeline-step {
        max-width: 300px;
    }
}

.proces-cta {
    text-align: center;
    margin-top: var(--space-xl);
    margin-bottom: 100px; /* Więcej miejsca przed dividerem */
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proces-cta p {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.proces-cta p strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1em;
}

.proces-cta .btn-primary {
    margin-top: var(--space-md);
}

/* ==========================================
   WSPINACZKA SECTION - Pełna metafora z ząbkami
   ========================================== */

.wspinaczka-section {
    background: linear-gradient(180deg, var(--background-warm) 0%, var(--background-accent) 50%, var(--background-warm) 100%);
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

/* Mountain divider na dole sekcji wspinaczka */
.wspinaczka-divider {
    position: relative;
    bottom: 0;
    margin-top: -60px;
    z-index: 10;
}

.wspinaczka-divider svg {
    height: 120px;
    display: block;
}

.wspinaczka-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
    min-height: 500px;
}

/* Góry z Hero jako tło - parallax layers */
.wspinaczka-mountains-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

/* Warstwy gór - rosnące ku prawej stronie (szczyt) */
.mountain-layer-far {
    opacity: 0.9;
}

.mountain-layer-mid {
    opacity: 0.85;
}

.mountain-layer-near {
    opacity: 0.8;
}

/* Ścieżka SVG z ząbkami */
.trail-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.trail-path-main {
    stroke-dashoffset: 2000;
    /* Animacja kontrolowana przez JS - scroll trigger */
}

@keyframes trailDrawZigzag {
    to {
        stroke-dashoffset: 0;
    }
}

.trail-point {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.trail-point.visible {
    opacity: 1;
}

/* Punkty pojawiają się z JS - kontrolowane przez scroll */

@keyframes pointAppear {
    to {
        opacity: 1;
    }
}

/* Zigzag Climbing Steps */
.wspinaczka-steps-zigzag {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    height: 420px;
    padding: 20px;
}

/* Individual Step - pozycjonowane na zigzag ścieżce */
.wspinaczka-step-z {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: end;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.wspinaczka-step-z.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pozycjonowanie zigzag - różne wysokości */
.step-z-1 { margin-bottom: 0; }
.step-z-2 { margin-bottom: 70px; }
.step-z-3 { margin-bottom: 140px; }
.step-z-4 { margin-bottom: 210px; }
.step-z-5 { margin-bottom: 300px; }

/* Step Card */
.step-card-z {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--primary-light);
    text-align: center;
    width: 130px;
    transition: all 0.3s ease;
}

.step-card-z:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num-z {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.step-card-z h3 {
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0 0 0.2rem 0;
    font-weight: 700;
}

.step-card-z p {
    font-size: 0.7rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.3;
}

/* Reflection labels (ząbki w dół) */
.step-reflection-z {
    margin-top: 8px;
    font-size: 0.6rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.7;
    white-space: nowrap;
}

/* Summit Special Styling */
.summit-card-z {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-left-color: var(--accent-gold);
    width: 140px;
}

.summit-card-z .step-num-z {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #C9A68A 100%);
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.summit-card-z h3 {
    color: var(--accent-gold);
    font-size: 1rem;
}

.summit-z .step-reflection-z {
    display: none;
}

/* Responsive - Mobile: pionowy układ */
@media (max-width: 900px) {
    .wspinaczka-steps-zigzag {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 1.5rem;
    }

    .wspinaczka-step-z,
    .step-z-1, .step-z-2, .step-z-3, .step-z-4, .step-z-5 {
        margin-bottom: 0 !important;
        align-self: center;
    }

    .step-card-z {
        width: 100%;
        max-width: 280px;
    }

    .trail-svg {
        opacity: 0.2;
    }

    .wspinaczka-mountains-bg {
        opacity: 0.3;
    }

    .wspinaczka-container {
        min-height: auto;
    }

    .step-reflection-z {
        display: none;
    }
}

@media (max-width: 768px) {
    .step-card-z {
        padding: 0.6rem;
    }

    .step-num-z {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .step-card-z h3 {
        font-size: 0.85rem;
    }

    .step-card-z p {
        font-size: 0.65rem;
    }
}

/* ==========================================
   SEKCJA "CZY TO BRZMI ZNAJOMO?" - Lustro
   ========================================== */

.znajomo-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
}

.znajomo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--space-lg);
}

.znajomo-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-light);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(25px);
}

.znajomo-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.znajomo-card:nth-child(1) { transition-delay: 0s; }
.znajomo-card:nth-child(2) { transition-delay: 0.15s; }
.znajomo-card:nth-child(3) { transition-delay: 0.3s; }
.znajomo-card:nth-child(4) { transition-delay: 0.45s; }
.znajomo-card:nth-child(5) { transition-delay: 0.6s; }
.znajomo-card:nth-child(6) { transition-delay: 0.75s; }

.znajomo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary);
}

/* Cytat */
.znajomo-quote {
    position: relative;
}

.znajomo-quote .quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.znajomo-quote p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    padding-left: 1rem;
    margin: 0;
}

/* Rozwiązanie */
.znajomo-solution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.znajomo-solution .solution-arrow {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.znajomo-solution p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

/* CTA na końcu sekcji */
.znajomo-cta {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.znajomo-cta p {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.znajomo-cta p strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05em;
}

/* Responsive */
@media (max-width: 900px) {
    .znajomo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .znajomo-card {
        padding: 1.25rem;
    }

    .znajomo-quote p {
        font-size: 0.9rem;
    }

    .znajomo-solution p {
        font-size: 0.8rem;
    }

    .znajomo-cta {
        padding: var(--space-md);
    }

    .znajomo-cta p {
        font-size: 1rem;
    }
}

/* Testimonials Section - Kompaktowe karty */
.testimonials {
    padding: var(--space-xl) 0;
    background: var(--background);
}

/* Testimonials Swiper - 3 karty na desktop */

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--timing-medium) var(--easing);
    border-left: 3px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.testimonial-quote {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-quote p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 1.25rem;
}

.testimonial-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* FAQ Section */
.faq {
    padding: var(--space-2xl) 0;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Accordion with native <details> */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-warm);
    border-radius: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--timing-medium) var(--easing);
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: var(--space-lg);
    cursor: pointer;
    list-style: none;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: rgba(91, 155, 213, 0.05);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
    margin: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item p strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

/* WEB DESIGN TRENDS 2025 */

/* Typewriter Effect - JS Controlled */
.typewriter {
    display: inline;
    white-space: nowrap;
    position: relative;
    color: var(--primary);
}

/* Typewriter cursor blink animation (CSS backup) */
@keyframes blink-caret {
    from, to {
        border-color: var(--primary);
    }
    50% {
        border-color: transparent;
    }
}

/* Word Highlighting - Gold Gradient (matching CTA buttons) */
.highlight-mark,
.highlight-blue {
    background: linear-gradient(120deg, var(--accent-taupe) 0%, var(--accent-gold) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 6px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    display: inline;
}

/* Staggered Scroll Animations */
.icon-card {
    animation-delay: calc(var(--card-index, 0) * 0.15s);
}

.icon-card:nth-child(1) { --card-index: 0; }
.icon-card:nth-child(2) { --card-index: 1; }
.icon-card:nth-child(3) { --card-index: 2; }

.case-card {
    animation-delay: calc(var(--card-index, 0) * 0.15s);
}

.case-card:nth-child(1) { --card-index: 0; }
.case-card:nth-child(2) { --card-index: 1; }
.case-card:nth-child(3) { --card-index: 2; }

.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.08s);
}

.faq-item:nth-child(1) { --item-index: 0; }
.faq-item:nth-child(2) { --item-index: 1; }
.faq-item:nth-child(3) { --item-index: 2; }
.faq-item:nth-child(4) { --item-index: 3; }
.faq-item:nth-child(5) { --item-index: 4; }
.faq-item:nth-child(6) { --item-index: 5; }
.faq-item:nth-child(7) { --item-index: 6; }
.faq-item:nth-child(8) { --item-index: 7; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .personal-hero-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .philosophy-image,
    .personal-hero-image {
        order: -1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .personal-hero-text h1 {
        font-size: 36px;
    }
    
    .blog-hero-content h1 {
        font-size: 36px;
    }
    
    .personal-stats {
        justify-content: space-around;
        gap: 30px;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .personal-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-categories {
        gap: 12px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* iOS Safari Fixes - CRITICAL dla mobile UX */

/* Prevent zoom on input focus (16px minimum) */
input, textarea, select {
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Touch targets minimum 48px (Apple HIG) */
button,
a.btn-primary,
a.btn-secondary,
a.calendly-button,
a.wspolpraca-cta,
.nav-mobile-toggle {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Remove iOS tap highlight (custom handling) */
* {
    -webkit-tap-highlight-color: rgba(91, 155, 213, 0.1);
}

/* Smooth scroll dla iOS Safari */
html {
    -webkit-overflow-scrolling: touch;
}

/* Fix dla sticky navigation iOS */
.nav {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   MODERN FOOTER 2025
   ========================================== */

.footer-modern {
    background: var(--primary);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-mountain-icon {
    width: 48px;
    height: 48px;
}

.footer-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-separator {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 25px auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-contact-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact-item.footer-cta {
    background: var(--accent-gold);
    color: var(--primary);
    font-weight: 600;
}

.footer-contact-item.footer-cta:hover {
    background: #e6c54a;
    color: var(--primary);
}

.footer-contact-item.footer-cta svg {
    stroke: var(--primary);
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.footer-bottom-modern {
    margin-top: 10px;
}

.footer-motto {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 50px 20px 30px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-contact-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0;
    }

    .footer-nav-dot {
        display: none;
    }

    .footer-nav a {
        padding: 10px 16px;
    }

    .footer-name {
        font-size: 1.5rem;
    }

    .footer-motto {
        font-size: 1rem;
        padding: 0 20px;
    }
}