/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Kolory Karmag - czerwony + granat + biel, dopasowane do logo (czerwona gwiazda) */
    --color-navy-dark: #0f1a3d;
    --color-navy-primary: #1a2b5f;
    --color-primary-dark: #9b0b22;
    --color-primary: #c8102e;
    --color-primary-light: #e63950;
    --color-blue-bright: #dc2626;
    --color-blue-sky: #fecaca;
    --color-cyan: #dc2626;
    --color-orange: #c8102e;
    --color-orange-dark: #9b0b22;
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-400: #9ca3af;
    --color-gray-600: #6b7280;
    --color-gray-900: #111827;
    --color-light-blue: #fef2f2;

    /* Typography */
    --font-serif: 'Cormorant', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing organiczny - nieregularne wartości dla humanizacji */
    --space-xs: 0.65rem;
    --space-sm: 1.15rem;
    --space-md: 2.1rem;
    --space-lg: 3.75rem;
    --space-xl: 5.8rem;
    --space-2xl: 8.3rem;

    /* Transitions - organiczne easing curves */
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-gentle: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-slow: 480ms;
    --transition-medium: 340ms;
    --transition-fast: 220ms;

    /* Shadows */
    --shadow-sm: 0px 2px 8px rgba(26, 43, 95, 0.08);
    --shadow-md: 0px 8px 24px rgba(26, 43, 95, 0.12);
    --shadow-lg: 0px 16px 48px rgba(26, 43, 95, 0.16);
    --shadow-orange: 0px 8px 28px rgba(200, 16, 46, 0.3);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.8rem);
    font-weight: 500;
    margin-bottom: 1.4rem;
}

h2 {
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.95rem;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1.05rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 1.3rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast) var(--ease-gentle);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    transition: all var(--transition-medium) var(--ease-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem clamp(1.5rem, 5vw, 3.5rem); /* Decreased vertical padding */
}
.header-logo {
    height: 52px;
    width: auto;
    vertical-align: middle;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.header-wordmark {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    letter-spacing: 0.06em;
    line-height: 1;
}

.footer-logo-img {
    height: 56px;
    width: auto;
}

.logo:hover {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-gray-900);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-bright);
    transition: width var(--transition-medium) var(--ease-smooth);
}

.nav-menu a:hover {
    color: var(--color-navy-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.8rem 1.8rem !important;
    background-color: var(--color-orange);
    color: var(--color-white) !important;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-orange);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0px 10px 32px rgba(245, 124, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-navy-primary);
    transition: all var(--transition-fast) var(--ease-gentle);
}

/* ============================================
   HERO SECTION - Animated Background
   ============================================ */
.hero {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) clamp(1.5rem, 5vw, 3.5rem) 4rem;
    position: relative;
    overflow: hidden;
}

/* Video background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Dark overlay for better text readability */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 61, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--color-white);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.6rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.6s forwards;
}

.btn {
    display: inline-block;
    padding: 1.05rem 2.4rem;
    font-family: var(--font-sans);
    font-size: 0.975rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast) var(--ease-gentle);
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0px 12px 36px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(77, 208, 225, 0.15) 100%);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    padding: 2.5rem;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   PREMIUM CTA BAR
   ============================================ */
.hero-contact-section {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: -1rem;
}

.contact-bar-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-contact-bar {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-primary) 100%);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
    box-shadow:
        0 15px 45px rgba(15, 26, 61, 0.35),
        0 0 0 2px var(--color-blue-bright);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue-bright) 0%, var(--color-orange) 50%, var(--color-blue-bright) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-contact-bar:hover {
    box-shadow:
        0 25px 70px rgba(15, 26, 61, 0.5),
        0 0 0 3px var(--color-orange);
    transform: translateY(-3px);
}

.hero-input-group {
    width: 100%;
    position: relative;
}

.hero-contact-bar input,
.hero-contact-bar select {
    width: 100%;
    padding: 0.75rem 1.1rem;
    border-radius: 8px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--color-gray-900);
    height: 44px;
    appearance: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-contact-bar input:focus,
