:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --dark-bg: #0d0d0d;
    --darker-bg: #000000;
    --light-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    --panel-primary: #ff7849;
    --panel-secondary: #ff9a6b;
    --panel-dark: #111111;
    --panel-darker: #0a0a0a;
    --panel-card: #1e1e1e;
    --panel-card-hover: #252525;
    --panel-text: #ffffff;
    --panel-text-muted: #b0b0b0;
    --panel-border: #333333;
    --panel-success: #28a745;
    --panel-warning: #ffc107;
    --panel-danger: #dc3545;
    --panel-info: #17a2b8;
    --panel-gradient: linear-gradient(135deg, #ff7849 0%, #ff9a6b 100%);
}

/* Navbar Styles - TrainMeFit inspired */
.navbar-custom {
    background: rgba(13, 13, 13, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    min-height: 70px;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

/* Brand styling */
.navbar-brand {
    font-weight: 600 !important;
    font-size: 1.8rem !important;
    color: var(--text-light) !important;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex !important;
    align-items: center !important;
}

.brand-name {
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    height: 36px;
    transform: translateY(-1px);
}

.brand-logo-x {
    height: 42px;
    width: auto;
    margin: 0 6px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
}

/* Navigation links */
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 107, 53, 0.1);

}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
    background: rgba(255, 107, 53, 0.15);
}

/* Logo styling */
.navbar-logo {
    max-height: 36px;
    width: auto;
    display: flex;
    align-items: center;
}

/* Buttons in navbar */
.navbar .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border-radius: 8px;
}

.navbar .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        background: rgba(26, 26, 26, 0.95);
        border-radius: 8px;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem !important;
        margin: 0.25rem 0;
    }
}

/* Navbar toggle button */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
}

/* Ensure navbar is always visible */
.navbar {
    z-index: 1050 !important;
}


/* Footer - stare style zastąpione nowymi w style.css */
/* Zachowane tylko podstawowe style dla kompatybilności */
.footer a.social-link:hover {
    transform: scale(1.2);
    color: var(--secondary-orange) !important;
}

.navbar-brand {
    display: flex;
    align-items: center; /* wyśrodkowanie pionowe logo + tekstu */
}

.navbar-logo {
    max-height: 32px;    /* stała wysokość */
    width: auto;     /* proporcjonalna szerokość */
    margin-right: 8px;
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}



/* Enhanced button animations with micro-interactions */
.btn-primary-orange {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    will-change: transform;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary-orange:hover::before {
    left: 100%;
}

.btn-primary-orange:hover::after {
    width: 100px;
    height: 100px;
}

.btn-primary-orange:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4) !important;
    background: var(--gradient-primary) !important;
    color: white !important;
}

.btn-primary-orange:active {
    transform: translateY(-1px) scale(1) !important;
    transition: all 0.1s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3) !important;
}

.btn-primary-orange:focus {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2), 0 0 0 3px rgba(255, 107, 53, 0.2) !important;
}

/* Enhanced hover effects for outline buttons */
.btn-outline-orange {
    border: 2px solid var(--primary-orange) !important;
    color: var(--primary-orange) !important;
    background: transparent !important;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    will-change: transform;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.btn-outline-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline-orange::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-outline-orange:hover::before {
    width: 100%;
}

.btn-outline-orange:hover::after {
    width: 120px;
    height: 120px;
}

.btn-outline-orange:hover {
    color: white !important;
    border-color: var(--primary-orange) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline-orange:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.btn-outline-orange:focus {
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1), 0 0 0 3px rgba(255, 107, 53, 0.2) !important;
}

.btn-outline-danger {
    border: 2px solid #dc3545 !important;
    color: #dc3545 !important;
    background: transparent !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: visible;
    min-height: 85vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
    margin-left: 0;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    padding-left: 2px;
    margin-left: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced cards with sophisticated animations */
.feature-card, .pricing-card {
    background: var(--light-gray) !important;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.pricing-card {
    height: 100%;
}

/* Pomarańczowa ramka górna została usunięta */

/* Animowane tło zostało usunięte */

/* Efekty hover zostały usunięte */

/* Enhanced feature icons - bez efektów hover */
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem auto; /* Wyśrodkowanie z zachowaniem odstępu */
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    position: relative;
    overflow: hidden;
}

/* Efekt świetlny ikon został usunięty */

/* Efekty hover dla ikon zostały usunięte */

/* Step cards improvements */
.step-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.step-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Pricing */
.pricing-badge {
    position: absolute;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 1rem 0;
}

/* Contact Form */
.form-control {
    background: var(--medium-gray) !important;
    border: 2px solid transparent !important;
    color: var(--text-light) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--medium-gray) !important;
    color: var(--text-light) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

/* Enhanced Contact Form Styles */
.contact-form-section {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.001) 100%);
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-section:hover {
    border-color: rgba(255, 107, 53, 0.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(255, 107, 53, 0.05);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 25%, 
        rgba(255, 107, 53, 0.6) 50%, 
        rgba(255, 107, 53, 0.3) 75%, 
        transparent 100%);
}

.contact-form-header {
    padding: 3rem 3rem 0;
    position: relative;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    padding: 2rem 3rem 3rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group:hover .form-label i {
    color: var(--secondary-orange);
    transform: scale(1.1);
}

.form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.form-label i {
    color: var(--primary-orange);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.02);
    min-height: 48px;
    position: relative;
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 107, 53, 0.5) !important;
    box-shadow: 
        0 0 0 3px rgba(255, 107, 53, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-1px) scale(1.002);
    outline: none;
}

.form-control-modern:hover:not(:focus) {
    background: rgba(255, 255, 255, 0.045) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.03);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.form-control-modern:focus::placeholder {
    opacity: 0.7;
}

.form-select.form-control-modern {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    cursor: pointer;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-select.form-control-modern option {
    background: var(--medium-gray) !important;
    color: var(--text-light) !important;
    padding: 0.75rem 1rem !important;
    border: none !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.form-select.form-control-modern option:hover,
.form-select.form-control-modern option:focus {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%) !important;
    color: white !important;
}

.form-select.form-control-modern option:checked,
.form-select.form-control-modern option:selected {
    background: var(--primary-orange) !important;
    color: white !important;
    font-weight: 500 !important;
}

.form-select.form-control-modern option:disabled {
    background: var(--light-gray) !important;
    color: var(--text-muted) !important;
    opacity: 0.6 !important;
}

/* Alternative styling for browsers that don't support option styling */
.form-select.form-control-modern {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-light) !important;
}

