/*
Theme Name: Narzędziownik Kupującego
Theme URI: https://narzedziownik.pl
Author: Ewelina Zajączkowska-Klec
Author URI: https://narzedziownik.pl
Description: Profesjonalny motyw WordPress dla strony sprzedażowej Narzędziownik Kupującego - pakiet narzędzi do zakupu mieszkania
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: narzedziownik
Tags: landing-page, sales, real-estate, one-page, custom-colors, responsive
*/

/* ===========================
   Variables & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #f49d19;
    --orange-secondary: #feb707;
    --yellow: #ffde59;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #555555;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
}

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

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

/* Navigation */
nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Problem Section */
.problem {
    padding: 80px 20px;
    background: var(--white);
}

.problem h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.problem-list {
    background: #fff5e6;
    border-left: 6px solid var(--orange-primary);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.problem-list li {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark);
}

.problem-list strong {
    color: var(--orange-primary);
}

.story-box {
    background: var(--white);
    border: 3px solid var(--yellow);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.story-box p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Solution Section */
.solution {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(244, 157, 25, 0.08) 0%, rgba(254, 183, 7, 0.08) 100%);
}

.solution h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.solution .intro {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--gray);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    border: 3px solid var(--yellow);
    transition: all 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(244, 157, 25, 0.15);
}

.tool-icon {
    font-size: 40px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.tool-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.tool-card .benefit {
    margin-top: 15px;
    padding: 15px;
    background: #fff9f0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.tool-card .benefit i {
    color: var(--orange-secondary);
    margin-right: 8px;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.benefits h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.benefits-intro {
    text-align: center;
    font-size: 22px;
    margin-bottom: 60px;
    color: var(--gray);
    font-style: italic;
}

.benefit-big {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.benefit-big h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-big p {
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.95;
}

.benefit-big ul {
    margin-top: 25px;
    list-style: none;
}

.benefit-big ul li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

.benefit-big ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 24px;
    color: var(--yellow);
}

/* Author Bio */
.author {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(244, 157, 25, 0.08) 0%, rgba(254, 183, 7, 0.08) 100%);
}

.author h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.author-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--orange-primary);
}

.author-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.author-title {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.author-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark);
}

.credentials {
    background: #fff9f0;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--orange-secondary);
}

.credentials strong {
    color: var(--orange-primary);
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: var(--white);
}

.pricing h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: var(--gray);
}

.value-stack {
    background: #fff9f0;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.value-stack h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px dotted #ddd;
    font-size: 18px;
}

.value-item:last-child {
    border-bottom: none;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 3px solid var(--orange-primary);
    font-weight: 700;
    font-size: 22px;
}

.value-price {
    color: var(--orange-primary);
    font-weight: 600;
}

.pricing-box {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-box:before {
    content: "OFERTA STARTOWA";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--yellow);
    color: var(--dark);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 14px;
}

.old-price {
    font-size: 32px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.new-price {
    font-size: 72px;
    font-weight: 900;
    margin: 20px 0;
}

.new-price span {
    font-size: 36px;
}

.price-note {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: var(--white);
    color: var(--orange-primary);
    padding: 25px 60px;
    font-size: 24px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.bonus-box {
    background: var(--white);
    color: var(--dark);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.bonus-box h4 {
    color: var(--orange-primary);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.bonus-box ul {
    list-style: none;
}

.bonus-box li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.bonus-box li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Guarantee */
.guarantee {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(244, 157, 25, 0.08) 0%, rgba(254, 183, 7, 0.08) 100%);
}

.guarantee-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border: 4px solid var(--orange-secondary);
    text-align: center;
}

.guarantee-icon {
    font-size: 80px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.guarantee h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
}

.guarantee p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray);
}

/* FOMO Section */
.fomo {
    padding: 80px 20px;
    background: var(--white);
}

.fomo h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.fomo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.fomo-card {
    padding: 35px;
    border-radius: 15px;
}

.fomo-card.gain {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 3px solid #4caf50;
}

.fomo-card.loss {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 3px solid #f44336;
}

.fomo-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fomo-card ul {
    list-style: none;
}

.fomo-card ul li {
    padding: 10px 0;
    font-size: 17px;
    padding-left: 30px;
    position: relative;
}

.fomo-card.gain ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 900;
    font-size: 20px;
}

.fomo-card.loss ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 900;
    font-size: 20px;
}

/* Warning Section */
.warning {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(244, 157, 25, 0.08) 0%, rgba(254, 183, 7, 0.08) 100%);
}

.warning-box {
    background: var(--dark);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    border-left: 8px solid var(--orange-primary);
}

.warning h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--yellow);
}

.warning p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.warning strong {
    color: var(--orange-secondary);
}

/* PS Section */
.ps-section {
    padding: 60px 20px;
    background: var(--white);
}

.ps-box {
    border: 3px solid var(--orange-primary);
    padding: 40px;
    border-radius: 15px;
}

.ps-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.ps-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ps-box strong {
    color: var(--orange-primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

footer p {
    opacity: 0.7;
    font-size: 14px;
}

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

    .hero .subtitle {
        font-size: 22px;
    }

    .hero p {
        font-size: 18px;
    }

    .problem h2, .solution h2, .benefits h2, .author h2, .pricing h2, .fomo h2 {
        font-size: 32px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .fomo-grid {
        grid-template-columns: 1fr;
    }

    .new-price {
        font-size: 56px;
    }

    .cta-button {
        padding: 20px 40px;
        font-size: 20px;
    }

    .value-stack, .author-box, .pricing-box, .guarantee-box, .warning-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .price {
        font-size: 48px;
    }
}
