/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --background: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -250px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-secondary);
    top: 30%;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: var(--gradient-accent);
    bottom: -300px;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

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

.hero-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup with Black Frame */
.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 8px solid #2a2a2a;
}

.phone-frame .mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: contain;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    filter: blur(10px);
    z-index: 1;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    filter: blur(10px);
    z-index: 1;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

.szczegoly {
    padding: 60px 0 100px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: var(--background);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray);
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background: var(--background);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-image {
    position: relative;
}

.benefits-mockup {
    position: relative;
    height: 500px;
}

.mockup-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
    animation: float-card 8s infinite ease-in-out;
}

.card-1 {
    width: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.card-2 {
    width: 200px;
    bottom: 50px;
    right: 0;
    z-index: 1;
    animation-delay: -4s;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 24px;
}

.card-title {
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.card-amount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.card-progress {
    width: 100%;
    height: 8px;
    background: var(--background);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

.card-label {
    font-size: 14px;
    color: var(--gray);
}

.card-icon-large {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-stat {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    padding: 40px;
    background: var(--background);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    margin-bottom: 3px;
}

.author-role {
    font-size: 14px;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    background: var(--background);
    padding: var(--section-padding);
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-4 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
}

.orb-5 {
    width: 500px;
    height: 500px;
    background: var(--gradient-secondary);
    bottom: -200px;
    right: -200px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--gray-light);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark-light);
    color: var(--gray-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-brand {
    max-width: 350px;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-column h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;   /* ustawia elementy pionowo */
    gap: 10px;                /* odstęp między nimi */
    justify-content: center;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .orb-1 {
        width: 500px;
        height: 500px;
        top: -200px;
        left: -150px;
    }
    
    .orb-2 {
        width: 450px;
        height: 450px;
        right: -180px;
    }
    
    .orb-3 {
        width: 600px;
        height: 600px;
        bottom: -250px;
        left: 15%;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .features-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    /* Lepsze dopasowanie gradient orbs dla tabletów */
    .gradient-orb {
        filter: blur(90px);
        opacity: 0.45;
    }
    
    .orb-1 {
        width: 450px;
        height: 450px;
        top: -180px;
        left: -120px;
    }
    
    .orb-2 {
        width: 400px;
        height: 400px;
        top: 25%;
        right: -150px;
    }
    
    .orb-3 {
        width: 550px;
        height: 550px;
        bottom: -220px;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 38px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .benefits-mockup {
        height: 400px;
    }
    
    .card-1 {
        width: 280px;
    }
    
    .card-2 {
        width: 180px;
    }
    
    /* Zoptymalizowane gradient orbs dla mobile */
    .gradient-orb {
        filter: blur(70px);
        opacity: 0.4;
    }
    
    .orb-1 {
        width: 350px;
        height: 350px;
        top: -120px;
        left: -80px;
    }
    
    .orb-2 {
        width: 320px;
        height: 320px;
        top: 35%;
        right: -100px;
    }
    
    .orb-3 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .feature-card,
    .review-card {
        padding: 30px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    /* Jeszcze bardziej zoptymalizowane dla małych telefonów */
    .gradient-orb {
        filter: blur(60px);
        opacity: 0.35;
    }
    
    .orb-1 {
        width: 280px;
        height: 280px;
        top: -100px;
        left: -60px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
        top: 40%;
        right: -80px;
    }
    
    .orb-3 {
        width: 320px;
        height: 320px;
        bottom: -120px;
        left: 50%;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .review-card,
    .benefit-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }
    
    .review-card:nth-child(1) { animation-delay: 0.1s; }
    .review-card:nth-child(2) { animation-delay: 0.2s; }
    .review-card:nth-child(3) { animation-delay: 0.3s; }
}

.hero-image1 img {
    width: 100%;
    border-radius: 10px;
}
/* Tablet Mockup Styles */
.tablet-mockup {
    position: relative;
}

.tablet-frame {
    width: 600px;
    height: 450px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    border: 8px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-frame .mockup-screen {
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
    object-position: center;
    background: var(--gradient-primary);
}

.tablet-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    filter: blur(15px);
    z-index: 1;
}

/* Responsive Tablet Mockup */
@media (max-width: 1200px) {
    .tablet-frame {
        width: 500px;
        height: 375px;
        padding: 18px;
    }
}

@media (max-width: 1024px) {
    .tablet-frame {
        width: 450px;
        height: 340px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .tablet-mockup {
        margin-top: 40px;
    }
    
    .tablet-frame {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 4/3;
        padding: 15px;
        border: 6px solid #2a2a2a;
    }
}

@media (max-width: 480px) {
    .tablet-frame {
        border-radius: 20px;
        padding: 12px;
        border: 5px solid #2a2a2a;
    }
    
    .tablet-frame .mockup-screen {
        border-radius: 12px;
    }
}
/*dopasowanie mockupu telefonu, żeby nie był ucięty*/
.phone-frame .mockup-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* zamiast cover — to klucz! */
    padding: 0 5;      /* marginesy jak w Twojej grafice */
    box-sizing: border-box;
    border-radius: 34px;  /* dopasowanie do obudowy */
}

.logo img {
    width: 4rem;
    position: relative;
    z-index: 1002;
}

.logo {
    position: relative;
    z-index: 1002;
}

    .feature-img {
        width: 3rem;
    }

    .attribution a,
.attribution a:visited {
    text-decoration: none;
    color: var(--gray-light); /* albo inny, który pasuje do stopki */
}

/* usunięcie ostrej granicy gradientu między sekcjami */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(248, 250, 252, 0) 0%,
        rgba(248, 250, 252, 0.3) 30%,
        rgba(248, 250, 252, 0.7) 60%,
        rgba(248, 250, 252, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Dodatkowe wygładzenie dla tabletów */
@media (max-width: 1024px) {
    .hero::after,
    .wprowadzenie::after {
        height: 180px;
    }
}

/* Dodatkowe wygładzenie dla mobile */
@media (max-width: 768px) {
    .hero::after,
    .wprowadzenie::after {
        height: 150px;
        background: linear-gradient(to bottom, 
            rgba(248, 250, 252, 0) 0%,
            rgba(248, 250, 252, 0.4) 35%,
            rgba(248, 250, 252, 0.8) 70%,
            rgba(248, 250, 252, 1) 100%
        );
    }
    
    .wprowadzenie::after {
        background: linear-gradient(to bottom, 
            rgba(248, 250, 252, 0) 0%,
            rgba(248, 250, 252, 0.4) 35%,
            rgba(248, 250, 252, 0.8) 70%,
            rgba(255, 255, 255, 1) 100%
        );
    }
}

.wprowadzenie {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--background);
}

.wprowadzenie::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(248, 250, 252, 0) 0%,
        rgba(248, 250, 252, 0.3) 30%,
        rgba(248, 250, 252, 0.7) 60%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}