:root {
    /* Primary - CTA i główne akcje (zachowuję różowy dla skanowania) */
    --primary: #c026d3;
    --primary-dark: #a21caf;
    --primary-light: #e879f9;
    --primary-subtle: rgba(192, 38, 211, 0.1);

    /* Accent - wyróżnienia tekstowe (profesjonalny niebieski) */
    --accent: #3b82f6;
    --accent-secondary: #6366f1;
    --accent-light: #60a5fa;
    --accent-purple: #8b5cf6;

    /* Tła i struktury */
    --dark: #0f172a;
    --dark-bg: #020617;
    --dark-card: #1e293b;
    --dark-subtle: rgba(15, 23, 42, 0.8);

    /* Teksty */
    --light: #ffffff;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Neutralne */
    --gray-light: #f1f5f9;
    --gray: #64748b;
    --border: rgba(255, 255, 255, 0.1);

    /* Success/Secondary */
    --secondary: #059669;
    --secondary-light: #10b981;

    /* Standardized Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Card System */
    --card-radius: 12px;
    --card-radius-lg: 16px;
    --card-padding: 2rem;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --card-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.4);

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(67, 56, 202, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(244, 63, 94, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(216, 33, 176, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 30% 80%, rgba(244, 63, 94, 0.1) 0%, transparent 30%);
    background-size: 100% 100%;
    color: var(--light);
    line-height: 1.65;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234338ca' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* Pasek integracji */
.integrations-banner {
    background: transparent;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    contain: layout;
}

.integrations-content {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 0.5rem;
    display: block;
    box-sizing: border-box;
}

.integrations-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.integrations-title {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

.integrations-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.integrations-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 50s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.integration-logo {
    flex-shrink: 0;
    height: 71px;
    width: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.integration-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.integration-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 144px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(8%) saturate(463%) hue-rotate(204deg) brightness(98%) contrast(93%);
    transition: filter 0.3s ease;
}

.integration-logo:hover img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(74%) hue-rotate(204deg) brightness(103%) contrast(96%);
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive dla urządzeń mobilnych */
@media (max-width: 768px) {
    .integrations-banner {
        padding: 0.5rem 0;
    }

    .integrations-content {
        padding: 0 0.25rem;
    }

    .integrations-header {
        margin-bottom: 0.5rem;
    }

    .integrations-title {
        font-size: var(--text-xs);
        line-height: 1.4;
    }

    .integration-logo {
        height: 50px;
    }

    .integrations-scroll {
        gap: 1.25rem;
        animation-duration: 35s;
    }

    .integration-logo img {
        max-width: 100px;
    }
}

/* Dodatkowe media query dla bardzo małych ekranów */
@media (max-width: 480px) {
    .hero-section {
        padding: 0.75rem 0.5rem;
    }

    .title-main {
        font-size: 0.9rem;
        line-height: 1.35;
        padding: 0 0.75rem;
    }

    .title-large {
        font-size: 1.2rem;
        line-height: 1.25;
        padding: 0 0.75rem;
    }

    .subtitle-highlight {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }

    .integrations-banner {
        padding: 0.25rem 0;
    }

    .integrations-content {
        padding: 0 0.125rem;
    }

    .integrations-title {
        font-size: 11px;
        letter-spacing: 0.03em;
    }

    .integration-logo {
        height: 42px;
    }

    .integrations-scroll {
        gap: 1rem;
        animation-duration: 30s;
    }

    .integration-logo img {
        max-width: 85px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
    width: 100%;
}

/* Nawigacja z dwoma logotypami */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    margin-bottom: var(--spacing-sm);
}

.logos-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    margin-right: var(--spacing-md);
}

.logo img {
    height: 60px; /* Zwiększony rozmiar logo */
    display: block;
}

.parent-logo {
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.2rem;
}

.parent-logo img {
    height: 25px;
    display: block;
}

/* Hero section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.header-badge {
    background: rgba(67, 56, 202, 0.2);
    border: 1px solid rgba(67, 56, 202, 0.4);
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.title-main {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #2d1aff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-left: 4em;
    padding-right: 4em;
}

.subtitle-highlight {
    color: #f43f5e;
    font-size: var(--text-xl);
    font-weight: 500;
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.highlight-title {
    color: #10b981;
    text-decoration: underline;
    text-decoration-color: #4338ca;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.features {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.25rem auto;
    max-width: 900px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 0.4rem 0;
}

.check-icon {
    color: var(--secondary);
    margin-right: 0.75rem;
    font-size: 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Sekcja zapisów */
.signup-section {
    text-align: center;
    padding: 1rem 0;
}

.signup-form {
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.2), rgba(244, 63, 94, 0.1));
    padding: 0.5rem;
    border-radius: 12px;
    margin: 1rem auto;
    max-width: 600px;
    display: flex;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4338ca, #6366f1, #10b981);
    z-index: -1;
    border-radius: 14px;
    animation: border-animate 3s linear infinite;
}

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

