:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --gradient-start: #4f46e5;
    --gradient-end: #7c3aed;
    --section-padding: 5rem 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #111827;
    /*padding-top: 60px;*/
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Nawigacja */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #4b5563;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Rozszerzona sekcja Hero z dodatkowymi elementami tła */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(91, 33, 182, 0.04) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
            linear-gradient(to right, rgba(79, 70, 229, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%234f46e5' fill-opacity='0.03'%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: 2;
}

/* Elementy geometryczne */
.hero-geometric-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

.geometric-element {
    position: absolute;
    opacity: 0.8;
}

.ge-1 {
    top: 15%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.ge-2 {
    top: 25%;
    right: 15%;
    animation: rotate 30s linear infinite reverse;
}

.ge-3 {
    bottom: 20%;
    left: 18%;
    animation: rotate 25s linear infinite;
}

.ge-4 {
    top: 60%;
    right: 10%;
    animation: pulse 15s ease-in-out infinite;
}

.ge-5 {
    top: 8%;
    right: 30%;
    animation: float 18s ease-in-out infinite;
}

.ge-6 {
    bottom: 15%;
    right: 25%;
    animation: float 12s ease-in-out infinite alternate;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Elementy kodu */
.hero-code-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.code-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(79, 70, 229, 0.1);
    font-weight: bold;
    opacity: 0.7;
    white-space: nowrap;
}

.ce-1 {
    top: 20%;
    left: 5%;
    font-size: 1.2rem;
    transform: rotate(-15deg);
    animation: fadeInOut 8s infinite;
}

.ce-2 {
    top: 10%;
    right: 15%;
    font-size: 1.4rem;
    transform: rotate(10deg);
    animation: fadeInOut 10s infinite 2s;
}

.ce-3 {
    bottom: 25%;
    left: 15%;
    font-size: 1.3rem;
    transform: rotate(5deg);
    animation: fadeInOut 9s infinite 1s;
}

.ce-4 {
    bottom: 15%;
    right: 8%;
    font-size: 1.2rem;
    transform: rotate(-8deg);
    animation: fadeInOut 12s infinite 3s;
}

.ce-5 {
    top: 45%;
    right: 25%;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    animation: fadeInOut 11s infinite 1.5s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.hero-text-column {
    position: relative;
    z-index: 10;
}

.hero-shapes .shape {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0) 70%);
    top: 15%;
    left: 10%;
    animation: float 15s infinite alternate;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 70%);
    bottom: 20%;
    left: 5%;
    animation: float 18s infinite alternate-reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
    top: 25%;
    right: 15%;
    animation: float 12s infinite alternate;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.08) 0%, rgba(91, 33, 182, 0) 70%);
    bottom: 15%;
    right: 10%;
    animation: float 20s infinite alternate-reverse;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
    top: 50%;
    left: 20%;
    animation: float 17s infinite alternate;
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    top: 40%;
    right: 30%;
    animation: float 14s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(15px);
    }
    50% {
        transform: translateY(10px) translateX(-10px);
    }
    75% {
        transform: translateY(-5px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 5;
}

.hero-buttons {
    position: relative;
    z-index: 5;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.btn-gradient span {
    z-index: 2;
    position: relative;
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover:before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    color: #fff;
}

.btn-gradient:hover .btn-arrow {
    transform: translateX(4px);
}

.user-count {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Efekt fali na dole */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    color: #fff;
}

.hero-dashboard {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

.dashboard-decoration-1,
.dashboard-decoration-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.dashboard-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    left: -50px;
    top: 20%;
}

.dashboard-decoration-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    right: -30px;
    bottom: 10%;
}

.hero-shapes .shape {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0) 70%);
    top: 10%;
    left: 10%;
    border-radius: 50%;
    animation: pulse 5s infinite alternate;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0) 70%);
    bottom: 15%;
    left: 5%;
    border-radius: 50%;
    animation: pulse 7s infinite alternate-reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 70%);
    top: 20%;
    right: 20%;
    border-radius: 50%;
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.user-count {
    display: flex;
    align-items: center;
}

