/* ===== ZMIENNE KOLORÓW ===== */
:root {
    --primary-color: #6B3FB0;
    --secondary-color: #8B5CF6;
    --accent-green: #4ADE80;
    --dark-bg: #1a1626;
    --card-bg: rgba(107, 63, 176, 0.1);
    --text-light: #e0e0e0;
    --text-white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1626 0%, #2d1b4e 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== SEKCJE SPACING ===== */
.packages,
.how-it-works,
.features,
.faq {
    padding: 120px 0;
    width: 100%;
}

/* ===== SEKCJE - RÓŻNE KOLORY ===== */
.packages {
    background-color: #1a1626;
}

.how-it-works {
    background-color: #16131f;
}

.features {
    background-color: #1a1626;
}

.faq {
    background-color: #16131f;
}

/* ===== HEADER ===== */
header {
    background: rgba(26, 22, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 63, 176, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #22c55e;
    transform: translateY(-2px);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 20%;
    background: linear-gradient(135deg, rgba(26, 22, 38, 0.7) 0%, rgba(26, 22, 38, 0.5) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0;
    position: relative;
    min-height: 600px;
    width: 100%;
    background-color: #0f0b1a;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 63, 176, 0.4) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(107, 63, 176, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-item::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dark-bg);
    font-weight: bold;
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 2202 / 1013;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}


.hero-image-placeholder img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ===== PACKAGE CONTENT (bez opacity) ===== */
.package-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== PACKAGE CARDS IMAGE OVERLAY ===== */
.package-image-overlay {
    display: none;
}


.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-badge {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-badge::before {
    content: '⭐';
    margin-right: 10px;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* ===== PACKAGE CARD - FULL BACKGROUND ===== */
.package-card {
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 22, 38, 0.6) 0%, rgba(26, 22, 38, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
}

.package-card:nth-child(1) {
    background-image: url('images/pakiet-maly.png');
}

.package-card:nth-child(2) {
    background-image: url('images/pakiet-sredni.png');
}

.package-card:nth-child(3) {
    background-image: url('images/pakiet-duzy.png');
}



.package-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.15);
}

.package-card.featured {
    border: 2px solid var(--accent-green);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.2);
}

.package-card.featured .badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--accent-green);
    color: var(--dark-bg);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.package-name {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.package-model {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.package-desc {
    display: none;
}

.package-users {
    display: none;
}

.package-price {
    font-size: 24px;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.package-price-period {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.package-price-period::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-green) 10%, var(--accent-green) 90%, transparent 100%);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex: 1;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 10px;
}

.package-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 63, 176, 0.3);
    background: transparent;
    color: var(--text-white);
    cursor: pointer;
}

.package-card.featured .package-btn {
    background: var(--accent-green);
    color: var(--dark-bg);
    border-color: var(--accent-green);
}

.package-btn:hover {
    background: var(--accent-green);
    color: var(--dark-bg);
    border-color: var(--accent-green);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 0;
    border-top: 1px solid rgba(107, 63, 176, 0.2);
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    color: var(--accent-green);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-green) 10%, var(--accent-green) 90%, transparent 100%);
    z-index: 1;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.step {
    position: relative;
    z-index: 5;
    text-align: center;
}

.step-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    background: linear-gradient(135deg, #1a1626 0%, #2d1b4e 100%);
    font-weight: bold;
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3), inset 0 0 20px rgba(74, 222, 128, 0.1);
    position: relative;
    z-index: 5;
}