/* Enhanced Select Styling for Dark Theme */
.form-select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-select:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 107, 53, 0.5) !important;
    color: var(--text-light) !important;
    box-shadow: 
        0 0 0 3px rgba(255, 107, 53, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

/* Firefox specific select dropdown styling */
@-moz-document url-prefix() {
    .form-select.form-control-modern {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
        text-indent: 0.01px !important;
        text-overflow: '' !important;
    }
}

/* WebKit/Blink specific (Chrome, Safari, Edge) */
.form-select.form-control-modern::-webkit-scrollbar {
    width: 8px;
}

.form-select.form-control-modern::-webkit-scrollbar-track {
    background: var(--medium-gray);
    border-radius: 4px;
}

.form-select.form-control-modern::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.form-select.form-control-modern::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit-section {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 14px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-submit-btn:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.form-info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.5;
}

.form-info-text i {
    color: var(--primary-orange);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Form validation states */
.form-control-modern:valid:not(:placeholder-shown) {
    border-color: rgba(40, 167, 69, 0.4) !important;
    background: rgba(40, 167, 69, 0.03) !important;
}

.form-control-modern:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.4) !important;
    background: rgba(220, 53, 69, 0.03) !important;
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-form-header {
        padding: 2rem 1.5rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control-modern {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .contact-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .form-info-text {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

/* Loading state for submit button */
.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.contact-submit-btn.loading {
    color: transparent;
}

.contact-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s ease infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Override any Bootstrap text colors */
.text-muted {
    color: var(--text-muted) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light) !important;
}

/* Animacje przejść stron */
.fade-enter-active, .fade-leave-active {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-enter-from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.fade-leave-to {
    opacity: 0;
    transform: translateY(-20px) scale(1.05);
}

/* Staggered animations for elements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Element entrance animations */
.animate-slide-up {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-slide-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-slide-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fade-scale {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

/* Staggered delays for sequential animations */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

/* Optimized particles background with performance improvements */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
    contain: layout style paint;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.2;
    animation: float-particle 8s linear infinite;
    will-change: transform, opacity;
    contain: layout style paint;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translateY(50vh) translateX(-15px) scale(1);
    }
    90% {
        opacity: 0.1;
        transform: translateY(10vh) translateX(20px) scale(0.8);
    }
    100% {
        transform: translateY(-10vh) translateX(30px) scale(0);
        opacity: 0;
    }
}

/* Performance optimization for all animations */
.feature-card,
.pricing-card,
.step-card,
.business-icon,
.client-icon,
.central-phone,
.btn-primary-orange,
.btn-outline-orange {
    will-change: transform;
    contain: layout style paint;
}

/* Reduced motion preferences support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles {
        display: none;
    }
    
    .particle {
        animation: none;
    }
    
    .floating-sms,
    .floating-sms-to-client,
    .business-icon,
    .client-icon,
    .central-phone {
        animation: none !important;
    }
    
    .feature-card:hover,
    .pricing-card:hover,
    .step-card:hover,
    .business-icon:hover,
    .client-icon:hover,
    .btn-primary-orange:hover,
    .btn-outline-orange:hover {
        transform: none !important;
    }
    
    .central-phone {
        transform: translate(-50%, -50%) !important;
    }
    
    .typewriter {
        animation: none;
        border-right: none;
        white-space: normal;
    }
    
    .loading-pulse,
    .loading-shimmer {
        animation: none;
    }
    
    .progress-animated::before {
        animation: none;
        width: var(--progress-width, 100%);
    }
    
    .scroll-reveal,
    .scroll-slide-left,
    .scroll-slide-right,
    .scroll-scale,
    .scroll-rotate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .animate-text,
    .char-reveal {
        animation: none !important;
    }
}

/* Hardware acceleration for smooth animations */
.feature-card,
.pricing-card,
.step-card,
.btn-primary-orange,
.btn-outline-orange,
.magnetic-hover,
.interactive-feedback {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Efekty hover zostały usunięte */

.btn-primary-orange:hover {
    transform: translateY(-3px) scale(1.02) translateZ(0);
}

.btn-outline-orange:hover {
    transform: translateY(-3px) scale(1.02) translateZ(0);
}

/* Loading state performance optimization */
.loading-state {
    animation: loading-skeleton 1.2s ease-in-out infinite;
    background: linear-gradient(90deg, 
        var(--light-gray) 25%, 
        var(--medium-gray) 50%, 
        var(--light-gray) 75%);
    background-size: 200% 100%;
}

@keyframes loading-skeleton {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Focus management for accessibility */
.btn-primary-orange:focus-visible,
.btn-outline-orange:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .pricing-card,
    .step-card {
        border: 2px solid var(--text-light);
    }
    
    .btn-primary-orange,
    .btn-outline-orange {
        border: 2px solid var(--primary-orange);
    }
    
    .pricing-badge {
        border: 1px solid var(--text-light);
    }
}

/* Print styles */
@media print {
    .particles,
    .back-to-top,
    .floating-sms,
    .floating-sms-to-client {
        display: none !important;
    }
    
    .feature-card,
    .pricing-card,
    .step-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Intersection Observer triggered animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-rotate.revealed {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Loading states and micro-interactions */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--light-gray) 0%, 
        var(--medium-gray) 50%, 
        var(--light-gray) 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Interactive feedback for clickable elements */
.interactive-feedback {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.interactive-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.interactive-feedback:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Ripple effect for buttons and interactive elements */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::before {
    width: 300px;
    height: 300px;
    animation: ripple 0.6s ease-out;
}

/* Magnetic hover effect for buttons */
.magnetic-hover {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.magnetic-hover:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Text typing animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-orange); }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary-orange);
    white-space: nowrap;
    margin: 0 auto;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
}

/* Progress indicators */
@keyframes progress-fill {
    from { width: 0%; }
    to { width: var(--progress-width, 100%); }
}

.progress-animated {
    position: relative;
    overflow: hidden;
}

.progress-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: inherit;
    animation: progress-fill 2s ease-out;
    width: var(--progress-width, 0%);
}
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.2;
    animation: float-particle 8s linear infinite;
    will-change: transform, opacity;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translateY(50vh) translateX(-15px) scale(1);
    }
    90% {
        opacity: 0.1;
        transform: translateY(10vh) translateX(20px) scale(0.8);
    }
    100% {
        transform: translateY(-10vh) translateX(30px) scale(0);
        opacity: 0;
    }
}

/* Responsive typography fixes for Polish text */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-spacing: 0.1em;
        text-align: center;
    }
    
    .hero-title br {
        display: none;
    }
    
    /* Force better word wrapping for Polish */
    .hero-title .hero-gradient-text {
        white-space: nowrap;
        display: inline-block;
    }

    .feature-card, .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Fix for text alignment and spacing issues */