.email-input {
    flex-grow: 1;
    width: 300px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 0 0 2px rgba(67, 56, 202, 0.3);
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.3);
}

.signup-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--light);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-base);
    cursor: pointer;
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: var(--card-shadow);
}

.signup-button:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-lg);
}

.social-proof {
    margin: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: var(--spacing-xs);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.avatars {
    display: flex;
    margin-right: 1rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--light);
    margin-right: -10px;
    background-color: #ccc;
    background-position: center;
    background-size: cover;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-purple));
    border-radius: 2px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding-bottom: 40%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.comparison-col {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.comparison-col:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-lg);
}

.comparison-title {
    font-size: var(--text-2xl);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--light);
    position: relative;
    padding-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: currentColor;
    border-radius: 1.5px;
}

.comparison-col.highlight {
    border: 2px solid var(--accent);
}

.comparison-col.highlight .comparison-title {
    color: var(--accent);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.comparison-col.competition .comparison-list li::before {
    content: '❌';
    color: var(--accent-secondary);
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 3rem;
}

.faq-group-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-answer {
    opacity: 0.9;
}

.guarantee {
    text-align: center;
    margin: 4rem auto;
    max-width: 700px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* POPRAWKA: Zwiększony z-index dla bannera cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1001; /* Wyższy z-index niż floating-cta */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* POPRAWKA: Zaktualizowany floating-cta z niższym z-index */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Niższy z-index niż cookie-banner */
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-cta.visible {
    transform: translateY(0);
}

/* POPRAWKA: Styl dla floating CTA gdy cookie banner jest widoczny */
.cookie-banner.visible ~ .floating-cta.visible {
    transform: translateY(0);
}

/* Style dla elementów ekskluzywności */
.exclusivity-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-secondary);
}

.exclusivity-badge .icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.75rem;
    text-align: center;
}

.not-for-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
}

.not-for-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--accent-secondary);
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.counter {
    background: rgba(67, 56, 202, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #6366f1;
    display: inline-flex;
    align-items: center;
}

.counter .icon {
    margin-right: 0.5rem;
}

.limited-notice {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(67, 56, 202, 0.1));
    border-left: 3px solid var(--accent-secondary);
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

.exclusive-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    background: rgba(16, 185, 129, 0.1);
    border: 1px dashed rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    padding: 1rem;
}

.exclusive-bonus .icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1rem;
}

.floating-cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: var(--card-shadow);
}

.floating-cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-lg);
}

/* Animowane elementy dekoracyjne */
.decoration-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 15s ease-in-out infinite alternate;
    opacity: 0.2;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4338ca, #3730a3);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--accent-secondary), #ec4899);
    bottom: 30%;
    left: -10%;
    animation-delay: -2s;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary), #06b6d4);
    bottom: 10%;
    right: 20%;
    animation-delay: -4s;
}

.decoration-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #f97316, #eab308);
    top: 40%;
    left: 10%;
    animation-delay: -6s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg) scale(1.05);
    }
    100% {
        transform: translate(-20px, -20px) rotate(-5deg) scale(0.95);
    }
}

/* Dodatkowe efekty dla hover */
.feature-item, .faq-item, .comparison-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .faq-item:hover, .comparison-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Style dla sekcji rewolucji AI */
.revolution-section {
    margin-top: 2rem;
}

.revolution-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.revolution-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.05) 0%, rgba(244, 63, 94, 0.05) 100%);
    z-index: -1;
}

.revolution-text {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.revolution-text:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.15rem;
}

/* Style dla sekcji mentorów */
.mentors-section {
    margin-top: var(--spacing-lg);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) auto;
    max-width: 1100px;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.mentor-header {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.mentor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    overflow: hidden;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    box-shadow: 0 10px 30px -5px rgba(139, 92, 246, 0.4);
}

.mentor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-identity {
    flex-grow: 1;
}

.mentor-name {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--light);
    letter-spacing: -0.01em;
}

.mentor-title {
    font-size: 1rem;
    font-weight: 500;
    color: #818cf8;
}