.step-number {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.step-title {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.cta-section {
    background: rgba(107, 63, 176, 0.2);
    border-radius: 16px;
    padding: 80px 60px;
    text-align: center;
    margin-top: 100px;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.trial-info {
    color: var(--accent-green);
    font-size: 14px;
    margin-top: 20px;
}

/* ===== CTA DEMO SECTION ===== */
.cta-demo-section {
    background: rgba(107, 63, 176, 0.15);
    padding: 80px 0;
    text-align: center;
}

.cta-demo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-demo-content h2 {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 10px;
    max-width: 700px;
    line-height: 1.3;
}

.cta-demo-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cta-demo-content .btn {
    margin-top: 10px;
}

/* ===== FEATURES SECTION ===== */
.features {
}

.features-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
}

.features-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(107, 63, 176, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 22, 38, 0.85) 0%, rgba(26, 22, 38, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    border-color: var(--accent-green);
    background: rgba(107, 63, 176, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.benefit-note {
    text-align: center;
    color: var(--accent-green);
    font-size: 14px;
    margin-bottom: 40px;
}

/* ===== FAQ SECTION ===== */
.faq {
}

.faq-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background: rgba(107, 63, 176, 0.1);
}

.faq-icon {
    color: var(--accent-green);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
    background-color: #0f0b1a;
    border-top: 1px solid rgba(107, 63, 176, 0.2);
    padding: 60px 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 50%;
    margin-bottom: 0;
}

.social-links a:hover {
    border-color: var(--accent-green);
    background: rgba(107, 63, 176, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(107, 63, 176, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
    margin-bottom: 0;
    display: inline;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
        gap: 40px;
        width: 100%;
        margin: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image-placeholder {
        background-attachment: scroll;
    }

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

    .package-card.featured {
        transform: scale(1);
        border: 2px solid var(--accent-green);
    }

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

    .steps::before {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        display: none;
    }
}

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== CONSENT MODE POPUP ===== */
.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7000;
    backdrop-filter: blur(5px);
}

.consent-overlay.consent-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.consent-modal {
    background: linear-gradient(135deg, #1a1626 0%, #2d1b4e 100%);
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
    animation: slideInCenter 0.3s ease-out;
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.consent-modal h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.consent-modal p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.consent-modal .consent-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.consent-modal button {
    padding: 14px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.consent-modal .btn-accept {
    background: var(--accent-green);
    color: var(--dark-bg);
}

.consent-modal .btn-accept:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.consent-modal .btn-decline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(107, 63, 176, 0.3);
}

.consent-modal .btn-decline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(107, 63, 176, 0.2);
}



/* ===== INQUIRY FORM POPUP ===== */
.inquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    backdrop-filter: blur(5px);
}

.inquiry-popup-overlay.show {
    display: flex;
}

.inquiry-popup-modal {
    background: linear-gradient(135deg, #1a1626 0%, #2d1b4e 100%);
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: slideInCenter 0.3s ease-out;
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.inquiry-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.inquiry-close-btn:hover {
    opacity: 1;
}

.inquiry-popup-modal h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 10px;
    margin-top: 0;
}

.inquiry-popup-modal p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="number"] {
    padding: 12px 16px;
    border: 1px solid rgba(107, 63, 176, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-green);
}

/* NEW: Measurement buttons - horizontal layout */
.measurement-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.measurement-btn {
    flex: 1;
    position: relative;
}

.measurement-btn input[type="radio"] {
    display: none;
}

.measurement-btn span {
    display: block;
    padding: 12px 16px;
    border: 2px solid rgba(107, 63, 176, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.measurement-btn input[type="radio"]:checked + span {
    background: var(--accent-green);
    color: var(--dark-bg);
    border-color: var(--accent-green);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
    font-weight: 600;
}

.measurement-btn span:hover {
    border-color: var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.result-group {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.result-display {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
    text-align: center;
}

.inquiry-submit-btn {
    padding: 14px 40px;
    background: var(--accent-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.inquiry-submit-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.inquiry-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.inquiry-success {
    text-align: center;
    padding: 40px 0;
}

.inquiry-success h2 {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.inquiry-success p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.inquiry-close-final-btn {
    padding: 12px 40px;
    background: var(--accent-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-close-final-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* Scrollbar styling dla popup */
.inquiry-popup-modal::-webkit-scrollbar {
    width: 8px;
}

.inquiry-popup-modal::-webkit-scrollbar-track {
    background: rgba(107, 63, 176, 0.1);
    border-radius: 10px;
}

.inquiry-popup-modal::-webkit-scrollbar-thumb {
    background: rgba(107, 63, 176, 0.3);
    border-radius: 10px;
}

.inquiry-popup-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 63, 176, 0.5);
}

/* ===== NOTIFICATION POPUP ===== */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.notification-content {
    background: linear-gradient(135deg, #1a1626 0%, #2d1b4e 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 4px solid var(--accent-green);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    min-width: 320px;
    max-width: 450px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-text h3 {
    margin: 0 0 4px 0;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
}

.notification-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--text-white);
}

/* Notification variants */
.notification-popup.success .notification-icon {
    background: rgba(34, 197, 94, 0.2);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.notification-popup.success {
    --accent-color: var(--accent-green);
}

.notification-popup.error .notification-content {
    border-left-color: #ef4444;
}

.notification-popup.error .notification-icon {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.notification-popup.warning .notification-content {
    border-left-color: #f59e0b;
}

.notification-popup.warning .notification-icon {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    color: #f59e0b;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .notification-popup {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-content {
        min-width: auto;
        max-width: none;
    }
}
