* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    overflow-x: hidden;
    width: 100%;
}

/* Skalowanie dla Full HD (80% z 18px = 14.4px) */
@media (max-width: 1920px) {
    html {
        font-size: 14.4px;
    }
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffc107;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-dark: #333;
    --text-light: #444;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: block;
    width: 100%;
    word-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-section {
    padding: 60px 0;
    background: var(--light-color);
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.price-card.highlighted {
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.price-card.highlighted::before {
    content: 'Polecane';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

.price-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.price-icon i {
    font-size: 2rem;
    color: var(--white);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    margin-bottom: 20px;
}

.price-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--primary-color);
}

.price-note {
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #856404;
    font-weight: 600;
    text-align: center;
}

.packages-section {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.package-card.featured .package-header h3,
.package-card.featured .package-price,
.package-card.featured .package-features {
    color: var(--white);
}

.package-card.featured .package-features i {
    color: var(--accent-color);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.package-card:not(.featured) .package-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-card.featured .price-value {
    color: var(--white);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--text-light);
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
    word-break: break-word;
}

.package-card.featured .package-features li {
    color: rgba(255, 255, 255, 0.95);
}

.package-features i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    /* Slightly smaller on mobile but still readable */
    html {
        font-size: 16px;
    }
}

/* Styling dla kartek usług jako linki */
.price-card {
    display: block;
}

.price-card:hover i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.package-card {
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
}

/* Laptop Notice */
.laptop-notice-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.laptop-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    border-left: 4px solid #2196f3;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.laptop-notice i {
    font-size: 1.8rem;
    color: #2196f3;
    flex-shrink: 0;
}

.laptop-notice p {
    color: #424242;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.laptop-notice strong {
    color: #1565c0;
}

@media (max-width: 768px) {
    .laptop-notice {
        flex-direction: column;
        padding: 18px 20px;
        gap: 10px;
    }
}