.hero-contact-bar select:focus {
    outline: none;
    border-color: var(--color-blue-bright);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
    transform: translateY(-1px);
}

.hero-contact-bar input::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--color-blue-bright);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: bold;
}

.btn-hero-submit {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff6b35 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    border: none;
    padding: 0 2.2rem;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow:
        0 4px 15px rgba(200, 16, 46, 0.45),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-submit:hover::before {
    left: 100%;
}

.btn-hero-submit:hover {
    background: linear-gradient(135deg, #ff6b35 0%, var(--color-orange) 100%);
    box-shadow:
        0 8px 25px rgba(200, 16, 46, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.btn-hero-submit:active {
    transform: translateY(0) scale(1);
}

.hero-form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: #10b981;
    min-height: 24px;
    font-size: 0.95rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
    padding: var(--space-2xl) clamp(1.5rem, 5vw, 3.5rem);
}

.section-light {
    background-color: var(--color-light-blue);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dc2626;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--color-navy-primary);
    margin-bottom: 1.3rem;
}

#faq .section-header {
    margin-bottom: 3rem;
}

#faq .section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 0;
}

.section-header p {
    font-size: 1.075rem;
    color: var(--color-gray-600);
    margin: 0;
}

/* ============================================
   PROBLEM AND SOLUTION SECTION
   ============================================ */
.problem-solution-section {
    background: linear-gradient(135deg,
        rgba(239, 246, 255, 0.4) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(239, 246, 255, 0.4) 100%
    );
    position: relative;
    overflow: hidden;
}

.problem-solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-solution-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-solution-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.problem-row,
.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 20px 60px rgba(37, 99, 235, 0.08);
    transition: all var(--transition-medium) var(--ease-smooth);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) forwards;
}

.problem-row {
    animation-delay: 0.2s;
}

.solution-row {
    animation-delay: 0.4s;
}

.problem-row:hover,
.solution-row:hover {
    transform: translateY(-6px);
    box-shadow: 0px 24px 72px rgba(37, 99, 235, 0.12);
}

.problem-content,
.solution-content {
    display: flex;
    flex-direction: column;
}

.problem-icon,
.solution-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all var(--transition-medium) var(--ease-smooth);
}

.problem-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: var(--color-white);
    box-shadow: 0px 8px 24px rgba(245, 158, 11, 0.3);
}

.solution-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-bright) 100%);
    color: var(--color-white);
    box-shadow: 0px 8px 24px rgba(37, 99, 235, 0.3);
}

.problem-box:hover .problem-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0px 12px 32px rgba(245, 158, 11, 0.4);
}

.solution-box:hover .solution-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0px 12px 32px rgba(37, 99, 235, 0.4);
}

.problem-icon svg,
.solution-icon svg {
    width: 36px;
    height: 36px;
}

.problem-content h3,
.solution-content h3 {
    color: var(--color-navy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.85rem;
    font-weight: 600;
}

.problem-content p,
.solution-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: var(--color-gray-600);
}

.problem-image,
.solution-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.15);
}

.problem-image img,
.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.problem-row:hover .problem-image img,
.solution-row:hover .solution-image img {
    transform: scale(1.05);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
    grid-column: span 2;
}

.benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.benefit-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium) var(--ease-smooth);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue-bright);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: 0px 6px 20px rgba(37, 99, 235, 0.25);
}

.benefit-card h3 {
    color: var(--color-navy-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS SECTION - Now with Infinite Scroller
   ============================================ */
.testimonials-section {
    background-color: var(--color-white);
    padding-top: var(--space-lg); /* Reduced from default var(--space-2xl) */
    padding-bottom: 0; /* Remove bottom padding to let the counter be closer */
}

.testimonials-scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    padding-block: 2rem;
}

.scroller__inner {
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 1rem));
    }
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium) var(--ease-smooth);
    position: relative;
    width: 420px; /* Fixed width for cards */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue-bright);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0px 4px 16px rgba(37, 99, 235, 0.2);
}

.testimonial-info h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    margin-bottom: 0.3rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-gray-600);
    font-style: italic;
    margin: 0;
}

