/* ==============================================
   SOPA - System Operacyjny Prawa Autorskiego
   Główny arkusz stylów
   ============================================== */

/* === ZMIENNE CSS === */
:root {
    --primary: #009c4f;
    --primary-dark: #007a3d;
    --primary-light: #00c261;
    --primary-text: #006835;  /* NOWE - ciemniejszy dla lepszego kontrastu tekstu */
    --black: #000000;
    --gray-dark: #404041;
    --gray: #6B6B6B;
    --gray-light: #E5E5E5;
    --gray-lighter: #F5F5F5;
    --white: #FFFFFF;
    --orange-dark: #b45309;  /* NOWE - ciemniejszy pomarańczowy dla badge */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--primary-text);
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary-text);
}

.nav-cta {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0.75rem;
    letter-spacing: -0.01em;
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0, 156, 79, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    background: #006030;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* === KONTENERY === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TYPOGRAFIA === */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

strong {
    font-weight: 600;
    color: var(--black);
}

/* === PRZYCISKI === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary-dark);  /* #007a3d zamiast #009c4f - kontrast 5.3:1 */
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0, 156, 79, 0.25);
}

.btn-primary:hover {
    background: #006030;  /* Jeszcze ciemniejszy - kontrast 7.5:1 */
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.35);
}

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

.btn-secondary {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--gray-dark);
    border: 2px solid var(--gray-light);
    box-shadow: none;
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--gray-lighter);
    border-color: var(--gray);
    transform: translateY(-1px);
    box-shadow: none;
}

/* === HERO SECTION === */
.hero {
    min-height: auto;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-lighter) 100%);
    padding: 7rem 0 1.5rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7.5rem;
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-visual {
    position: relative;
    height: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
    width: 280px;
    height: 280px;
    background: rgba(0, 156, 79, 0.08);
    top: -5%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 240px;
    height: 240px;
    background: rgba(0, 156, 79, 0.12);
    top: 25%;
    right: -8%;
    animation-delay: 1s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.04);
    bottom: -10%;
    left: 8%;
    animation-delay: 2s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: rgba(0, 156, 79, 0.06);
    bottom: 15%;
    right: 25%;
    animation-delay: 1.5s;
}

.hero-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: float-icon 6s ease-in-out infinite;
    z-index: 10;
}

.hero-icon svg {
    width: 32px;
    height: 32px;
}

.icon-1 {
    top: 8%;
    right: 18%;
    animation-delay: 0.5s;
}

.icon-2 {
    top: 42%;
    right: 3%;
    animation-delay: 1.2s;
}

.icon-3 {
    bottom: 12%;
    right: 32%;
    animation-delay: 0.8s;
}

.icon-4 {
    top: 55%;
    left: 8%;
    animation-delay: 1.8s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 156, 79, 0.1);
    color: var(--primary-text);
    padding: 0.65rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pain-list {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
    display: grid;
    gap: 0.4rem;
}

.pain-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1.05rem;
}

.pain-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: 700;
}

/* === BONUS CARD === */
.bonus-card {
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 156, 79, 0.2);
    transition: all 0.3s ease;
    animation: pulse-glow 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.bonus-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.bonus-counter {
    margin: 0.75rem 0;
}

.counter-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-text);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.bonus-features {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    text-align: left;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.feature-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

/* === SEKCJE === */
section {
    padding: 7rem 0;
    position: relative;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark strong {
    color: var(--white);
}

.section-light {
    background: var(--gray-lighter);
}

/* === CONTENT BLOCKS === */
.content-block {
    margin: 3rem 0;
}

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

.module-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    contain: layout style;
}

.module-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-text);
}

.module-card h4 {
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.checkmark-list {
    list-style: none;
    margin: 2rem 0;
}

.checkmark-list li {
    padding: 0.85rem 0 0.85rem 2.25rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray-dark);
}

.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: 700;
    font-size: 1.35rem;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.25rem;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95);
    contain: layout style;
}

.pricing-card.visible {
    opacity: 1;
    transform: scale(1);
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-text);
}