.text-center .hero-title,
.text-lg-start .hero-title {
    text-align: inherit;
    margin-left: 0;
    padding-left: 0;
}

.container .row .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure no negative margins on text */
.hero-title,
.hero-subtitle {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.15;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
}

@media (min-width: 993px) {
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.25;
    }
}
.hero-gradient-text {
    white-space: nowrap;
    display: inline-block;
}

/* Prevent orphaned words in Polish text */
h1, h2, h3, .hero-title {
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Stats Section */
.stats-section {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem 0;
    margin: 1rem 0;
    border: none;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8659, #ff6b35);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
    position: relative;
    flex-shrink: 0;
}

.stat-number i {
    color: var(--primary-orange) !important;
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.4));
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-label strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Additional overrides for Bootstrap components */
.container, .container-fluid {
    color: var(--text-light) !important;
}

.lead {
    color: #f5f5f5 !important;
}

.display-5 {
    color: var(--text-light) !important;
}

/* List styles */
.list-unstyled li {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--primary-orange) !important;
}

.fixed-top {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
}

/* How it works Section */
.how-it-works-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--dark-bg) 100%);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.step-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-orange {
    color: var(--primary-orange) !important;
}

/* Dodatkowe style dla lekkości */
.section-spacing {
    padding: 2rem 0;
}

.section-spacing-lg {
    padding: 4rem 0;
}

.glass-effect {
    background: transparent;
    border: none;
}

/* Lepszy glass effect dla sekcji benefits - bez szarego tła */
.benefits-glass {
    background: transparent;
    border-radius: 12px;
    border: none;
}

/* Timeline Steps Section - Vertical Design */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, 
        #ff6b35 0%, 
        #ff8659 50%, 
        #ff6b35 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.timeline-step {
    position: relative;
    z-index: 3;
    margin-bottom: 5rem;
    display: flex;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8659 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 5;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 3px solid #0d0d0d;
    flex-shrink: 0;
    margin-right: 3rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.timeline-step-content {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex: 1;
    backdrop-filter: blur(10px);
}

.timeline-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8659);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.timeline-step:hover .timeline-step-content::before {
    transform: scaleX(1);
}

.timeline-step:hover .timeline-step-content {
    transform: translateX(15px);
    border-color: rgba(255, 107, 53, 0.4);
    background: linear-gradient(145deg, 
        rgba(255, 107, 53, 0.12) 0%, 
        rgba(255, 107, 53, 0.04) 100%);
    box-shadow: 
        0 20px 50px rgba(255, 107, 53, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-icon {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
    display: block;
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 16px rgba(255, 107, 53, 0.4));
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.timeline-badge {
    background: linear-gradient(135deg, 
        rgba(40, 167, 69, 0.25) 0%, 
        rgba(40, 167, 69, 0.15) 100%);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 15px;
    padding: 0.8rem 1.3rem;
    font-size: 0.95rem;
    color: #20c997;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.2);
}

/* Responsive timeline */
@media (max-width: 768px) {
    .timeline-container {
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 2rem;
    }
    
    .timeline-step-content {
        padding: 2.5rem 2rem;
    }
    
    .timeline-icon {
        font-size: 3rem;
    }
    
    .timeline-title {
        font-size: 1.6rem;
    }
    
    .timeline-description {
        font-size: 1rem;
    }
    
    .timeline-step {
        margin-bottom: 4rem;
    }
}

/* Special Featured Card - Twoja Firma */
.featured-company-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border: none;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    margin-top: 2rem;
}

/* Efekty hover dla głównej karty */
.company-card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 
        0 25px 50px rgba(255, 107, 53, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

.company-card-hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 107, 53, 0.05), 
        transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.company-card-hover:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.featured-company-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8659 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Efekty hover dla głównej ikony */
.company-icon-hover:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff8659 0%, #ff6b35 100%);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.4),
        0 0 0 8px rgba(255, 107, 53, 0.1);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 
            0 15px 35px rgba(255, 107, 53, 0.4),
            0 0 0 8px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 45px rgba(255, 107, 53, 0.5),
            0 0 0 12px rgba(255, 107, 53, 0.15);
    }
}

.featured-company-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.featured-company-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.featured-company-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.featured-company-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-company-feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

/* Efekty hover dla kart funkcji */
.feature-card-hover:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 10px 25px rgba(255, 107, 53, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card-hover:hover h6 {
    color: #ff8659;
}

.feature-card-hover:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.featured-company-feature-icon {
    font-size: 2.2rem;
    color: #ff6b35;
    margin: 0 auto 1.2rem auto; /* Wyśrodkowanie z zachowaniem odstępu */
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

/* Efekty hover dla ikon funkcji */
.feature-icon-hover:hover {
    transform: scale(1.2) rotate(10deg);
    color: #ff8659;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1.2) translateY(0) rotate(10deg);
    }
    40% {
        transform: scale(1.25) translateY(-8px) rotate(10deg);
    }
    60% {
        transform: scale(1.25) translateY(-4px) rotate(10deg);
    }
}

.featured-company-feature h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.featured-company-feature p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.featured-company-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 134, 89, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    color: #ff8659;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.featured-company-card:hover .featured-company-cta {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 134, 89, 0.2));
    border-color: rgba(255, 107, 53, 0.4);
    color: #ff6b35;
}