.mentor-bio {
    padding: 1.5rem;
    line-height: 1.6;
}

.mentor-quote {
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Style dla sekcji Goście Specjalni */
.special-guests-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.special-guests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
}

.guest-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.guest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(139, 92, 246, 0.3);
    border-color: var(--accent);
}

.guest-image-wrapper {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
}

.guest-image-frame {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border-image: linear-gradient(135deg, var(--accent), var(--accent-purple)) 1;
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.4);
}

.guest-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 17px;
}

.guest-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.guest-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guest-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--light);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0077B5, #00A0DC);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.linkedin-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.linkedin-icon svg {
    width: 18px;
    height: 18px;
}

.guest-position {
    font-size: 1rem;
    font-weight: 500;
    color: #818cf8;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.guest-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

/* Style dla sekcji korzyści */
.benefits-section {
    margin-top: var(--spacing-lg);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.benefit-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-sm);
}

.benefit-title {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-light);
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: var(--text-sm);
    line-height: 1.6;
    flex-grow: 1;
    color: var(--text-secondary);
}

.benefits-cta {
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.1), rgba(244, 63, 94, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid rgba(67, 56, 202, 0.2);
}

.benefits-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

.benefits-message {
    font-size: 1.1rem;
}

/* Styl dla podświetlenia "Armię Agentów AI" */
.army-highlight {
    color: var(--primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.army-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #818cf8;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #818cf8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Cookie consent banner */
.cookie-text {
    flex-grow: 1;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--accent);
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background: #3730a3;
}

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

.cookie-btn.settings:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Główny kontener banera */
.sticky-banner {

    width: 100%;
    background-color: white; /* Żółty kolor tła */
    color: #000000; /* Czarny kolor tekstu */
    padding: 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Zawartość banera */
.banner-content {
    flex-grow: 1;
    font-weight: bold;
}

/* Przycisk zamknięcia - teraz jest to label */
.close-button {
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    margin-left: 20px;
    background: none;
    border: none;
    display: inline-block;
}

/* Ukrywamy checkbox */
#banner-toggle {
    display: none;
}

/* Kiedy checkbox jest zaznaczony, ukrywamy baner */
#banner-toggle:checked ~ .sticky-banner {
    display: none;
}
/* Zwiększona responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .container {
        padding: 0.25rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    /* Logo i nawigacja */
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0;
    }

    .logos-container {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 30px; /* Zmniejszone logo na telefonie */
    }

    .parent-logo img {
        height: 25px; /* Zmniejszone logo firmy matki na telefonie */
    }

    .parent-logo {
        padding-left: 1rem; /* Mniejszy odstęp */
    }

    .logo {
        margin-right: 1rem; /* Mniejszy odstęp */
    }

    /* Hero section */
    .hero-section {
        padding: 1rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section h1 {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .header-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.75rem;
    }

    .title-main {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }

    .title-large {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }

    .subtitle-highlight {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .features {
        padding: 1rem;
        margin: 0.75rem auto;
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        margin: 0.5rem 0;
        text-align: left;
    }

    .check-icon {
        margin-right: 0.5rem;
        margin-top: 0.25rem;
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    /* Formularz zapisu - widoczny bez scrollowania */
    .signup-section {
        padding: 0.5rem 0 1rem;
    }

    .signup-form {
        margin: 0.5rem auto;
        flex-direction: column;
    }

    .email-input {
        border-radius: 8px 8px 0 0;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .signup-button {
        border-radius: 0 0 8px 8px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .social-proof {
        padding: 0.75rem 1rem;
        margin: 1rem auto;
        font-size: 0.9rem;
        max-width: 90%;
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .avatars {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .avatar {
        width: 32px;
        height: 32px;
        margin-right: -8px;
    }

    .privacy-note {
        margin-top: 0.5rem;
        font-size: 0.75rem;
    }

    /* Sekcje porównawcze */
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .comparison-col {
        padding: 1.25rem;
    }

    .comparison-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Sekcja mentorów */
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mentor-header {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
    }

    .mentor-avatar {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .mentor-name {
        font-size: 1.25rem;
    }

    .mentor-bio {
        padding: 1rem;
    }

    /* Responsive dla Goście Specjalni */
    .special-guests-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .guest-image-wrapper {
        padding: var(--spacing-md);
    }

    .guest-image-frame {
        width: 180px;
        height: 180px;
    }

    .guest-content {
        padding: var(--spacing-md);
    }

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

    .guest-position {
        font-size: 0.9rem;
    }

    .guest-bio {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* POPRAWKA: Floating CTA i cookie banner */
    .floating-cta {
        padding: 0.75rem;
    }

    .floating-cta-button {
        width: 100%;
        padding: 0.75rem;
    }

    /* Sekcja rewolucji */
    .revolution-content {
        padding: 1.25rem;
    }

    .revolution-text {
        font-size: 0.95rem;
    }

    /* Sekcja FAQ */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sticky-banner {
        padding: 10px;
    }

    .banner-content {
        font-size: 14px;
    }

    .close-button {
        font-size: 20px;
    }

    /* Cookie banner */
    .cookie-banner {
        flex-direction: column;
        padding: 1rem;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* POPRAWKA: Dostosowanie, gdy oba bannery są widoczne */
    .cookie-banner.visible ~ .floating-cta.visible {
        transform: translateY(-100%); /* Przesuń w górę, gdy cookie banner jest widoczny */
    }
}

/* Jeszcze mniejsze ekrany - np. małe smartfony */
@media (max-width: 480px) {
    .logo img {
        height: 30px; /* Zmniejszone logo na telefonie */
    }

    .parent-logo img {
        height: 20px; /* Zmniejszone logo firmy matki na telefonie */
    }

    .title-main {
        font-size: 1.25rem;
    }

    .title-large {
        font-size: 2.25rem;
    }

    .subtitle-highlight {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

    /* POPRAWKA: Dodatkowe style dla małych ekranów */
    .signup-form {
        margin: 0.5rem auto;
    }

    .email-input, .signup-button {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-column p, .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem 0;
    }

    .sticky-banner {
        padding: 10px;
    }

    .banner-content {
        font-size: 14px;
    }

    .close-button {
        font-size: 20px;
    }

}


.revolution-section,
.possibilities-section,
.success-stories-section,
.your-possibilities-section,
.mechanism-section,
.transformation-section,
.program-section,
.differentiators-section,
.value-section,
.bonus-section,
.pricing-section,
.faq-section,
.section-cta {
padding: 3rem 1rem;
max-width: 1100px;
margin: 0 auto;
}

.section-subtitle {
font-size: 1.1rem;
color: white;
margin: 1rem 0 2rem;
text-align: center;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.card-grid {
display: grid;
}

.pricing-section .card-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}


.card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(8px);
padding: 2rem;
margin-bottom: 2rem;
border-radius: 12px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-pricing {
background: linear-gradient(to bottom, #1a1565, #7e78bd);
backdrop-filter: blur(8px);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card h3 {
font-size: 1.25rem;
color: white;
margin-bottom: 1rem;
}

.benefit-list,
.feature-list,
.program-list,
.timeline-list,
.faq-list {
list-style: none;
padding-left: 0;
align-items: center;
}

.benefit-list li,
.feature-list li,
.program-list li,
.timeline-list li {
margin-bottom: 1rem;
position: relative;
padding-left: 1.5rem;
}

.benefit-list li::before,
.feature-list li::before,
.program-list li::before,
.timeline-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--secondary);
font-weight: bold;
}

.testimonial {
background: rgba(255, 255, 255, 0.04);
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 1.5rem;
font-style: italic;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial strong {
display: block;
color: var(--primary);
margin-bottom: 0.75rem;
}

.testimonial .author {
display: block;
margin-top: 1rem;
font-weight: 600;
color: var(--gray);
}

.timeline-list li div {
margin-top: 0.5rem;
opacity: 0.9;
}

.faq-q {
font-weight: 700;
margin-bottom: 0.5rem;
}

.faq-a {
margin-bottom: 1.5rem;
color: var(--gray-light);
}

.countdown {
background: var(--primary-subtle);
color: var(--accent-secondary);
font-weight: 700;
padding: 1rem;
text-align: center;
margin-top: 1.5rem;
border-radius: 8px;
}


.white-btn {
background: white;
color: black;
padding: 1rem 2rem;
font-size: 1.5rem;
font-weight: 600;
border: none;
border-radius: 10px;
cursor: pointer;
letter-spacing: 0.5px;
transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.white-btn:hover {
background: linear-gradient(to right, #f0f0f0, #e0e0e0);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.cta-btn {
background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
color: white;
padding: 1rem 2rem;
font-size: 1.5rem;
font-weight: 600;
border: none;
border-radius: 10px;
cursor: pointer;
letter-spacing: 0.5px;
}

.cta-btn:hover {
background: linear-gradient(to right, var(--primary-dark), var(--primary));
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(202, 61, 211, 0.3);
}

.team-btn {
background: linear-gradient(to left, var(--secondary), var(--accent));
color: white;
padding: 1rem 2rem;
font-size: 1.5rem;
font-weight: 600;
border: none;
border-radius: 10px;
cursor: pointer;
letter-spacing: 0.5px;
}
.team-btn:hover {
background: linear-gradient(to right, var(--dark), var(--primary));
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(202, 61, 211, 0.3);
}

@media (max-width: 768px) {
.card-grid {
    grid-template-columns: 1fr;
}

.pricing-section .card-grid {
    grid-template-columns: 1fr;
  }

.cta-btn {
    width: 100%;
    text-align: center;
}
}
.faq-list {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
}

.faq-q {
cursor: pointer;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
margin-bottom: 0.5rem;
font-weight: 600;
transition: background 0.3s ease;
position: relative;
}

.faq-q:hover {
background: rgba(255, 255, 255, 0.08);
}

.faq-q::after {
content: "+";
position: absolute;
right: 1rem;
font-weight: bold;
transition: transform 0.3s ease;
}

.faq-q.active::after {
content: "−";
}

.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, opacity 0.3s ease;
opacity: 0;
padding: 0 1rem;
}

.faq-a.open {
max-height: 500px; /* Wystarczająco duża wartość */
opacity: 1;
margin-bottom: 1rem;
padding-top: 0.5rem;
}
/* Styl menu nawigacyjnego */
.main-nav {
position: sticky;
top: 0;
width: 100%;
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
display: flex;
align-items: center;
}

.nav-logo img {
display: block;
}

.nav-links {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
}

.nav-links li {
margin: 0 0.8rem;
}

.nav-links a {
color: var(--light);
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
transition: color 0.3s, opacity 0.3s;
opacity: 0.85;
padding: 0.5rem 0;
position: relative;
}

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

.nav-links a:hover {
opacity: 1;
color: #818cf8;
}

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

.nav-button {
background: linear-gradient(to right, #4338ca, #3730a3);
color: white !important;
padding: 0.6rem 1.2rem !important;
border-radius: 8px;
font-weight: 600;
opacity: 1 !important;
transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(67, 56, 202, 0.4);
}

.nav-button:hover::after {
width: 0 !important; /* Wyłącz podkreślenie dla przycisku */
}

.mobile-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 100;
}

.mobile-toggle span {
display: block;
width: 25px;
height: 3px;
background-color: var(--light);
margin: 5px 0;
border-radius: 2px;
transition: all 0.3s ease;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
.mobile-toggle {
  display: block;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.97);
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

.nav-links.active {
  right: 0;
}

.nav-links li {
  margin: 1rem 0;
  width: 100%;
}

.nav-cta {
  margin-top: 1rem;
  width: 100%;
}

.nav-button {
  display: block;
  text-align: center;
  width: 100%;
}

/* Animacja przycisku hamburgera */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
}

  .target-audience-section {
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.target-audience-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(67, 56, 202, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.target-audience-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.highlight-primary {
    color: #ca3dd3; /* Primary color */
    font-weight: 600;
}

.highlight-secondary {
    color: #4338ca; /* Accent blue */
    font-weight: 600;
}

.highlight-accent {
    color: #f43f5e; /* Accent secondary/red */
    font-weight: 600;
}

.final-note {
    margin-top: 1rem;
    font-weight: 500;
}
.technologies-section {
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.technologies-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    text-align: center;
    position: relative;
    z-index: 2;
}

.highlight-primary {
    color: #ca3dd3; /* Primary color */
    font-weight: 600;
}

.highlight-secondary {
    color: #10b981; /* Secondary green */
    font-weight: 600;
}

.highlight-accent {
    color: #4338ca; /* Accent blue */
    font-weight: 600;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .technologies-section {
        padding: 2rem 1rem;
    }
}
    .bonus-section {
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.bonus-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(244, 63, 94, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.special-badge {
    background: linear-gradient(135deg, #f43f5e, #ca3dd3);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(244, 63, 94, 0.4);
    position: relative;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.bonus-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #f43f5e;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
    background-color: #d1d5db;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
}

.bonus-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-identity {
    flex-grow: 1;
}

.bonus-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--light);
    background: linear-gradient(90deg, #f43f5e, #ca3dd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #818cf8;
}

.bonus-content {
    padding: 2rem;
}

.bonus-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.bonus-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.bonus-feature:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ca3dd3;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.bonus-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #f43f5e;
    padding: 1.5rem;
    font-style: italic;
    margin-top: 2rem;
}

.quote-author {
    margin-top: 1rem;
    font-weight: 600;
    text-align: right;
    font-style: normal;
}

.bonus-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.highlight-primary {
    color: #ca3dd3; /* Primary color */
    font-weight: 600;
}

.highlight-secondary {
    color: #10b981; /* Secondary green */
    font-weight: 600;
}

.highlight-accent {
    color: #f43f5e; /* Accent red */
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonus-features {
        grid-template-columns: 1fr;
    }

    .bonus-header {
        flex-direction: column;
        text-align: center;
    }

    .bonus-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .bonus-section {
        padding: 2rem 1rem;
    }
}
    .program-section {
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.program-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(67, 56, 202, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.timeline-container {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 140px;
    width: 4px;
    background: linear-gradient(to bottom, #4338ca, #ca3dd3);
    border-radius: 4px;
    z-index: 1;
}

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-date {
    width: 120px;
    margin-right: 40px;
    text-align: right;
    padding-right: 20px;
    flex-shrink: 0;
}

.timeline-week {
    font-weight: 700;
    color: #ca3dd3;
    margin-bottom: 0.25rem;
}

.timeline-day {
    font-size: 0.85rem;
    color: #818cf8;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    flex-grow: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4338ca, #ca3dd3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(67, 56, 202, 0.5);
    z-index: 2;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    background: linear-gradient(90deg, #928aea, #8587f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-description {
    color: var(--light);
}

.timeline-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.timeline-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.timeline-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #10b981;
}

.qa-session .timeline-content {
    background: linear-gradient(135deg, rgba(202, 61, 211, 0.1), rgba(67, 56, 202, 0.1));
    border: 1px dashed rgba(202, 61, 211, 0.3);
}

.qa-session .timeline-content::before {
    background: linear-gradient(135deg, #ca3dd3, #f43f5e);
    box-shadow: 0 0 15px rgba(202, 61, 211, 0.6);
}

.qa-session .timeline-title {
    background: linear-gradient(90deg, #ca3dd3, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Specjalny styl dla bonusu o Bielik.AI */
.bielik-bonus {
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
}

.bielik-bonus .timeline-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.bielik-bonus .timeline-content::before {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: sparkle 2s ease-in-out infinite;
}

.bielik-bonus .timeline-week {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: 800;
}

.bielik-bonus .timeline-day {
    color: #ffb347;
    font-weight: 600;
}

.bielik-bonus .timeline-title {
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
}

.bielik-bonus .timeline-title::after {
    content: "⭐ EKSKLUZYWNY ⭐";
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.7rem;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    padding: 4px 12px;
    border-radius: 20px;
    color: #000;
    font-weight: 800;
    text-shadow: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Animacje dla licznika */
.countdown-unit {
    display: inline-block;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    color: #e0e0e0;
}

.countdown-seconds {
    animation: pulse-countdown 1s ease-in-out infinite;
    color: #ca3dd3 !important;
    font-weight: 500;
}

#countdown-timer {
    animation: fadeInUp 0.6s ease-out;
    color: #ccc !important;
}

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

#countdown-timer {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Wyróżnienie boxa dostępu indywidualnego */
.individual-access-highlight {
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    border: 3px solid transparent;
    background: linear-gradient(to bottom, #0f0f23, #1a1a2e) padding-box,
                linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e) border-box;
    background-size: 100% 100%, 400% 400%;
    animation: gradient-border 4s ease infinite, subtle-glow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.individual-access-highlight::after {
    content: "🎯 NAJPOPULARNIEJSZY";
    position: absolute;
    top: -15px;
    right: 15px;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 0, 110, 0.2);
    }
    50% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(255, 0, 110, 0.3);
    }
}

@keyframes gradient-border {
    0% {
        background-position: 100% 100%, 0% 50%;
    }
    50% {
        background-position: 100% 100%, 100% 50%;
    }
    100% {
        background-position: 100% 100%, 0% 50%;
    }
}

@keyframes badge-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .individual-access-highlight {
        transform: scale(1.02);
    }

    .individual-access-highlight::after {
        font-size: 0.65rem;
        padding: 6px 12px;
        top: -12px;
        right: 10px;
    }
}

.program-note {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.note-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.note-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ca3dd3;
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-container::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-date {
        width: 100%;
        text-align: left;
        margin-right: 0;
        margin-bottom: 0.5rem;
        padding-right: 0;
        padding-left: 45px;
    }

    .timeline-content::before {
        left: -34px;
    }

    .program-note {
        flex-direction: column;
        padding: 1.5rem;
    }

    .note-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
}
    .mechanism-section {
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.mechanism-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(59, 59, 201, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.mechanism-container {
    position: relative;
    z-index: 2;
}

.mechanism-steps {
    margin-bottom: 3rem;
}

.mechanism-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 0 15px rgba(216, 33, 176, 0.3);
    position: relative;
    z-index: 3;
}

/* .mechanism-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, #ca3dd3, #4338ca);
    z-index: 1;
} */

.step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1.5rem;
    flex-grow: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.step-weeks {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: normal;
    margin-left: 0.5rem;
}

.step-description p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.step-outcome, .step-example {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.outcome-icon, .example-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: var(--secondary);
}

.example-icon {
    color: var(--accent);
}

.outcome-label, .example-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--secondary);
}

.example-label {
    color: var(--accent);
}

.mechanism-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mechanism-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mechanism-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.mechanism-note {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
}

.mechanism-cta {
    text-align: center;
}

.mechanism-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(216, 33, 176, 0.3);
}

.mechanism-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 33, 176, 0.4);
}

@media (max-width: 900px) {
    .mechanism-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mechanism-step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .mechanism-steps::before {
        left: 30px;
        top: 50px;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .mechanism-features {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        display: none;
    }
}
.videos-grid {
/* display: grid; */
/* grid-template-columns: repeat(2, 1fr); */
gap: 2rem;
margin: 2rem 0;
}

.video-item {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(8px);
border-radius: 12px;
padding: 1.5rem;
transition: transform 0.3s ease;
}

.video-item:hover {
transform: translateY(-5px);
}

.video-title {
font-size: 1.25rem;
font-weight: 600;
color: #818cf8;
}

.video-desc {
font-size: 0.95rem;
margin-bottom: 1rem;
opacity: 0.9;
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
overflow: hidden;
border-radius: 8px;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}

@media (max-width: 768px) {
.videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-item {
    padding: 1.25rem;
}

.opinia-text {
font-size: 1.25rem;
}

.opinia-avatar {
width: 80px;
height: 80px;
}
}

.btn-container {
display: inline-flex;  /* lub display: flex; */
gap: 1rem;
}
.yellow-highlight {
  background-color: #ffeb3b;
  color: #333333;
}

.program-highlights {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.program-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(67, 56, 202, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.highlights-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.highlight-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 150px;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.highlight-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .highlights-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight-item {
    min-width: auto;
    width: 100%;
    max-width: 200px;
  }

  .highlight-number {
    font-size: 2.5rem;
  }
}

/* Sekcja Sekretarka AI */
.ai-secretary-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)),
              radial-gradient(circle at 30% 50%, rgba(192, 38, 211, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(67, 56, 202, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.ai-secretary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c026d3' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.ai-secretary-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-secretary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-secretary-text {
  animation: slideInLeft 0.8s ease-out;
}

.badge-special {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
}

.ai-secretary-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.highlight-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight-gradient::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  border-radius: 2px;
  opacity: 0.7;
}

.ai-secretary-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.ai-secretary-features {
  margin-bottom: 2.5rem;
}

.feature-item-ai {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item-ai:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
  border-color: rgba(192, 38, 211, 0.2);
}

.feature-icon-ai {
  font-size: 1.8rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(192, 38, 211, 0.2);
}

.feature-text-ai h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.3rem;
}

.feature-text-ai p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.ai-secretary-cta {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(192, 38, 211, 0.2);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.cta-btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.cta-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.ai-secretary-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.visual-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--dark-card), var(--dark));
}

.ai-secretary-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.ai-badge {
  background: linear-gradient(45deg, var(--primary), var(--accent-light));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(192, 38, 211, 0.4);
  animation: float 3s ease-in-out infinite;
}

.pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.3;
}

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

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

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
}

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

/* Responsywność */
@media (max-width: 768px) {
  .ai-secretary-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .ai-secretary-title {
    font-size: 2.2rem;
  }

  .ai-secretary-description {
    font-size: 1.1rem;
  }

  .feature-item-ai {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .ai-secretary-section {
    padding: 3rem 1rem;
  }

  .visual-container {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Sekcja Przykładów Agentów AI */
.agents-examples-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)),
              radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(67, 56, 202, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.agents-examples-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234338ca' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20V20zM0 0h20v20H0V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.agents-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.agents-header {
  text-align: center;
  margin-bottom: 3rem;
}

.agents-header .section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.agent-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.agent-card:hover::before {
  opacity: 0.2;
}

.agent-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.agent-visual {
  position: relative;
  margin-bottom: 1.5rem;
}

.agent-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.agent-card:hover .agent-image {
  border-color: var(--primary);
  transform: scale(1.1);
}

.agent-badge {
  position: absolute;
  top: -5px;
  right: 10px;
  background: linear-gradient(45deg, var(--primary), var(--accent-light));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(192, 38, 211, 0.4);
  animation: bounce 2s infinite;
}

.agent-content {
  padding-top: 0.5rem;
}

.agent-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, var(--light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.agents-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(67, 56, 202, 0.2);
}

.agents-note {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-style: italic;
}

.cta-btn-agents {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 25px rgba(192, 38, 211, 0.3);
}

.cta-btn-agents:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(192, 38, 211, 0.4);
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Responsywność */
@media (max-width: 768px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .agent-card {
    padding: 1.25rem;
  }

  .agent-image {
    width: 100px;
    height: 100px;
  }

  .agent-title {
    font-size: 1.1rem;
  }

  .agent-description {
    font-size: 0.9rem;
  }

  .agents-examples-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .agents-grid {
    grid-template-columns: 1fr;
  }

  .agent-image {
    width: 120px;
    height: 120px;
  }

  .agent-title {
    font-size: 1.2rem;
  }
}

.testimonial-container {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
padding-bottom: 2rem;
}

.testimonial-container:has(.video-item:nth-child(2)) {
grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
.testimonial-container {
padding-left: 2rem;
padding-right: 2rem;
}

.testimonial-container:has(.video-item:nth-child(2)) {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 767px) {
.testimonial-container {
grid-template-columns: 1fr !important;
}
}

.opinia-section {
padding: 3rem 1rem;
/* background: rgba(255, 255, 255, 0.05); */
}

.opinia-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.opinia-text {
font-size: 1.5rem;
font-weight: 500;
color: #1e90ff;
margin-bottom: 1.5rem;
line-height: 1.4;
}

.opinia-author {
display: flex;
flex-direction: column;
align-items: center;
}

.opinia-avatar {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
border: 3px solid var(--accent);
}

.opinia-meta {
text-align: center;
}

.opinia-name {
font-size: 1.25rem;
font-weight: 700;
color: var(--light);
}

.opinia-role {
font-size: 1rem;
color: #818cf8;
}

/* Enhanced Testimonials Section */
.testimonials-enhanced {
  padding: var(--spacing-2xl) var(--spacing-sm);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(67, 56, 202, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--card-radius-lg);
  padding: var(--card-padding);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), var(--secondary), var(--primary));
  z-index: -1;
  border-radius: var(--card-radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover::before {
  opacity: 0.3;
}

.testimonial-content {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.testimonial-highlight {
  background: linear-gradient(90deg, var(--accent-light), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
}

.testimonial-highlight::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ca3dd3, #4338ca);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--dark-card), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.testimonial-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-purple));
  opacity: 0.1;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-text {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.3rem 0 0 0;
  font-weight: 400;
}

.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #0077b5, #004182);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.2rem;
}

.testimonial-linkedin:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
}

.testimonial-linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonials-intro .section-subtitle {
  color: #d1d5db;
  font-size: 1.1rem;
}

/* Featured Testimonial Card - Modern Design */
.featured-testimonial {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 4rem 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.featured-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  z-index: 1;
}

.featured-testimonial-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.featured-testimonial-avatar {
  flex-shrink: 0;
}

.featured-testimonial-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-testimonial-text {
  flex: 1;
}

.featured-testimonial-quote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}

.featured-testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(96, 165, 250, 0.3);
  position: absolute;
  left: -2rem;
  top: -1rem;
  font-family: Georgia, serif;
}

.featured-testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.featured-testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.featured-testimonial-role {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 400;
}

.featured-testimonial-highlight {
  background: linear-gradient(90deg, var(--accent-light), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

@media (max-width: 768px) {
  .featured-testimonial {
    padding: 2rem;
    margin: 2rem 0;
  }

  .featured-testimonial-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .featured-testimonial-avatar img {
    width: 100px;
    height: 100px;
  }

  .featured-testimonial-quote {
    font-size: 1.1rem;
  }

  .featured-testimonial-quote::before {
    left: -1rem;
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 0.95rem;
  }

  .testimonials-enhanced {
    padding: 2rem 1rem;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonial-author-info {
    gap: 0.75rem;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-role {
    font-size: 0.85rem;
  }
}

