:root {
    /* Paleta kolorów z Twojego Webinar Landing Page */
    --primary: #00c2ff;       /* Cyan Buttons */
    --primary-hover: #009ace;
    --secondary: #6366f1;     /* Indigo for gradients */
    --hero-bg: #2b1c8e;       /* Dark Purple/Blue for Hero & Footer */
    --text-dark: #111111;
    --text-grey: #555555;
    --bg-light: #f8f9fa;      /* Light Grey Sections */
    --success: #25d366;       /* Green Checkmarks */
    --white: #ffffff;
    
    --container-width: 1100px;
    --radius: 8px;            /* Slightly sharper than previous design */
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; color: var(--white); }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; color: var(--text-dark); }
h3 { font-size: 1.5rem; color: var(--hero-bg); }

.highlight {
    color: var(--primary);
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 4px; /* More rectangular as per webinar style */
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--hero-bg);
    color: var(--hero-bg);
    padding: 13px 38px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--hero-bg);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}
.logo span { color: var(--primary); }

.nav-links a {
    margin-left: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.nav-links .btn-nav {
    background: var(--hero-bg);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}
.nav-links .btn-nav:hover {
    background: #1a1159;
    color: white;
}

/* Hero Section */
.hero {
    margin-top: 70px; /* Offset for fixed navbar */
    /* Gradient overlay matching webinar code + placeholder image fallback */
    background: linear-gradient(rgba(43, 28, 142, 0.9), rgba(43, 28, 142, 0.9));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-proof-badge i {
    color: var(--success);
}

.social-proof-badge strong {
    color: var(--success);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.stat-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Hero Countdown */
.hero-countdown {
    margin: 2rem 0;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.c-box {
    background: rgba(30, 20, 80, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    min-width: 85px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.c-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.c-box small {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
}

/* Section Common */
section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

/* Trust Bar */
.trust-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #eee;
}

.social-proof-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-grey);
    font-weight: 500;
}

.trust-bar p { text-align: center; color: var(--text-grey); margin-bottom: 20px; font-size: 0.9rem; }
.logos-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.2rem;
    color: #888;
}

/* Features */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--hero-bg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.feature-card p { color: var(--text-grey); font-size: 0.95rem; }

/* For Whom Section */
.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .for-whom-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.for-whom-card {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid;
}

.for-whom-card.yes {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.3);
}

.for-whom-card.no {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.for-whom-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.for-whom-card .card-header i {
    font-size: 1.5rem;
}

.for-whom-card.yes .card-header i {
    color: var(--success);
}

.for-whom-card.no .card-header i {
    color: #ef4444;
}

.for-whom-card .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.for-whom-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.for-whom-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-grey);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.for-whom-card ul li:last-child {
    border-bottom: none;
}

.for-whom-card.yes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.for-whom-card.no ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

@media (max-width: 768px) {
    .for-whom-grid {
        grid-template-columns: 1fr;
    }
}

/* Author */
.author-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.author-img-wrapper {
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.author-img-wrapper img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.linkedin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background: transparent;
    border: 2px solid #0A66C2;
    color: #0A66C2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: white;
}

.linkedin-btn i {
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-info h4 { color: var(--primary); text-transform: uppercase; margin-bottom: 5px; font-size: 1rem; }
.author-info h2 { text-align: left; margin-bottom: 1rem; }
.bio { color: var(--text-grey); margin-bottom: 1rem; line-height: 1.7; }
.bio strong { color: var(--text-dark); }

.author-achievements {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.author-achievements li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}
.author-achievements li:last-child { margin-bottom: 0; }
.author-achievements li i { color: var(--success); margin-right: 10px; flex-shrink: 0; }

/* Trainer Logos Section */
.trainer-logos {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.logos-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-logos-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.company-logos-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.company-logo-img {
    max-height: 100px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* Hide duplicated logos on desktop */
.company-logo-img.duplicate {
    display: none;
}

.company-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Marquee animation keyframes */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Curriculum */
.module-list { max-width: 800px; margin: 0 auto; }

.module-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-grey);
    font-size: 1.05rem;
}

.module-item {
    background: var(--white);
    border: 1px solid #eee;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    /* Changed from flex to block to allow content below header */
    display: block; 
    transition: 0.3s;
}
.module-item:hover { border-color: var(--primary); }

.module-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.module-number {
    background: rgba(43, 28, 142, 0.1);
    color: var(--hero-bg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0; /* Prevent shrinking */
}
.module-header h3 { margin: 0; font-size: 1.1rem; color: var(--text-dark); }

.module-content {
    margin-top: 1rem;
    padding-left: calc(40px + 1.5rem); /* Align with text start */
    color: var(--text-grey);
    font-size: 0.95rem;
}

.module-content p { margin-bottom: 0.5rem; font-weight: 500; color: var(--text-dark); }
.module-content ul { list-style: disc; padding-left: 1.2rem; }
.module-content li { margin-bottom: 0.3rem; }

.module-output {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 194, 255, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.module-output strong {
    color: var(--primary);
}


/* Testimonials (Carousel) */
.testimonials { background: var(--hero-bg); color: var(--white); position: relative; }
.testimonials h2 { color: var(--white); }
.testimonials-intro {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px; /* Space for arrows */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: calc(50% - 1rem); /* 2 items visible (subtract gap) */
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars { color: #ffd700; margin-bottom: 1rem; font-size: 1.2rem; }
.review-card p { font-style: italic; opacity: 0.9; margin-bottom: 1.5rem; }
.reviewer { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: 0.3s;
}
.carousel-btn:hover { background: var(--primary); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background: var(--primary); transform: scale(1.2); }

/* Benefits Section */
.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto 3rem;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

/* CTA buttons in pricing */
.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    padding: 18px 40px;
    font-size: 1.15rem;
}
.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Pricing Specifics */
.price-container {
    margin: 1.5rem 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-bg);
    line-height: 1;
}

.new-price small {
    font-size: 1rem;
    font-weight: 400;
}

/* Pricing Timer */
.pricing-timer {
    background: #f0f4ff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #dbeafe;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--hero-bg);
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.t-box {
    background: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 50px;
    border: 1px solid #eee;
}

.t-box span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    line-height: 1;
}

.t-box small {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-grey);
}

.pricing-sub {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 3rem; /* Align cards */
}

/* Contact Info in Pricing */
.contact-box {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.contact-box p { margin-bottom: 8px; color: var(--text-dark); font-weight: 500; }
.contact-box p:first-child {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
}
.contact-box a { color: var(--primary); font-weight: 700; }

.features-list { text-align: left; margin-bottom: 2rem; flex-grow: 1; }
.features-list li {
    padding: 10px 0; /* Revert to top/bottom padding only */
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-grey);
    line-height: 1.5;
    /* Removed border-radius from generic items */
}
.features-list i { 
    color: var(--success); 
    margin-top: 4px;
    flex-shrink: 0;
}

/* Highlighted Feature in Pricing */
.highlight-item {
    /* Negative margin pulls the box outwards, padding pushes content back to alignment */
    margin: 10px -15px; 
    padding: 15px 15px !important; 
    background: rgba(0, 194, 255, 0.06); 
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 6px;
    color: var(--text-dark) !important;
    border-bottom: 1px solid rgba(0, 194, 255, 0.3) !important; /* Override standard gray border */
}
.highlight-item i {
    color: var(--primary); 
}

/* Webinar Section */
.webinar-section {
    background: var(--hero-bg);
    color: var(--white);
}

.webinar-section h2 {
    color: var(--white);
}

.webinar-intro {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 2.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

.webinar-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.webinar-cta {
    text-align: center;
    margin-top: 2rem;
}

.webinar-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Guarantee Banner */
.guarantee-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(0, 194, 255, 0.08) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guarantee-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.guarantee-content p {
    color: var(--text-grey);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Lead Magnet */
.lead-magnet { background: var(--white); border-top: 1px solid #eee; }
.magnet-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}
.magnet-text {
    flex: 1;
    min-width: 0;
}
.magnet-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.magnet-text p {
    margin: 0;
    color: var(--text-grey);
}
.magnet-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.magnet-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 280px;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.section-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-cta .btn-primary {
    display: inline-block;
}

/* PS Section */
.ps-section {
    background: var(--bg-light);
    padding: 2.5rem 0;
    border-top: 1px solid #eee;
}

.ps-section p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
}

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

.ps-section a {
    color: var(--primary);
    font-weight: 500;
}

.ps-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer { background: var(--hero-bg); color: var(--white); padding: 50px 0; text-align: center; }
.footer-links a { margin: 0 15px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }
.copyright { margin-top: 30px; color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero-content { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }

    /* Social Proof Mobile */
    .social-proof-stat {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    .stat-content {
        text-align: center;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    .stat-icon i {
        font-size: 1.25rem;
    }
    .logos-grid {
        gap: 2rem;
    }

    /* Company Logos Marquee Mobile */
    .company-logos-wrapper {
        max-width: 100% !important;
        padding: 0 !important;
        overflow: hidden !important;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .company-logos-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 2.5rem !important;
        width: max-content !important;
        animation: scroll-logos 10s linear infinite !important;
    }
    .company-logo-img.duplicate {
        display: inline-block !important;
    }
    .company-logos-grid .company-logo-img {
        max-height: 55px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        transition: none !important;
    }

    /* Hero Countdown Mobile */
    .countdown-boxes {
        gap: 0.5rem;
    }
    .c-box {
        padding: 0.75rem 1rem;
        min-width: 65px;
        border-radius: 10px;
    }
    .c-box span {
        font-size: 1.75rem;
    }
    .c-box small {
        font-size: 0.65rem;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    .author-layout, .pricing-wrapper, .magnet-content, .reviews-grid { grid-template-columns: 1fr; flex-direction: column; }
    .magnet-content { text-align: center; gap: 1.5rem; }
    .magnet-text h3 { font-size: 1.25rem; }
    .magnet-form { flex-direction: column; width: 100%; }
    .magnet-form input { width: 100%; }
    .pricing-card.popular { transform: none; }

    /* Author Section Mobile */
    .author-layout {
        text-align: center;
        align-items: center;
    }
    .author-img-wrapper {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .author-img-wrapper img {
        width: 250px;
        height: 250px;
        margin: 0 auto 1rem;
    }
    .linkedin-btn {
        margin-bottom: 1.5rem;
    }
    .author-info h2 { text-align: center; }
    .author-achievements {
        text-align: left;
    }

    /* Carousel Responsive */
    .review-card { min-width: 100%; flex: 0 0 100%; }
    .carousel-container { padding: 0; } /* Remove side padding on mobile */
    .carousel-btn { display: none; } /* Hide arrows on mobile, use dots/swipe */
}