/* ==========================================================================
   WYNAJEM NAMIOTÓW - CUSTOM STYLES (CUSTOMER JOURNEY)
   ========================================================================== */

/* 1. HERO */
.namiot-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 640px;
    padding: 160px 0 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.namiot-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.namiot-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.namiot-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.namiot-hero-accent {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    color: var(--color-accent);
    margin-top: 10px;
    text-transform: none;
}

.namiot-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* 2. AWARENESS (PROBLEM/DESIRE) */
.namiot-awareness {
    background-color: var(--color-light);
    text-align: center;
}

.namiot-awareness-title {
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.namiot-awareness-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* 3. CONSIDERATION (FEATURES) */
.namiot-features {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(110, 142, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin: 0 auto 20px;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* 4. DECISION (EXPERIENCE TIMELINE) */
.namiot-experience {
    background-color: #1A1A1A;
    color: #fff;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.experience-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 40px;
}

.experience-card:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-image {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 4px solid var(--color-accent);
}

.experience-content {
    padding: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .experience-card, .experience-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}

.experience-time {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.experience-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.experience-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

/* 5. SOCIAL PROOF */
.namiot-proof {
    background-color: var(--color-accent);
    color: #fff;
    text-align: center;
}

.proof-quote {
    font-size: clamp(24px, 4vw, 36px);
    font-family: 'Oswald', sans-serif;
    line-height: 1.4;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
}

.proof-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
}

/* 6. PRICING & INCLUDES */
.namiot-pricing {
    background-color: #fff;
}

.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.pricing-includes {
    flex: 1;
    min-width: 300px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--color-dark);
}

.includes-list li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--color-light);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
}

.pricing-price {
    font-size: 64px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-period {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.pricing-card .btn {
    border: 1px solid var(--color-dark);
}

.pricing-card .btn:hover {
    background: var(--color-dark);
    color: #fff;
}

.pricing-addons {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

/* 7. FAQ */
.namiot-faq {
    background-color: var(--color-light);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    min-height: 420px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--color-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 11px; left: 4px; width: 16px; height: 2px;
}

.faq-icon::after {
    top: 4px; left: 11px; width: 2px; height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

/* 8. CTA */
.namiot-cta {
    position: relative;
    background-color: #1A1A1A;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.namiot-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

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

.namiot-cta-title {
    font-size: 48px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.namiot-cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