.pricing-card.featured {
    border-color: var(--primary-text);
    border-width: 3px;
    box-shadow: 0 24px 64px rgba(0, 156, 79, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-text);
    margin: 1.5rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-price small {
    font-size: 1.75rem;
    color: var(--gray);
}

.pricing-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-cta {
    margin-top: auto;
}

/* === TESTIMONIALS === */
.testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.25rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-text);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

/* === FAQ === */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-text);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--black);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-text);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--primary-text);
}

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

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

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer-content p {
    font-size: inherit;
    margin-bottom: 1rem;
}

.faq-answer-content ul,
.faq-answer-content li {
    font-size: inherit;
}

/* === AUTHOR SECTION === */
.author-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.author-photo {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 2rem 0;
    border-radius: 2px;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* === INVESTMENT FRAME === */
.investment-frame {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 0;
}

.investment-quote {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border-left: 6px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.12);
    margin-bottom: 2rem;
}

.investment-quote-text {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.investment-quote-author {
    font-weight: 600;
    color: var(--primary-text);
    font-size: 1.1rem;
}

.roi-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.12);
}

.roi-calculation {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.roi-calculation strong {
    color: var(--primary-text);
    font-size: 1.4rem;
}

/* === PACKAGE DEEP DIVE === */
.package-deepdive {
    margin-top: 4rem;
}

.deepdive-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.deepdive-item:hover {
    border-color: var(--primary-text);
}

.deepdive-item.active {
    border-color: var(--primary-text);
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.15);
}

.deepdive-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s;
}

.deepdive-header:hover {
    background: var(--gray-lighter);
}

.deepdive-item.active .deepdive-header {
    background: #f0fdf4;
}

.deepdive-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deepdive-title h3 {
    margin: 0;
    font-size: 1.75rem;
}

.deepdive-badge {
    font-size: 1.75rem;
}

.deepdive-toggle {
    font-size: 2rem;
    color: var(--primary-text);
    transition: transform 0.3s;
}

.deepdive-item.active .deepdive-toggle {
    transform: rotate(45deg);
}

.deepdive-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.deepdive-content-inner {
    padding: 2rem 2rem 2rem 2rem;
}

.deepdive-section {
    margin-bottom: 2.5rem;
}

.deepdive-section:last-child {
    margin-bottom: 0;
}

.deepdive-section h4 {
    color: var(--primary-text);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
}

.deepdive-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.deepdive-section p:last-child {
    margin-bottom: 0;
}

.deepdive-list {
    list-style: none;
    padding-left: 0;
}

.deepdive-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.deepdive-list li:last-child {
    border-bottom: none;
}

.deepdive-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.testimonial-box {
    background: var(--gray-lighter);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-text);
    font-style: normal;
}

/* === GRUPA ZAŁOŻYCIELSKA === */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem -4rem;
}

.testimonial-founder {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #F59E0B;
    position: relative;
}

.founder-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #D97706;
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.founder-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-header h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--black);
}

.founder-header a {
    font-size: 0.85rem;
    color: #B45309;
    text-decoration: none;
    font-weight: 500;
}

.founder-header a:hover {
    text-decoration: underline;
}

.founder-quote {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-founder details {
    margin-top: 1rem;
}

.testimonial-founder summary {
    cursor: pointer;
    font-weight: 600;
    color: #B45309;
    font-size: 0.95rem;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-founder summary::-webkit-details-marker {
    display: none;
}

.testimonial-founder summary::before {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.testimonial-founder details[open] summary::before {
    transform: rotate(180deg);
}

.founder-full {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(180, 83, 9, 0.2);
}

.founder-full p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

/* === OPINIE PRODUKTOWE === */
.product-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem -4rem;
}

.product-testimonial {
    background: linear-gradient(to bottom, #f0fdf4 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #d1fae5;
    display: flex;
    flex-direction: column;
}

.product-testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-testimonial-header img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.product-testimonial-header h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--black);
}

.product-testimonial-header .role {
    font-size: 0.9rem;
    color: var(--primary-text);
    font-weight: 500;
}

.product-testimonial-quote {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.product-testimonial details {
    margin-top: auto;
}

.product-testimonial summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-text);
    font-size: 0.9rem;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-testimonial summary::-webkit-details-marker {
    display: none;
}

.product-testimonial summary::before {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.product-testimonial details[open] summary::before {
    transform: rotate(180deg);
}

.product-testimonial-full {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 156, 79, 0.2);
}

.product-testimonial-full p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
    text-align: left;
}