.testimonial-quote::before {
    content: '"'; /* Changed to a more elegant quote */
    font-size: 4rem;
    color: var(--color-blue-bright);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-counter {
    text-align: center;
    padding: 4rem 0 0; /* Add more space on top */
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.counter-label {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-white) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Stretch items to be the same height */
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium) var(--ease-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #ffffff;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform var(--transition-medium) var(--ease-smooth);
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-card-content {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card.recommended {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-orange);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #9b0b22 0%, #c8102e 100%);
    color: var(--color-white);
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price-note {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    flex-grow: 1; /* Pushes button down */
}

.pricing-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-cta {
    width: 100%;
    padding: 1.2rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast) var(--ease-gentle);
    box-shadow: 0px 8px 24px rgba(37, 99, 235, 0.25);
    margin-top: auto; /* Pushes button to the bottom */
}

.pricing-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0px 12px 32px rgba(37, 99, 235, 0.35);
}

.pricing-card.recommended .pricing-cta {
    background-color: var(--color-orange);
    box-shadow: var(--shadow-orange);
}

.pricing-card.recommended .pricing-cta:hover {
    background-color: var(--color-orange-dark);
    box-shadow: 0px 12px 36px rgba(245, 124, 0, 0.45);
}

/* ============================================
   UNIFIED CONTACT & BOOKING SECTION
   ============================================ */
#rezerwacja.section {
    background-color: var(--color-light-blue);
}

.unified-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch; /* Make columns equal height */
}

.contact-box {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-box h3 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-blue-primary);
}

.contact-form-unified .form-group:has(textarea) {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.contact-form-unified .form-group textarea {
    flex-grow: 1;
    min-height: 150px;
}

.contact-form-unified .form-group label {
    color: var(--color-gray-900);
    font-weight: 500;
}

.contact-form-unified .form-group input,
.contact-form-unified .form-group textarea {
    background-color: var(--color-gray-50);
    border: 1.5px solid #e5e7eb;
    color: var(--color-gray-900);
}

.contact-form-unified .form-group input::placeholder,
.contact-form-unified .form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.contact-form-unified .form-group input:focus,
.contact-form-unified .form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: none;
}

.rodo-group {
    flex-grow: 0 !important;
}

.rodo-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.rodo-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.rodo-label a {
    color: #b45309;
    font-weight: 700;
    text-decoration: underline;
}

.rodo-label a:hover {
    color: #92400e;
}

.contact-form-unified .form-submit {
    background-color: var(--color-primary);
    box-shadow: 0px 8px 24px rgba(37, 99, 235, 0.25);
}
.contact-form-unified .form-submit:hover {
     background-color: var(--color-primary-dark);
     box-shadow: 0px 12px 32px rgba(37, 99, 235, 0.35);
}

@media (max-width: 1024px) {
    .unified-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium) var(--ease-smooth);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 8px 32px rgba(245, 124, 0, 0.4);
    transition: all var(--transition-fast) var(--ease-gentle);
}

.floating-cta-button:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0px 12px 40px rgba(245, 124, 0, 0.5);
}

.floating-cta-icon {
    font-size: 1.2rem;
}

/* ============================================
   FLOATING PHONE BUTTON
   ============================================ */
.floating-phone {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    padding: 1rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow:
        0 8px 30px rgba(200, 16, 46, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--color-blue-bright);
    animation: phone-pulse 2s ease-in-out infinite;
}

@keyframes phone-pulse {
    0%, 100% {
        box-shadow:
            0 8px 30px rgba(200, 16, 46, 0.4),
            0 0 0 0 rgba(200, 16, 46, 0.7),
            inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(200, 16, 46, 0.4),
            0 0 0 10px rgba(200, 16, 46, 0),
            inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    }
}

.floating-phone:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow:
        0 12px 40px rgba(200, 16, 46, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    animation: none;
}

.phone-icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
    animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.floating-phone:hover .phone-icon {
    animation: none;
    transform: rotate(0deg);
}

.phone-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ============================================
   LIVE VIEWERS COUNTER
   ============================================ */
