/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --primary-color: #FFB800; /* Let's be free yellow */
    --primary-hover: #E5A500;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-color: #FAF8F5; /* Warmer cream background */
    --white: #FFFFFF;
    --black: #000000;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.5);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: padding var(--transition-speed) ease;
}

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

.logo img {
    height: 40px;
    object-fit: contain;
}

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

.nav-links a {
    font-weight: 600;
    color: var(--text-light);
    transition: color var(--transition-speed);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all var(--transition-speed);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    padding-top: 120px;
    padding-bottom: 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px;
    gap: 0.5rem;
}

.hero-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.hero-badge-top {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
    background-color: var(--white);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-date-info {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 50%);
    font-size: clamp(0.7rem, 3vw, 1rem);
    font-weight: 700;
    color: var(--text-dark);
    background-color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    white-space: nowrap;
    z-index: 2;
}

.hero-header h1 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: -2%;
    bottom: 8%;
    width: 104%;
    height: 35%;
    background-color: var(--primary-color);
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    color: var(--text-light);
    margin: 0 auto;
    max-width: 750px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0.5rem auto 2.5rem;
}

.hero-miro-img,
.hero-video-element {
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
    display: block;
}

.hero-video-iframe-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
    overflow: hidden;
}

.hero-video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Removed hero-date-badge */

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-orange {
    background: linear-gradient(180deg, #F38C56 0%, #E06C34 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(224, 108, 52, 0.4);
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.btn-orange:hover {
    background: linear-gradient(180deg, #F59A6A 0%, #E57A47 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(224, 108, 52, 0.5);
    color: var(--white);
}

.btn-massive {
    padding: 1.1rem 2.8rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-guarantee {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.scroll-down-icon {
    display: inline-block;
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* =========================================
   TIMELINE SECTION
========================================= */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--text-dark);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-left: 2px dashed rgba(255, 184, 0, 0.5);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    width: 100%;
}

.timeline-badge {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 800;
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 2rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.timeline-card {
    background-color: #2A2A2A; 
    width: 100%;
    padding: 2rem 2rem 2rem 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.timeline-icon {
    font-size: 2.5rem;
    background: #1A1A1A;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #BBBBBB;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   TARGET AUDIENCE (DLA KOGO)
========================================= */
.target-audience {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.audience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.audience-header h2.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.audience-header .section-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audience-card::after {
    content: attr(data-number);
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 184, 0, 0.03);
    z-index: -1;
    line-height: 1;
    transition: color var(--transition-speed);
}

.audience-card:hover::after {
    color: rgba(255, 184, 0, 0.08);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #FF8C00);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 184, 0, 0.15);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: rotate(0) scale(1.1);
}

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.audience-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.audience-card strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* =========================================
   BONUS SECTION
========================================= */
.bonuses {
    padding: 6rem 0;
    background-color: #FDF9F1;
}

.bonuses h2.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 5rem;
    line-height: 1.2;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.bonus-item:last-child {
    margin-bottom: 0;
}

.bonus-item.reverse {
    flex-direction: row-reverse;
}

.bonus-content {
    flex: 1;
}

.bonus-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pink {
    background-color: #FF007F;
}

.badge-blue {
    background-color: #3B82F6;
}

.bonus-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonus-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.bonus-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed);
}

.bonus-image:hover img {
    transform: translateY(-5px);
}

/* --- SOCIAL PROOF STRIPE SECTION --- */
.social-proof-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.proof-header {
    margin-bottom: 50px;
}

.proof-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.proof-badge::before,
.proof-badge::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    vertical-align: middle;
    margin: 0 15px;
}

.proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: transform var(--transition-speed);
}

.proof-image-wrapper:hover {
    transform: translateY(-5px);
}

.stripe-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.proof-caption {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.proof-caption h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.proof-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}


@media (max-width: 992px) {
    .bonus-item,
    .bonus-item.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
}

/* =========================================
   BOTTOM CTA SECTION
========================================= */
.bottom-cta {
    background-color: var(--text-dark);
    background: radial-gradient(circle at center, #252525 0%, var(--text-dark) 100%);
    padding: 8rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, rgba(255, 184, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.bottom-cta .container {
    position: relative;
    z-index: 1;
}

.bottom-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.1;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 400;
}

.cta-subtitle .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-arrow {
    margin-bottom: 3rem;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.faq .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.faq .section-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0.5rem auto 3rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.2);
    transition: transform var(--transition-speed);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: transparent;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    transition: transform var(--transition-speed);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 3.5rem;
    background-color: transparent;
    color: var(--text-dark);
    text-align: left;
}

.faq-content p {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: #111;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: screen;
}

.footer-brand p {
    color: #888;
    max-width: 300px;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    color: #888;
    transition: color var(--transition-speed);
}

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

.footer-company p {
    color: #888;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.875rem;
}

/* =========================================
   POPUP MODAL
========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-lg);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    transition: color var(--transition-speed);
}

.close-popup:hover {
    color: var(--text-dark);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: rgba(255, 184, 0, 0.05); /* Assuming primary is around #ffb800 */
    letter-spacing: 1px;
}

.popup-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.popup-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #EAEAEA;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}

.form-checkboxes {
    margin: 1rem 0;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.checkbox-group input {
    margin-top: 3px;
    min-width: 18px;
    min-height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-footer-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    .hero-container {
        gap: 3rem;
    }

    .webinar-details {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .audience-card {
        padding: 2rem 1.5rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-card {
        flex-direction: column;
        text-align: left;
        padding: 2.5rem 1.5rem 1.5rem;
        align-items: flex-start;
    }
    
    .timeline-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-sm);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--transition-speed) ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }
    
    .footer-brand p {
        margin: 0;
    }

    .hero {
        padding-top: 60px;
    }
    
    .hero-container {
        gap: 0.5rem;
    }

    .hero-header {
        order: initial;
    }

    .hero-cta-wrapper {
        order: initial;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-visual {
        order: initial;
        width: 95%;
        margin: 1rem auto 2.5rem; /* Więcej oddechu nad i pod wideo! */
    }

    .hero-header h1 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .hero-badges-wrapper {
        margin-bottom: 0.8rem;
    }

    .hero-badge-top {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }

    .btn-massive {
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .popup-content {
        padding: 1.5rem;
        max-width: 92%;
        max-height: 85vh;
        overflow-y: auto;
    }

    .popup-header {
        margin-bottom: 1rem;
    }

    .popup-header h2 {
        font-size: 1.6rem;
    }

    .popup-header p {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        padding: 0.75rem;
    }
    
    .close-popup {
        top: 1rem;
        right: 1rem;
    }
}