/* === TIMELINE === */
.timeline-dot {
    cursor: pointer;
    text-align: center;
}

.timeline-dot:hover > div {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 156, 79, 0.4) !important;
}

.timeline-dot-peak > div {
    animation: pulse 2s ease-in-out infinite;
    will-change: transform;
}

/* === CHAT ASSISTANT === */
.chat-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 156, 79, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

.chat-trigger:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 156, 79, 0.4);
}

.chat-trigger-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.chat-trigger-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chat-trigger-text strong {
    font-size: 1rem;
    color: var(--black);
}

.chat-trigger-text span {
    font-size: 0.85rem;
    color: var(--gray);
}

.chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
}

.chat-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-fullscreen {
    background: var(--white);
    width: 95%;
    max-width: 900px;
    height: 90vh;
    max-height: 750px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header-full {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-full h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.chat-restart-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-restart-btn:hover {
    background: var(--gray-lighter);
    color: var(--primary-text);
    transform: rotate(180deg);
}

.chat-close-full {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    font-weight: 500;
}

.chat-close-full:hover {
    background: var(--gray-lighter);
    color: var(--black);
}

.chat-body-full {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-body-full::-webkit-scrollbar {
    width: 8px;
}

.chat-body-full::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 4px;
}

.chat-input-area {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-message {
    display: flex;
    gap: 1rem;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-light);
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    background: var(--gray-lighter);
    padding: 1rem 1.25rem;
    border-radius: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
}

.chat-message.user .message-bubble {
    background: var(--primary-dark);
    color: var(--white);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-option-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-option-btn:hover {
    border-color: var(--primary-text);
    background: #f0fdf4;
}

.chat-option-btn.selected {
    border-color: var(--primary-text);
    background: #f0fdf4;
}

.option-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-option-btn.selected .option-check {
    background: var(--primary-dark);
    border-color: var(--primary-text);
}

.chat-option-btn.selected .option-check::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.chat-submit-btn {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.chat-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        align-items: start;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-visual {
        height: auto;
        overflow: visible;
    }

    .hero-shape {
        transform: scale(0.7);
    }

    .hero-icon {
        width: 80px;
        height: 80px;
    }

    .hero-icon svg {
        width: 40px;
        height: 40px;
    }

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

    .founder-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-testimonial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-cta {
        margin-top: 0.5rem;
    }

    /* Naprawienie problemu z Early Bird - upewnienie że sekcje nie zachodzą na siebie */
    section {
        position: relative;
        z-index: auto;
        overflow: visible;
    }
    
    /* Większy odstęp dla gridu z kartami na mobile */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        padding-bottom: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Zapewnienie że kontenery nie ukrywają zawartości */
    .container {
        overflow: visible !important;
    }
    
    /* Zwiększenie odstępu przed szarą sekcją */
    div[style*="background: var(--gray-lighter)"] {
        margin-top: 6rem !important;
    }

    .container,
    .container-narrow,
    .container-wide,
    .hero-container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
        overflow: visible;
    }

    .hero-visual {
        height: auto;
        overflow: visible;
    }
    
    .bonus-card {
        max-height: none !important;
        overflow: visible !important;
    }

    .hero-shape {
        transform: scale(0.5);
    }

    .hero-icon {
        width: 65px;
        height: 65px;
    }

    .hero-icon svg {
        width: 32px;
        height: 32px;
    }

    .pricing-grid,
    .module-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .investment-frame {
        padding: 3rem 0;
    }

    .investment-quote,
    .roi-box {
        padding: 1.5rem;
    }

    .investment-quote-text {
        font-size: 1.15rem;
    }

    .deepdive-header {
        padding: 1.5rem;
    }

    .deepdive-title h3 {
        font-size: 1.35rem;
    }

    .deepdive-content-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .founder-grid {
        grid-template-columns: 1fr !important;
    }

    .product-testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    .timeline-dot {
        font-size: 0.7rem !important;
    }
    
    .timeline-dot > div {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
    
    .timeline-dot-peak > div {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
}