.live-viewers {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 998;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.9rem 1.3rem;
    border-radius: 50px;
    box-shadow:
        0 8px 30px rgba(15, 26, 61, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    animation: slide-in-left 0.6s ease-out;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.live-viewers:hover {
    box-shadow:
        0 12px 40px rgba(15, 26, 61, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.live-viewers-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.live-viewers-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-viewers-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.live-viewers-text {
    font-size: 0.85rem;
    color: var(--color-gray-900);
    font-weight: 500;
    white-space: nowrap;
}

.live-viewers-count {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: all 0.15s ease;
    display: inline-block;
}

.live-viewers-text strong {
    color: var(--color-orange);
    font-weight: 600;
}

/* ============================================
   SERVICES SECTION - Card Grid Layout
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1340px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2.8rem 2.4rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium) var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue-bright);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--color-white);
    font-size: 1.8rem;
    box-shadow: 0px 6px 20px rgba(37, 99, 235, 0.25);
}

.service-card h3 {
    color: var(--color-navy-primary);
    margin-bottom: 1.1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   BRANDS SECTION - Infinite Scroll Animation
   ============================================ */
.brands-scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.brands-scroll-container::before,
.brands-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.brands-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}

.brands-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

/* Hover hint - pojawia się po 2s */
.brands-scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(26, 43, 95, 0.9);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    animation: fadeInHint 0.5s ease 2s forwards, fadeOutHint 0.5s ease 5s forwards;
}

@keyframes fadeInHint {
    to { opacity: 1; }
}

@keyframes fadeOutHint {
    to { opacity: 0; }
}

.brands-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollBrands 15s linear infinite;
    will-change: transform;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(calc(-380px * 6 - 2.5rem * 6));
    }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1340px;
    margin: 0 auto;
}

.brand-card {
    background-color: var(--color-white);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    padding: 2.8rem 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    width: 380px;
    min-width: 380px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    background-color: var(--color-gray-50);
}

.brand-card:hover ~ .brand-card {
    /* Pozostałe karty nie będą miały efektu */
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}


.brand-description {
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--color-gray-600);
    margin: 0;
}

/* Realizacje Banner */
.realizacje-banner {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: -5rem;
    padding: 0 2rem;
}

.realizacje-banner a {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #0f1a3d 0%, #9b0b22 50%, #c8102e 100%);
    background-size: 200% 200%;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 0 40px rgba(37, 99, 235, 0.1);
    animation: gradientShift 4s ease infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.realizacje-banner a::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;
}

.realizacje-banner a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4), 0 0 60px rgba(37, 99, 235, 0.2);
}

.realizacje-banner a:hover::before {
    left: 100%;
}

.realizacje-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.realizacje-banner-arrow {
    color: #c8102e;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.3s ease;
}

.realizacje-banner a:hover .realizacje-banner-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .realizacje-banner a {
        flex-direction: column;
        gap: 0.4rem;
        padding: 1rem 2rem;
    }

    .realizacje-banner-text,
    .realizacje-banner-arrow {
        font-size: 0.95rem;
    }
}

/* ============================================
   CALENDLY BOOKING SECTION
   ============================================ */
.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(0, 188, 212, 0.02) 100%);
    border-left: 3px solid var(--color-blue-bright);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium) var(--ease-smooth);
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(0, 188, 212, 0.04) 100%);
    border-left-color: var(--color-primary);
    transform: translateX(4px);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(0, 188, 212, 0.06) 100%);
    border-left-color: var(--color-orange);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy-primary);
    transition: color var(--transition-fast) var(--ease-gentle);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue-bright) 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all var(--transition-medium) var(--ease-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) var(--ease-smooth);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem 1.5rem;
    margin: 0;
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ============================================
   PROCESS SECTION - Timeline Style
   ============================================ */
.process-grid {
    display: grid;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 2.8rem;
    align-items: flex-start;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) > * {
    direction: ltr;
}

.process-number {
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border: 3px solid var(--color-blue-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-blue-bright);
    flex-shrink: 0;
    box-shadow: 0px 4px 16px rgba(0, 188, 212, 0.2);
    transition: all var(--transition-medium) var(--ease-smooth);
}

