:root {
    /* Colors */
    --primary-color: #0F172A;
    /* Deep Navy */
    --secondary-color: #334155;
    /* Slate */
    --accent-color: #F97316;
    /* Vibrant Orange */
    --accent-hover: #EA580C;
    --text-light: #F8FAFC;
    --text-dark: #1E293B;
    --bg-light: #F1F5F9;
    --white: #FFFFFF;
    --success: #22c55e;

    /* Spacing */
    --section-padding: 4rem 1rem;
    --container-max-width: 1200px;

    /* Typography */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-accent {
    color: var(--accent-color);
}

.text-white {
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
}

.microcopy {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: #64748b;
    font-weight: 500;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.section-padding {
    padding: var(--section-padding);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero .microcopy {
    color: #94a3b8;
}

/* Problem & Agitation */
.problem-solution {
    background-color: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pain-point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.pain-point h3 {
    margin-bottom: 0.5rem;
}

/* Steps */
.how-it-works {
    background-color: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 0;
}

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

/* Features/Modules */
.modules {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.modules h2 {
    color: var(--text-light);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.module-card h3 {
    color: var(--accent-color);
}

.module-card p {
    color: #cbd5e1;
}

.module-card img{
  display: block;
  margin: 0 auto;     /* wyśrodkowanie poziome */
  max-width: 100%;
  height: auto;
}


/* Trial Breakdown */
.trial-details {
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #e2e8f0;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px #e2e8f0;
}

.time {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: block;
}

/* Pricing/Trust */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    opacity: 0.8;
}

.pricing {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--secondary-color);
    margin-top: 1rem;
    display: none;
    /* Hidden by default */
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #94a3b8;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--text-light);
}

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

/* Blog Specific */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

header.blog-header {
    position: static;
    /* albo relative */
    top: auto;
    z-index: auto;

}

.blog-meta {
    margin-bottom: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

.content h2 {
    margin-top: 2.5rem;
}

.content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.content li {
    margin-bottom: 0.5rem;
}

.cta-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for MVP */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}