* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2744;
    --secondary: #c9a227;
    --accent: #e8d5a3;
    --dark: #0d1117;
    --light: #f8f9fa;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient-1: linear-gradient(135deg, #1a2744 0%, #2d4a6f 100%);
    --gradient-2: linear-gradient(180deg, rgba(26,39,68,0.95) 0%, rgba(13,17,23,0.98) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-cta {
    background: var(--gradient-1);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,39,68,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 0 100px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a227" stroke-width="0.5" opacity="0.2"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-editorial h1 span {
    color: var(--secondary);
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    gap: 40px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-meta-item strong {
    color: var(--secondary);
}

/* Editorial Content */
.editorial-section {
    padding: 80px 0;
}

.editorial-section.alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.editorial-section.dark {
    background: var(--primary);
    color: white;
}

.editorial-intro {
    font-size: 1.35rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.editorial-intro::first-letter {
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text);
}

.editorial-quote {
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d4a6f 100%);
    border-radius: 8px;
    margin: 50px 0;
    position: relative;
}

.editorial-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.editorial-quote p {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.editorial-quote cite {
    display: block;
    margin-top: 20px;
    color: var(--secondary);
    font-style: normal;
    font-weight: 600;
}

.inline-image {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.inline-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 15px 20px;
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header.light h2 {
    color: white;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Inline CTA */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
}

.inline-cta svg {
    width: 20px;
    height: 20px;
}

/* Problem Section */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1 1 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.benefit-content h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* Services / Pricing */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid var(--secondary);
    position: relative;
}

.service-card.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.service-image {
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--secondary);
    opacity: 0.8;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.service-price {
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-cta {
    display: block;
    text-align: center;
    background: var(--gradient-1);
    color: white;
    padding: 14px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    box-shadow: 0 10px 30px rgba(26,39,68,0.3);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info h4 {
    color: white;
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26,39,68,0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(201,162,39,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.footer-col p {
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom a {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--secondary);
    color: var(--dark);
}

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    padding: 40px;
}

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4b42a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

.thanks-card h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-card a {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
}

/* Page Headers */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-2);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-page {
    padding: 80px 0;
}

.content-page h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-page h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.content-page ul {
    margin: 20px 0 20px 30px;
}

.content-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 80px 0;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Page */
.about-hero {
    padding: 150px 0 80px;
    background: var(--gradient-2);
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1 1 400px;
    color: white;
}

.about-text h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
}

.about-image {
    flex: 1 1 350px;
    height: 400px;
    background: var(--secondary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-card {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary);
}

.team-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.team-card span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-card p {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--secondary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    font-size: 1.05rem;
}

.urgency-banner strong {
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
    flex: 1 1 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .thanks-card {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .container, .narrow {
        padding: 0 15px;
    }

    .nav-inner {
        padding: 15px 20px;
    }

    .hero-editorial {
        padding: 130px 0 70px;
    }

    .editorial-quote {
        padding: 30px;
    }

    .service-card {
        max-width: 100%;
    }
}