.process-step:hover .process-number {
    background: linear-gradient(135deg, var(--color-blue-bright) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: scale(1.08);
}

.process-content h3 {
    color: var(--color-navy-primary);
    margin-bottom: 1rem;
}

.process-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION - Gradient Background
   ============================================ */
.contact-section {
    padding: var(--space-2xl) clamp(1.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg,
        var(--color-navy-dark) 0%,
        var(--color-navy-primary) 35%,
        var(--color-primary-dark) 70%,
        var(--color-primary) 100%
    );
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section .section-eyebrow {
    color: var(--color-blue-sky);
}

.contact-section .section-header h2 {
    color: var(--color-white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5.5rem;
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.85rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.075rem;
    margin-bottom: 2.8rem;
}

.contact-details {
    display: grid;
    gap: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-blue-bright) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0px 4px 16px rgba(0, 188, 212, 0.3);
}

.contact-text h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.4rem;
}

.contact-text p {
    font-size: 0.975rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-text a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-text a:hover {
    color: var(--color-orange);
}

/* Contact Form */
.contact-form {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 3.2rem 2.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.975rem;
    color: var(--color-white);
    transition: all var(--transition-fast) var(--ease-gentle);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue-bright);
    background-color: var(--color-white);
    box-shadow: none;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.15rem 2.2rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast) var(--ease-gentle);
    box-shadow: var(--shadow-orange);
    margin-top: 1rem;
}

.form-submit:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0px 12px 36px rgba(245, 124, 0, 0.45);
}

.form-message {
    margin-top: 1.3rem;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background-color: rgba(0, 188, 212, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(0, 188, 212, 0.4);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(239, 68, 68, 0.4);
    display: block;
}

/* ============================================
   AI SUMMARY SECTION
   ============================================ */
.ai-summary-section {
    background-color: var(--color-light-blue);
    padding: 2.5rem 2rem;
    text-align: center;
}

.ai-summary-container {
    max-width: 500px;
    margin: 0 auto;
}

.ai-summary-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ai-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: all var(--transition-medium) var(--ease-gentle);
}

.ai-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.ai-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-icon:last-child {
    width: 56px;
    height: 56px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-xl) clamp(1.5rem, 5vw, 3.5rem) var(--space-md);
}

.footer-container {
    max-width: 1340px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 4.5rem;
    margin-bottom: var(--space-lg);
}

.footer-brand .footer-logo-img {
    height: 60px; /* Adjust as needed */
    width: auto;
    display: block; /* To ensure it takes its own line and respects margins */
    margin-bottom: 1.3rem; /* To match the original text spacing */
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

.footer-company-info {
    margin-top: 1.2rem !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.6 !important;
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.4rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.925rem;
    transition: color var(--transition-fast) var(--ease-gentle);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-blue-bright);
    transform: translateX(4px);
}

.footer-seo {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    line-height: 1.7;
}

.footer-seo h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.footer-seo-row {
    margin-bottom: 0.55rem;
}

.footer-seo-row a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-seo-row a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 52px;
    height: 52px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium) var(--ease-smooth);
    box-shadow: var(--shadow-orange);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-4px);
    box-shadow: 0px 8px 28px rgba(245, 124, 0, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
    .hero {
        padding-top: var(--space-xl);
    }

    .hero-stats {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        width: 340px;
        min-width: 340px;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(calc(-340px * 6 - 2.5rem * 6));
        }
    }
}

