:root {
    --primary-color: #00c675; /* Zielony z przycisków */
    --primary-hover: #00a863;
    --text-dark: #0b1c3c; /* Ciemnogranatowy z nagłówków */
    --text-muted: #64748b; /* Szarość tekstów */
    --bg-light: #f8fafc; /* Jasne tło sekcji */
    --border-color: #e2e8f0;
    --white: #ffffff;
    --font-family: 'Inter', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-family);
    color: var(--text-muted);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* Buttons */
.btn-custom-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-custom-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-custom-outline:hover {
    background-color: var(--bg-light);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Badges */
.badge-soft-primary {
    background-color: rgba(0, 198, 117, 0.1);
    color: var(--primary-color);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-small-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #3b82f6; /* Blueish from design */
}

/* Navbar */
.navbar-custom {
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand-icon {
    width: 32px;
    height: 32px;
    background-color: var(--text-dark);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-card.top-right {
    top: 2rem;
    right: -2rem;
    animation-delay: 0s;
}

.floating-card.bottom-left {
    bottom: 2rem;
    left: -2rem;
    animation-delay: 3s;
}

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

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-icon.green {
    background-color: rgba(0, 198, 117, 0.1);
    color: var(--primary-color);
}

.floating-icon.blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Info List */
.info-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-list i {
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(59, 130, 246, 0.05);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Path Section */
.path-section {
    padding: 6rem 0;
}

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

.path-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.path-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 198, 117, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Chat Mockup */
.chat-mockup {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.chat-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-body {
    padding: 1.5rem;
    background-color: #fafbfc;
}

.chat-bubble {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.chat-message {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 0 16px 16px 16px;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-left: 3rem; /* Align with message body */
}

.chat-option-btn {
    text-align: left;
    padding: 0.8rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.chat-option-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(0, 198, 117, 0.05);
}

.chat-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0f766e; /* Dark teal */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-info h6 {
    margin: 0;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Logos Strip */
.logos-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0.5;
    margin-top: 4rem;
}

.logos-strip img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.logos-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Box */
.cta-box-wrapper {
    padding: 0 1rem;
    margin-bottom: -160px;
    position: relative;
    z-index: 10;
}

.cta-box {
    background-color: var(--text-dark);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 50%);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,198,117,0.15) 0%, transparent 60%);
    z-index: 0;
}

.cta-box-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 1.5rem 0;
    line-height: 1.2;
}

.cta-box .text-primary-custom {
    color: var(--primary-color) !important;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 220px 0 3rem; /* Extra padding to clear the CTA box overlap */
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.footer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-list i {
    margin-top: 0.25rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

/* Utilities */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .floating-card {
        display: none; /* Ukryj pływające elementy na małych ekranach dla czytelności */
    }
    .cta-box-wrapper {
        margin-bottom: -100px;
    }
    .footer {
        padding-top: 150px;
    }
}