.user-avatars {
    display: flex;
    margin-right: 10px;
}

.avatar-circle, .avatar-more {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e5e7eb;
    margin-right: -10px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: bold;
}

.user-count-text {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Sekcja partnerów */
.partners-section {
    background-color: #f9fafb;
}

.partners-heading {
    font-size: 0.9rem;
    color: #6b7280;
    letter-spacing: 1px;
}

.partners-logos {
    gap: 2rem;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.partner-placeholder {
    color: #9ca3af;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Sekcja funkcji */
.feature-card-wrapper {
    transition: transform 0.3s ease;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Sekcja prezentacji aplikacji */
.app-showcase {
    position: relative;
}

.app-showcase-image {
    position: relative;
}

.app-showcase-decoration-1,
.app-showcase-decoration-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.app-showcase-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
    right: -200px;
    top: -100px;
}

.app-showcase-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(79, 70, 229, 0) 70%);
    left: -150px;
    bottom: -50px;
}

.app-showcase-navigation {
    margin-top: 2rem;
}

.app-nav-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-nav-item.active {
    background: var(--primary-color);
    color: white;
}

.app-nav-item:not(.active):hover {
    background: #f3f4f6;
}

/* Sekcja korzyści */
.benefits-section {
    background-color: #f9fafb;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-image {
    position: relative;
    z-index: 2;
}

.benefits-decoration-1,
.benefits-decoration-2,
.benefits-decoration-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.benefits-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
    left: -100px;
    top: -50px;
}

.benefits-decoration-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(79, 70, 229, 0) 70%);
    right: -50px;
    top: 30%;
}

.benefits-decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0) 70%);
    left: 20%;
    bottom: -50px;
}

.benefit-item {
    display: flex;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    color: #6b7280;
}

/* Sekcja opinii klientów */
.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

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

.testimonial-rating {
    color: #facc15;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Sekcja cennika */
.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
    height: 100%;
}

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

.pricing-card-popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

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

.pricing-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pricing-feature-item svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-feature-item.disabled {
    color: #9ca3af;
}

/* Sekcja CTA */
.cta-section {
    background-color: #f9fafb;
}

.cta-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 10px;
    padding: 3rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Stopka */
.footer {
    background-color: #f9fafb;
}

.footer-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-social {
    display: flex;
}

.footer-social-item {
    width: 36px;
    height: 36px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.footer-social-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: #6b7280;
    margin-bottom: 0;
}

.footer-lang-switcher {
    display: flex;
    justify-content: flex-end;
}

.footer-lang-item {
    color: #6b7280;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-lang-item:hover {
    color: var(--primary-color);
}

.footer-lang-item.active {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsywność */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 6rem 0;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 3rem;
    }

    .user-count {
        justify-content: center;
    }

    .pricing-card-popular {
        transform: none;
    }

    .pricing-card-popular:hover {
        transform: translateY(-5px);
    }

    .cta-card {
        padding: 2rem;
        text-align: center;
    }

    .cta-section .btn {
        margin-top: 1.5rem;
    }
}

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

    .benefit-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .benefit-content {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-brand {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer p {
        text-align: center;
    }
}

.free-access-alert {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
    padding: 3rem;
    overflow: hidden;
    border: 2px dashed #4f46e5;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.free-access-ribbon {
    position: absolute;
    top: 30px;
    left: -35px;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    color: white;
    padding: 8px 40px;
    transform: rotate(-45deg);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.free-access-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.1);
}

.free-access-content {
    flex: 1;
}

.free-access-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.free-access-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.free-access-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.free-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #111827;
}

.free-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.free-feature-icon svg {
    width: 16px;
    height: 16px;
}

.free-access-button {
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.free-access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

@media (max-width: 992px) {
    .free-access-alert {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem 2rem;
    }

    .free-access-icon {
        margin-bottom: 1.5rem;
    }

    .free-access-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
