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

body {
    font-family: 'Inter', sans-serif;
    color: #1C2E2F;
    background-color: #EAEDEC;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* NAVBAR */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F4E4F;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #2D4A4B;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #8B6B4F;
}

.btn-outline {
    border: 1px solid #8B6B4F;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: #8B6B4F !important;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #8B6B4F;
    color: white !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background-color: #8B6B4F;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6F543D;
    transform: translateY(-2px);
}

.btn-secondary {
    background: none;
    border: 1px solid #8B6B4F;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    color: #8B6B4F;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #8B6B4F;
    color: white;
}

/* HERO */
.hero {
    padding: 3rem 0;
    background: #DDE4E2;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero-sub {
    font-size: 1.1rem;
    color: #2D4A4B;
    margin: 1rem 0 1.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons a {
        text-align: center;
    }
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #D6DDDB;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 1rem;
    display: inline-block;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: #2D4A4B;
    font-size: 0.95rem;
}

/* STEPS */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 150px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: 0.2s;
    border: 1px solid #D6DDDB;
}

.step:hover {
    transform: translateY(-3px);
    background: #FFFFFF;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 44px;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: #2D4A4B;
}

.arrow {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B6B4F;
    background: none;
    box-shadow: none;
    flex: 0 0 auto;
    padding: 0;
    min-width: auto;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }
    .arrow {
        transform: rotate(90deg);
    }
}

/* POLICY BANNER */
.policy-banner {
    background: #DDE4E2;
    border-left: 5px solid #8B6B4F;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.policy-banner a {
    color: #8B6B4F;
    text-decoration: none;
    font-weight: 600;
}

/* CASE STUDY */
.case-study {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    border: 1px solid #D6DDDB;
}

.case-content {
    flex: 2;
}

.case-icon {
    flex: 1;
    text-align: center;
    font-size: 80px;
}

/* OPINIONS */
.opinie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opinion-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #D6DDDB;
    font-style: italic;
}

/* LEAD MAGNET */
.lead-magnet {
    background: #DDE4E2;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
}

.inline-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.inline-form input {
    padding: 0.8rem;
    border-radius: 40px;
    border: 1px solid #BCC8C5;
    background: white;
    min-width: 220px;
}

/* FOOTER */
footer {
    background: #FFFFFF;
    padding: 2rem 0 1rem;
    border-top: 1px solid #D6DDDB;
    margin-top: 3rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    line-height: 1.6;
}

.footer-contact a {
    color: #8B6B4F;
    text-decoration: none;
}

.footer-note {
    font-size: 0.85rem;
    color: #2D4A4B;
    max-width: 400px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: #5A7677;
    border-top: 1px solid #D6DDDB;
    padding-top: 1rem;
}

/* CTA DARK */
.cta-dark {
    background: #1F4E4F;
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
}

.cta-dark .btn-primary {
    background: #8B6B4F;
    color: white;
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .cards-grid, .opinie-grid {
        grid-template-columns: 1fr;
    }
    .policy-banner {
        flex-direction: column;
        text-align: center;
    }
    .case-study {
        flex-direction: column;
        text-align: center;
    }
    .hero-grid {
        flex-direction: column;
    }
}