/* Responsive dla featured card */
@media (max-width: 768px) {
    .featured-company-card {
        padding: 3rem 2rem;
        margin-top: 1.5rem;
    }
    
    .featured-company-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .featured-company-title {
        font-size: 1.8rem;
    }
    
    .featured-company-subtitle {
        font-size: 1.1rem;
    }
    
    .featured-company-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-company-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .featured-company-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.soft-shadow {
    box-shadow: none;
}

.soft-shadow-hover:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

h1, h2, h3 {
    font-weight: 600 !important;
    letter-spacing: 0;
    margin-left: 0;
    padding-left: 0;
}

h4, h5, h6 {
    font-weight: 500 !important;
    letter-spacing: 0;
}

.text-muted {
    opacity: 0.8;
}

/* Subtelniejsze animacje dla particles */
.particle {
    opacity: 0.15;
}

/* Lżejsze odstępy w kartach */
.feature-card h4,
.step-card h4 {
    font-weight: 500 !important;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.feature-card p,
.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Delikatniejszy pricing badge */
.pricing-badge {
    background: rgba(255, 107, 53, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
    border-radius: 8px;
}

/* SMS Flow Container - increased height for full animation visibility */
.sms-flow-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
    padding: 40px 20px;
    box-sizing: border-box;
    will-change: transform;
}

.central-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 8px 32px rgba(108, 117, 125, 0.4),
        0 0 0 0 rgba(108, 117, 125, 0.3);
    animation: phone-pulse 3s ease-in-out infinite;
    will-change: transform;
}

.central-phone::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.15), transparent, rgba(255, 107, 53, 0.15));
    border-radius: 24px;
    animation: rotate-border 8s linear infinite;
    z-index: -1;
    will-change: transform;
}

@keyframes phone-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 8px 32px rgba(255, 107, 53, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.3);
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.03);
        box-shadow: 
            0 12px 40px rgba(255, 107, 53, 0.5),
            0 0 0 8px rgba(255, 107, 53, 0.1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 12px 40px rgba(255, 107, 53, 0.6),
            0 0 0 15px rgba(255, 107, 53, 0);
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.03);
        box-shadow: 
            0 10px 35px rgba(255, 107, 53, 0.5),
            0 0 0 8px rgba(255, 107, 53, 0.1);
    }
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.central-phone i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.braxen-logo {
    width: 70px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.central-phone:hover .braxen-logo {
    transform: scale(1.05);
}

/* Simplified business icons */
.business-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.business-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.business-icon:hover::before {
    transform: translateX(100%);
}

.business-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.business-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.business-icon:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.business-icon:hover i {
    color: var(--secondary-orange);
    transform: scale(1.1);
}

/* Position business icons - adjusted for larger container */
.business-icon-1 {
    top: 40px;
    left: 40px;
    animation: float-gentle 4s ease-in-out infinite;
}

.business-icon-2 {
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    animation: float-gentle-center 4s ease-in-out infinite 1s;
}

.business-icon-3 {
    bottom: 40px;
    left: 40px;
    animation: float-gentle 4s ease-in-out infinite 2s;
    /* Wyróżniony styl dla "Twoja firma" */
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(80, 200, 120, 0.15) 100%);
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 
        0 6px 25px rgba(74, 144, 226, 0.2),
        0 0 0 0 rgba(74, 144, 226, 0.1);
}

.business-icon-3::before {
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.15), transparent);
}

.business-icon-3:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25) 0%, rgba(80, 200, 120, 0.25) 100%);
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 
        0 10px 35px rgba(74, 144, 226, 0.3),
        0 0 0 4px rgba(74, 144, 226, 0.15);
    transform: translateY(-6px) scale(1.08);
}

.business-icon-3 i {
    color: #4A90E2;
    filter: drop-shadow(0 2px 6px rgba(74, 144, 226, 0.3));
}

/* Client icons - simplified and elegant */
.client-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    border: 2px solid rgba(54, 209, 220, 0.3);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(54, 209, 220, 0.3);
    will-change: transform;
}

.client-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.client-icon:hover::before {
    transform: translateX(100%);
}