@media (max-width: 1024px) {
    .problem-row,
    .solution-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .problem-image,
    .solution-image {
        min-height: 250px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1;
    }

    .benefit-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2.5rem;
        gap: 1.8rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium) var(--ease-smooth);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero {
        min-height: auto;
        padding: var(--space-lg) clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .hero-contact-bar {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        border-radius: 12px;
        gap: 0.8rem;
    }

    .hero-contact-section {
        margin-top: -2rem;
        margin-bottom: -1rem;
    }

    .btn-hero-submit {
        width: 100%;
        padding: 0 1.5rem;
        height: 44px;
    }

    .hero-contact-bar input,
    .hero-contact-bar select {
        height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        width: 300px;
        min-width: 300px;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(calc(-300px * 6 - 2.5rem * 6));
        }
    }

    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 1.8rem;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: 1 / -1;
        margin: 0;
    }

    .problem-solution-container {
        gap: 2.5rem;
    }

    .problem-row,
    .solution-row {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .problem-image,
    .solution-image {
        min-height: 200px;
        order: -1;
    }

    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.recommended {
        transform: none;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    /* Unified Contact Grid Mobile */
    .unified-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .calendly-inline-widget {
        min-height: 500px !important;
    }

    /* Section padding mobile */
    .section {
        padding: var(--space-lg) 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    /* Testimonials mobile */
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    .floating-cta {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-cta-button {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .floating-phone {
        right: 15px;
        padding: 0.9rem 1rem;
    }

    .phone-icon {
        width: 24px;
        height: 24px;
    }

    .phone-number {
        font-size: 0.8rem;
    }

    .live-viewers {
        bottom: 15px;
        left: 15px;
        padding: 0.75rem 1.1rem;
    }

    .live-viewers-text {
        font-size: 0.8rem;
    }

    .live-viewers-count {
        font-size: 0.85rem;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1rem;
        font-size: 0.9rem;
    }

    /* Realizacje banner mobile */
    .realizacje-banner {
        margin-bottom: -3rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-eyebrow {
        font-size: 0.75rem;
    }

    .ai-summary-section {
        padding: 1.8rem 1.5rem;
    }

    .ai-summary-text {
        font-size: 0.8rem;
    }

    .ai-icons {
        gap: 1.8rem;
    }

    .ai-icon {
        width: 26px;
        height: 26px;
    }

    .brand-card {
        width: 260px;
        min-width: 260px;
        padding: 1.5rem 1rem;
    }

    .brand-logo {
        height: 70px;
    }

    .brand-logo img {
        height: 50px;
    }

    .brand-description {
        font-size: 0.85rem;
    }

    .floating-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .floating-cta-icon {
        font-size: 1rem;
    }

    .floating-phone {
        right: 10px;
        padding: 0.75rem 0.85rem;
        gap: 0.4rem;
    }

    .phone-icon {
        width: 22px;
        height: 22px;
    }

    .phone-number {
        font-size: 0.75rem;
    }

    .live-viewers {
        bottom: 10px;
        left: 10px;
        padding: 0.65rem 0.95rem;
        gap: 0.5rem;
    }

    .live-viewers-text {
        font-size: 0.75rem;
    }

    .live-viewers-count {
        font-size: 0.8rem;
    }

    .live-viewers-icon {
        font-size: 1rem;
    }

    .counter-number {
        font-size: 3rem;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 1.2rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .testimonial-quote::before {
        font-size: 2rem;
    }

    /* Process section mobile small */
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .process-content p {
        font-size: 0.9rem;
    }

    /* Benefit cards mobile small */
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    /* Service cards mobile small */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    /* Pricing mobile small */
    .pricing-card {
        margin: 0;
    }

    .pricing-image img {
        height: 180px;
    }

    .pricing-card-content {
        padding: 1.5rem;
    }

    .pricing-name {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    /* Realizacje banner mobile small */
    .realizacje-banner a {
        padding: 0.8rem 1.5rem;
        gap: 0.3rem;
    }

    .realizacje-banner-text {
        font-size: 0.85rem;
    }

    .realizacje-banner-arrow {
        font-size: 0.85rem;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(calc(-260px * 6 - 2.5rem * 6));
        }
    }

    .brands-scroll-container::before,
    .brands-scroll-container::after {
        width: 40px;
    }

    .brands-scroll-hint {
        display: none;
    }

    /* Footer mobile small */
    .footer-company-info {
        font-size: 0.75rem !important;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .brands-scroll-hint {
        display: none; /* Ukryj hint gdy użytkownik preferuje mniej animacji */
    }
}

/* Ukryj hint na urządzeniach bez hover */
@media (hover: none) {
    .brands-scroll-hint {
        display: none;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   COOKIE BANNER - Minimalist & Elegant
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(15, 26, 61, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}

.cookie-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.cookie-content a:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.2rem 1.5rem;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }
}