.client-icon i {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.client-label {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.client-icon:hover {
    background: linear-gradient(135deg, #5b86e5 0%, #36d1dc 100%);
    border-color: #36d1dc;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(54, 209, 220, 0.4);
}

.client-icon:hover i {
    transform: scale(1.1);
}

/* Position client icons - adjusted for larger container */
.client-icon-1 {
    top: 40px;
    right: 40px;
    animation: float-gentle 4s ease-in-out infinite 0.5s;
}

.client-icon-2 {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    animation: float-gentle-center 4s ease-in-out infinite 1.5s;
}

.client-icon-3 {
    bottom: 40px;
    right: 40px;
    animation: float-gentle 4s ease-in-out infinite 2.5s;
}

/* Unified gentle floating animation - preserve positioning */
@keyframes float-gentle {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-6px) scale(1.02); 
        opacity: 1;
    }
}

/* Special animation for center element to maintain vertical centering */
@keyframes float-gentle-center {
    0%, 100% { 
        transform: translateY(-50%) scale(1); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(calc(-50% - 6px)) scale(1.02); 
        opacity: 1;
    }
}

/* Simplified SMS bubbles */
.sms-bubble {
    background: var(--gradient-primary);
    color: white;
    padding: 10px;
    border-radius: 16px 16px 4px 16px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    will-change: transform;
}

.sms-bubble i {
    font-size: 1rem;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.sms-bubble::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 3px;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* SMS bubbles to client */
.sms-bubble-client {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: white;
    padding: 10px;
    border-radius: 16px 16px 4px 16px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sms-bubble-client i {
    font-size: 1rem;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.sms-bubble-client::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
}

/* Simplified floating SMS animations */
.floating-sms {
    position: absolute;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: backwards;
    opacity: 0;
}

/* Two-stage SMS animations - Business → BRAXEN → Client */
.floating-sms-1 {
    animation-name: sms-workshop-to-client1;
    animation-delay: 0s;
}

.floating-sms-2 {
    animation-name: sms-clinic-to-client2;
    animation-delay: 2s;
}

.floating-sms-3 {
    animation-name: sms-shop-to-client3;
    animation-delay: 4s;
}

.floating-sms-to-client {
    position: absolute;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: backwards;
    opacity: 0;
}

.floating-sms-to-client-1 {
    animation-name: client1-response;
    animation-delay: 1s;
}

.floating-sms-to-client-2 {
    animation-name: client2-response;
    animation-delay: 3s;
}

.floating-sms-to-client-3 {
    animation-name: client3-response;
    animation-delay: 5s;
}

/* Two-stage SMS animations - Business → BRAXEN → Client */
.floating-sms-1 {
    animation-name: sms-to-braxen-1;
    animation-delay: 0s;
}

.floating-sms-2 {
    animation-name: sms-to-braxen-2;
    animation-delay: 2s;
}

.floating-sms-3 {
    animation-name: sms-to-braxen-3;
    animation-delay: 4s;
}

.floating-sms-to-client {
    position: absolute;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: backwards;
    opacity: 0;
}

/* Base SMS to client animation - properly configured */
.floating-sms-to-client {
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 16px 16px 4px 16px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    will-change: transform;
    opacity: 0;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
    animation-fill-mode: both;
    /* Startowa pozycja w centrum */
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(0);
}

/* Dynamic classes applied by JavaScript */
.floating-sms-to-client.floating-sms-to-client-1 {
    animation-name: braxen-to-client-1;
}

.floating-sms-to-client.floating-sms-to-client-2 {
    animation-name: braxen-to-client-2;
}

.floating-sms-to-client.floating-sms-to-client-3 {
    animation-name: braxen-to-client-3;
}

/* Stage 1: Business to BRAXEN center */
@keyframes sms-to-braxen-1 {
    0% {
        top: 40px;
        left: 130px;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    85% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
}

@keyframes sms-to-braxen-2 {
    0% {
        top: 50%;
        left: 130px;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    85% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
}

@keyframes sms-to-braxen-3 {
    0% {
        top: calc(100% - 40px);
        left: 130px;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    85% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
}

/* Stage 2: BRAXEN center to Clients - faster disappearing */
@keyframes braxen-to-client-1 {
    0% {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(50%, -50%) scale(1);
    }
    50% {
        top: 40px;
        right: 130px;
        transform: translate(50%, -50%) scale(1.1);
        opacity: 1;
    }
    70% {
        opacity: 0.6;
        transform: translate(50%, -50%) scale(0.9);
    }
    100% {
        top: 40px;
        right: 130px;
        opacity: 0;
        transform: translate(50%, -50%) scale(0.5);
    }
}

@keyframes braxen-to-client-2 {
    0% {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(50%, -50%) scale(1);
    }
    50% {
        top: 50%;
        right: 130px;
        transform: translate(50%, -50%) scale(1.1);
        opacity: 1;
    }
    70% {
        opacity: 0.6;
        transform: translate(50%, -50%) scale(0.9);
    }
    100% {
        top: 50%;
        right: 130px;
        opacity: 0;
        transform: translate(50%, -50%) scale(0.5);
    }
}

@keyframes braxen-to-client-3 {
    0% {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(50%, -50%) scale(1);
    }
    50% {
        top: calc(100% - 40px);
        right: 130px;
        transform: translate(50%, -50%) scale(1.1);
        opacity: 1;
    }
    70% {
        opacity: 0.6;
        transform: translate(50%, -50%) scale(0.9);
    }
    100% {
        top: calc(100% - 40px);
        right: 130px;
        opacity: 0;
        transform: translate(50%, -50%) scale(0.5);
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .sms-flow-container {
        width: 100%;
        height: 300px;
        padding: 15px;
    }
    
    .central-phone {
        width: 80px;
        height: 80px;
    }
    
    .braxen-logo {
        width: 50px;
        max-height: 40px;
    }
    
    .business-icon {
        width: 70px;
        height: 70px;
    }
    
    .business-icon i {
        font-size: 1.5rem;
    }
    
    .business-label {
        font-size: 0.7rem;
    }
    
    .client-icon {
        width: 70px;
        height: 70px;
    }
    
    .client-icon i {
        font-size: 1.8rem;
    }
    
    .client-label {
        font-size: 0.7rem;
    }
    
    .business-icon-1, .business-icon-2, .business-icon-3 {
        left: 20px;
    }
    
    .client-icon-1, .client-icon-2, .client-icon-3 {
        right: 20px;
    }
    
    .business-icon-1, .client-icon-1 {
        top: 40px;
    }
    
    .business-icon-3, .client-icon-3 {
        bottom: 40px;
    }
    
    .sms-bubble, .sms-bubble-client {
        min-width: 36px;
        max-width: 36px;
        height: 36px;
        font-size: 0.9rem;
        padding: 8px;
    }
}

/* Performance optimizations */
.sms-flow-container * {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .floating-sms,
    .floating-sms-to-client,
    .business-icon,
    .client-icon,
    .central-phone {
        animation: none !important;
    }
    
    .business-icon:hover,
    .client-icon:hover {
        transform: none !important;
    }
    
    .central-phone {
        transform: translate(-50%, -50%) !important;
    }
}

.sms-bubble::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Auth wrapper - ciemne tło */
.auth-wrapper {
    background: var(--gradient-dark) !important;
    min-height: 100vh;
}

/* Auth card - ciemny motyw */
.auth-card {
    background: var(--light-gray) !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--medium-gray) !important;
    max-width: 900px;
    margin: 0 auto;
}

.auth-card .card-body {
    background: transparent !important;
    padding: 0 !important;
}

/* Auth sidebar - pomarańczowy gradient */
.auth-sidebar {
    background: var(--gradient-primary) !important;
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Auth content - ciemne tło */
.auth-content {
    background: var(--light-gray) !important;
    color: var(--text-light) !important;
}

.auth-content h1,
.auth-content h2,
.auth-content h3,
.auth-content p {
    color: var(--text-light) !important;
}

.auth-content .text-muted {
    color: var(--text-muted) !important;
}

/* Brand icon */
.brand-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    color: white !important;
}

/* Form controls - ciemny motyw */
.auth-form .form-control {
    background: var(--medium-gray) !important;
    border: 2px solid var(--medium-gray) !important;
    color: var(--text-light) !important;
}

.auth-form .form-control:focus {
    background: #2a2a2aFF !important;
    color: var(--text-light) !important;
    box-shadow: unset !important;
}

.auth-form .form-control::placeholder {
    color: var(--text-muted) !important;
}

.auth-form .input-group-text {
    background: var(--medium-gray) !important;
    border: 2px solid var(--medium-gray) !important;
    color: var(--text-muted) !important;
}

.auth-form .form-label {
    color: var(--text-light) !important;
    font-weight: 600;
}

/* Auth links */
.auth-link {
    color: var(--primary-orange) !important;
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--secondary-orange) !important;
    text-decoration: underline;
}

/* Buttons w auth */
.auth-form .btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
}

.auth-form .btn-primary:hover {
    background: var(--gradient-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4) !important;
}

.auth-form .btn-outline-secondary {
    border-color: var(--medium-gray) !important;
    color: var(--text-muted) !important;
    background: var(--medium-gray) !important;
}

.auth-form .btn-outline-secondary:hover {
    color: var(--primary-orange) !important;
    background: var(--medium-gray) !important;
}

/* Alert messages */
.alert {
    border-radius: 8px !important;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
    color: #ff6b6b !important;
}

.alert-info {
    background: rgba(13, 202, 240, 0.1) !important;
    border: 1px solid rgba(13, 202, 240, 0.3) !important;
    color: #54a3ff !important;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1) !important;
    border: 1px solid rgba(25, 135, 84, 0.3) !important;
    color: #51cf66 !important;
}

/* Override Bootstrap white backgrounds */
.card {
    background: var(--light-gray) !important;
    border: 1px solid var(--medium-gray) !important;
}

.bg-white {
    background: var(--dark-bg) !important;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .auth-card {
        margin: 1rem;
    }

    .auth-content {
        padding: 2rem 1rem !important;
    }

    .auth-content .p-5 {
        padding: 2rem 1rem !important;
    }
}

/* Input styling - zaokrąglone lewa strona */
.input-left-squere  {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Input styling - kwadratowe dla haseł */
.input-square .input-group-text,
.input-square .form-control,
.input-square .btn {
    border-radius: 4px !important;
}

.input-square .input-group-text:first-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-square .form-control {
    border-radius: 0 !important;
}

.input-square .btn:last-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* ===== NIESTANDARDOWE CHECKBOXY - SMS PROXY ===== */

/* Podstawowy checkbox */
.form-check {
    padding-left: 0;
    margin-bottom: 1rem;
}

.form-check .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check .form-check-input + .form-check-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    display: inline-block;
}

/* Kwadrat checkboxa */
.form-check .form-check-input + .form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #dce0e4;
    border-radius: 4px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Ptaszek (checkmark) */
.form-check .form-check-input + .form-check-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(45deg);
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2.5px 2.5px 0;
    transition: all 0.2s ease;
    opacity: 0;
}

/* Hover */
.form-check .form-check-input:hover + .form-check-label::before {
    border-color: #ff6b35;
    background-color: #ffe8df;
}

/* Focus */
.form-check .form-check-input:focus + .form-check-label::before {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* Checked state */
.form-check .form-check-input:checked + .form-check-label::before {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: #ff6b35;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.form-check .form-check-input:checked + .form-check-label::after {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(45deg);
}

/* Disabled state */
.form-check .form-check-input:disabled + .form-check-label {
    cursor: not-allowed;
    opacity: 0.5;
}

.form-check .form-check-input:disabled + .form-check-label::before {
    background-color: #e9ecef;
    border-color: #dce0e4;
}

/* ===== ANIMACJA PULSE ===== */
.form-check-animated .form-check-input:checked + .form-check-label::before {
    animation: checkbox-pulse 0.5s ease;
}

@keyframes checkbox-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* ===== SWITCH (PRZEŁĄCZNIK) ===== */
.form-switch .form-check-input + .form-check-label {
    padding-left: 55px;
}

.form-switch .form-check-input + .form-check-label::before {
    width: 44px;
    height: 24px;
    border-radius: 8px;
    background-color: #dce0e4;
    border: none;
}

.form-switch .form-check-input + .form-check-label::after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.form-switch .form-check-input:hover + .form-check-label::before {
    background-color: #c8ced3;
}

.form-switch .form-check-input:checked + .form-check-label::before {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.form-switch .form-check-input:checked + .form-check-label::after {
    left: 23px;
    background-color: #ffffff;
}

/* ===== CHECKBOX OKRĄGŁY ===== */
.form-check-rounded .form-check-input + .form-check-label::before {
    border-radius: 50%;
}

.form-check-rounded .form-check-input + .form-check-label::after {
    left: 8px;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translateY(-50%) scale(0);
}

.form-check-rounded .form-check-input:checked + .form-check-label::after {
    transform: translateY(-50%) scale(1);
}

/* ===== CHECKBOX Z IKONĄ ===== */
.form-check-icon .form-check-input + .form-check-label::after {
    content: '✓';
    font-size: 14px;
    font-weight: bold;
    border: none;
    width: auto;
    height: auto;
    left: 4px;
    top: 48%;
    transform: translateY(-50%) scale(0);
    color: #ffffff;
}

.form-check-icon .form-check-input:checked + .form-check-label::after {
    transform: translateY(-50%) scale(1);
}

/* ===== ROZMIARY ===== */

/* Większy checkbox */
.form-check-lg .form-check-input + .form-check-label {
    padding-left: 40px;
    font-size: 1rem;
}

.form-check-lg .form-check-input + .form-check-label::before {
    width: 26px;
    height: 26px;
    border-width: 2.5px;
}

.form-check-lg .form-check-input + .form-check-label::after {
    left: 8px;
    width: 7px;
    height: 13px;
    border-width: 0 3px 3px 0;
}

/* Mniejszy checkbox */
.form-check-sm .form-check-input + .form-check-label {
    padding-left: 28px;
    font-size: 0.875rem;
}

.form-check-sm .form-check-input + .form-check-label::before {
    width: 18px;
    height: 18px;
}

.form-check-sm .form-check-input + .form-check-label::after {
    left: 6px;
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
}

/* ===== LAYOUT ===== */

/* Inline checkboxy */
.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

/* Grupa checkboxów */
.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ===== AUTH FORM STYLE ===== */
.auth-form .form-check {
    margin-bottom: 1.25rem;
}

.auth-form .form-check .form-check-input + .form-check-label {
    font-size: 1rem;
}

.auth-form .form-check .form-check-input + .form-check-label a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-form .form-check .form-check-input + .form-check-label a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    .form-check .form-check-input + .form-check-label {
        color: #e9ecef;
    }

    .form-check .form-check-input + .form-check-label::before {
        background-color: #2d3748;
        border-color: #4a5568;
    }

    .form-check .form-check-input:hover + .form-check-label::before {
        background-color: rgba(255, 107, 53, 0.1);
    }

    .form-check .form-check-input:checked + .form-check-label::after {
        border-color: #ffffff;
    }
}

/* ===== NEW VISUAL ENHANCEMENTS ===== */

/* Enhanced step cards with better spacing and visual appeal */
.step-card {
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-badge {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    margin-top: 12px;
}

/* Enhanced testimonial cards */
.testimonial-card {
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.testimonial-result {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border-radius: 8px;
    padding: 8px 12px;
    border-left: 3px solid #28a745;
}

/* Enhanced security cards */
.security-card {
    border-radius: 16px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.15);
}

.security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.02));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 16px;
}

/* Enhanced API cards */
.api-card {
    border-radius: 16px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.api-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-item {
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f) !important;
}

.integration-item:hover {
    transform: scale(1.05);
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

.use-case-card {
    border-radius: 16px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.02));
    border: 1px solid rgba(255, 107, 53, 0.1) !important;
}

/* Enhanced FAQ accordions */
.accordion-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-light) !important;
    border: none !important;
    padding: 1.5rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05)) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.2) !important;
}

.accordion-body {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: var(--text-muted) !important;
    padding: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Pricing Page Styles */
.pricing-header {
    position: relative;
    margin-bottom: 4rem;
}

.pricing-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Modern Pricing Cards */
.pricing-card-modern {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(255, 107, 53, 0.1);
}

.pricing-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.4) 25%, 
        rgba(255, 107, 53, 0.8) 50%, 
        rgba(255, 107, 53, 0.4) 75%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card-modern:hover::before {
    transform: scaleX(1);
}

/* Featured Pricing Card */
.pricing-card-featured {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(255, 107, 53, 0.15);
}

.pricing-card-featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.6) 0%, 
        rgba(255, 140, 66, 0.8) 50%, 
        rgba(255, 107, 53, 0.6) 100%);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

/* Pricing Card Header */
.pricing-card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 140, 66, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.pricing-icon.featured {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.25) 0%, 
        rgba(255, 140, 66, 0.15) 100%);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.pricing-card-modern:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Card Body */
.pricing-card-body {
    padding: 0 2rem 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: #28a745;
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pricing-tier:last-child {
    margin-bottom: 0;
}

.tier-name {
    font-weight: 600;
    color: var(--primary-orange);
}

.tier-limit {
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    text-align: center;
}

.tier-price {
    font-weight: 700;
    color: var(--text-light);
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

/* Pricing Card Footer */
.pricing-card-footer {
    padding: 0 2rem 2.5rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.pricing-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pricing-benefit i {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Comparison and Savings Cards */
.comparison-card,
.savings-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.005) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.comparison-card:hover,
.savings-card:hover {
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.comparison-header,
.savings-header {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(255, 140, 66, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header h5,
.savings-header h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.comparison-header i,
.savings-header i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.comparison-body,
.savings-body {
    padding: 2rem;
}

.comparison-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.comparison-item h6 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comparison-condition {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.comparison-item li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.comparison-item li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

.roi-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.roi-highlight i {
    color: #28a745;
}

.roi-highlight span {
    color: #28a745;
}

/* Savings Items */
.savings-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.savings-business {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.business-type {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
}

.savings-amount {
    font-weight: 700;
    color: #28a745;
    font-size: 1rem;
}

.savings-explanation {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.key-benefit {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(255, 140, 66, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.key-benefit i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.key-benefit div {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(255, 140, 66, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 3rem 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.02em;
    min-width: 200px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-guarantee i {
    color: #28a745;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .pricing-card-body {
        padding: 0 1.5rem 1rem;
    }
    
    .pricing-card-footer {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 250px;
    }
    
    .comparison-body,
    .savings-body {
        padding: 1.5rem;
    }
    
    .savings-business {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .section-spacing {
        padding: 1.5rem 0;
    }
    
    .section-spacing-lg {
        padding: 2.5rem 0;
    }
}

/* Subtle entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

/* Enhanced gradient backgrounds for sections */
.how-it-works-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 140, 66, 0.01));
}

.success-stories-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.02), rgba(40, 167, 69, 0.01));
}

.security-section {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.02), rgba(23, 162, 184, 0.01));
}

.api-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02), rgba(255, 193, 7, 0.01));
}

.faq-section {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.02), rgba(108, 117, 125, 0.01));
}

/* Enhanced hover effects for all cards */
.glass-effect:hover {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f) !important;
}

/* Color-coded section indicators */
.how-it-works-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

/* Enhanced button states */
.btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

/* Improved spacing for content sections */
.container {
    max-width: 1200px;
}

h2.display-5 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Footer Styles */
.footer-section {
    background: var(--darker-bg);
    border-top: 1px solid var(--medium-gray);
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-right: 12px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact-item i {
    color: var(--primary-orange);
    width: 20px;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-orange);
    text-decoration: none;
    transform: translateX(4px);
}

.footer-link-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: default;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    margin-top: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-version {
    background: var(--medium-gray);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-orange);
}

.footer-separator {
    opacity: 0.5;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-made-with i {
    font-size: 0.8rem;
    animation: heartbeat 2s ease-in-out infinite;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-meta {
        justify-content: flex-start;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    will-change: transform, opacity;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: var(--gradient-primary);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
    transition: all 0.1s ease;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Pulsing animation when first appears */
.back-to-top.show {
    animation: backToTopPulse 0.6s ease-out;
}

@keyframes backToTopPulse {
    0% {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE - HIDE SMS ANIMATION
   ============================================ */

/* Hide SMS Flow Animation on mobile and tablet devices */
@media (max-width: 992px) {
    .sms-flow-container {
        display: none !important;
    }
}
    /* Alternative: if you want to show a static version instead */
    /* 
    .sms-flow-container {
        height: 300px;
        padding: 20px;
    }
    
    .business-icon,
    .client-icon,
    .floating-sms,
    .floating-sms-to-client {
        animation: none !important;
        transform: none !important;
        opacity: 0.3 !important;
    }
    
    .central-phone {
        animation: none !important;
        transform: translate(-50%, -50%) !important;
        box-shadow: 0 4px 16px rgba(108, 117, 125, 0.3) !important;
    }
    
    .central-phone::before {
        animation: none !important;
        display: none;
    }
    */

/* ============================================
   PANEL CARDS
   ============================================ */

.panel-card {
    background: var(--light-gray, #1e1e1e) !important;
    color: var(--text-light, #e0e0e0) !important;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.panel-card h1,
.panel-card h2,
.panel-card h3 {
    color: var(--panel-text) !important;
}

.panel-card p, .text-muted {
    color: white !important;
}


.panel-icon {
    width: 50px;
    height: 50px;
    background: var(--panel-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}


.btn-primary, .btn-outline-primary.active {
    color: #ffffff !important;
    background-color: var(--panel-primary, #ff6b35) !important;
    border-color: var(--panel-primary, #ff6b35) !important;
}

.text-primary {
    color: #ff6b35 !important;
}

.btn-primary:hover, .btn-outline-primary.active:hover {
    color: #ffffff !important;
    background-color: #e65d2d !important; /* ciemniejszy odcień przy hover */
    border-color: #e65d2d !important;
}

.btn-primary:active, .btn-outline-primary.active:active,
.btn-primary:focus, .btn-outline-primary.active:focus,
.btn-primary:active:focus, .btn-outline-primary.active:active:focus {
    color: #ffffff !important;
    background-color: #cc5229 !important; /* jeszcze ciemniejszy dla aktywnego */
    border-color: #cc5229 !important;
}

#cookiePreferencesModal {
    max-height: 80vh;
}


.cookie-info-links {
    color: var(--panel-text-muted);
}

.cookie-info-links a {
    color: var(--primary-orange);
    text-decoration: none;
}

.cookie-info-links a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
}

.modal-footer {
    background: var(--panel-darker);
    border-top: 1px solid var(--panel-border);
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 12px 12px;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Cookie Toast Notifications */
.cookie-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    font-size: 0.9rem;
}

.cookie-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-toast.alert-success {
    background: rgba(40, 167, 69, 0.95);
    color: white;
}

.cookie-toast.alert-danger {
    background: rgba(220, 53, 69, 0.95);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cookie-banner-text {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-banner-icon {
        font-size: 2rem;
    }

    .cookie-banner-title {
        font-size: 1.1rem;
    }

    .cookie-banner-description {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-banner-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .cookie-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .cookie-category-info {
        margin-right: 1rem !important;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 0 0.75rem;
    }

    .cookie-banner-actions .btn {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .modal-header, .modal-footer {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

/* ============================================
   COOKIE SETTINGS BUTTON (ALWAYS VISIBLE)
   ============================================ */

.cookie-settings-btn {
    position: fixed;
    bottom: -20px;
    left: 20px;
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-settings-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

.btn-cookie-settings {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-cookie-settings i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cookie-settings-text {
    opacity: 0;
    width: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    max-width: 200px;
    padding: 12px 24px;
}

.btn-cookie-settings:hover i {
    transform: rotate(15deg);
}

.btn-cookie-settings:hover .cookie-settings-text {
    opacity: 1;
    width: auto;
    margin-left: 4px;
}

.btn-cookie-settings:active {
    transform: translateY(-1px);
}

/* ============================================
   COOKIE CONSENT BANNER STYLES
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--primary-orange);
    padding: 1.5rem 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.cookie-banner-close {
    position: absolute;
    top: -22px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 10;
}

.cookie-banner-close:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0; /* Allows text to shrink */
}

.cookie-banner-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.cookie-banner-message {
    flex: 1;
    min-width: 0;
}

.cookie-banner-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.cookie-banner-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
    white-space: nowrap;
}

.cookie-banner-actions .btn-outline-light {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.cookie-banner-actions .btn-outline-light:hover {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.cookie-banner-actions .btn-primary-orange {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cookie-banner-actions .btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border-color: var(--secondary-orange);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.modal-content {
    background: var(--panel-card);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    background: var(--panel-darker);
    border-bottom: 1px solid var(--panel-border);
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    color: var(--panel-text);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modal-title i {
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem 1.5rem;
    color: var(--panel-text);
}

.cookie-preferences-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--panel-text-muted);
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
}

.cookie-category-title {
    color: var(--panel-text);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-category-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--panel-text-muted) !important;
}

.form-check-input {
    background-color: var(--panel-darker);
    border-color: var(--panel-border);
    border-radius: 6px;
    width: 3rem;
    height: 1.5rem;
    background-image: none;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-check-input:disabled {
    background-color: var(--panel-border);
    border-color: var(--panel-border);
    opacity: 0.6;
}

.cookie-info-links {
    border-top-color: var(--panel-border) !important;
}

.cookie-info-links a {
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.cookie-info-links a:hover {
    color: var(--secondary-orange);
}

.modal-footer {
    background: var(--panel-darker);
    border-top: 1px solid var(--panel-border);
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 12px 12px;
}

.modal-footer .btn-outline-secondary {
    color: var(--panel-text);
    border-color: var(--panel-border);
    background: transparent;
}

.modal-footer .btn-outline-secondary:hover {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.modal-footer .btn-primary-orange {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.modal-footer .btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.cookie-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    height: 64px;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-text {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-icon {
        font-size: 2rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-actions .btn {
        width: 100%;
        margin: 0 !important;
    }

    .cookie-banner-close {
        top: 0px;
        right: 0px;
    }

    .btn-cookie-settings {
        max-width: 55px;
        padding: 10px 16px;
    }

    .btn-cookie-settings i {
        font-size: 1.1rem;
    }

    .cookie-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        bottom: 90px;
    }
}

@media (max-width: 480px) {

    .btn-cookie-settings {
        max-width: 50px;
        padding: 10px 14px;
    }

    .modal-lg {
        max-width: 95%;
        margin: 0.5rem auto;
    }
}


