:root {
    --primary: #00c2ff;
    --primary-hover: #00a8e0;
    --secondary: #6366f1;
    --hero-bg: #0b0b14;
    --text-dark: #e8e8ef;
    --text-grey: #9ca3af;
    --bg-light: #111119;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(0, 194, 255, 0.3);
    --success: #22c55e;
    --white: #ffffff;
    --glow-cyan: rgba(0, 194, 255, 0.15);
    --glow-strong: rgba(0, 194, 255, 0.25);

    --container-width: 1100px;
    --radius: 8px;
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #0a0a12;
    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;
}

.highlight-yellow {
    color: #00c2ff;
}

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

h1 {
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; color: var(--white); }
h3 { font-size: 1.5rem; color: var(--primary); }

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

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

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

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

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

.btn-secondary:hover {
    background: var(--primary);
    color: #0a0a12;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    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(--white);
    text-decoration: none;
}
.logo span { color: var(--primary); }

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links .btn-nav {
    background: var(--primary);
    color: #0a0a12;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
}
.nav-links .btn-nav:hover {
    background: var(--primary-hover);
    color: #0a0a12;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #0b0b14 0%, #0d0d1a 50%, #0a0a12 100%);
    color: var(--white);
    padding: 50px 0 0;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: end;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    padding-bottom: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end;
}

.hero-image img {
    max-width: 100%;
    max-height: 950px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.badge {
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid rgba(0, 194, 255, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.badge i {
    font-size: 1rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    padding: 0.25rem;
}
.stat-item i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 36px;
    height: 36px;
    background: var(--glow-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.countdown-boxes {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
}

.c-box {
    background: rgba(0, 194, 255, 0.06);
    border: 1px solid rgba(0, 194, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* Hero CTA */
.cta-group {
    margin-top: 1.25rem;
}

.cta-group .btn-primary {
    padding: 16px 40px;
    font-size: 1.05rem;
}

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

/* Trust Bar */
.trust-bar {
    padding: 50px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 194, 255, 0.04);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.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;
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.3);
}

.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; }

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

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 40px rgba(0, 194, 255, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

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

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

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

.for-whom-card.yes {
    background: rgba(34, 197, 94, 0.04);
    border-color: rgba(34, 197, 94, 0.2);
}

.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 .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
}

/* Before/After Table */
.before-after {
    background: #0a0a12;
}

.before-after-table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ba-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.ba-before-header {
    background: rgba(239, 68, 68, 0.12);
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.ba-after-header {
    background: rgba(34, 197, 94, 0.12);
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    border-left: 1px solid var(--border-color);
}

.ba-col-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
}

.ba-col-header i {
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: #fff;
}

.ba-before-header i {
    background: #ef4444;
}

.ba-after-header i {
    background: var(--success);
}

.ba-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-color);
}

.ba-row:last-child .ba-cell {
    border-bottom: none;
}

.ba-cell {
    padding: 0.9rem 1.5rem 0.9rem 3rem;
    position: relative;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ba-cell.ba-before {
    background: rgba(239, 68, 68, 0.06);
}

.ba-cell.ba-after {
    background: rgba(34, 197, 94, 0.06);
    border-left: 1px solid var(--border-color);
}

.ba-cell {
    color: var(--text-dark);
}

.ba-cell.ba-before::before {
    content: "\2715";
    position: absolute;
    left: 1.25rem;
    color: #ef4444;
    font-weight: 700;
}

.ba-cell.ba-after::before {
    content: "\2713";
    position: absolute;
    left: 1.25rem;
    color: var(--success);
    font-weight: 700;
}

@media (max-width: 768px) {
    .ba-headers,
    .ba-row {
        grid-template-columns: 1fr;
    }
    .ba-after-header,
    .ba-cell.ba-after {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

/* Author */
.author {
    background: var(--bg-card);
}

.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 40px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.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: #4d9fdb;
    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(--white); }

.author-achievements {
    background: rgba(0, 194, 255, 0.04);
    border: 1px solid var(--border-color);
    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: 3rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.logos-header {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    margin-bottom: 2.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: 5rem;
    flex-wrap: wrap;
    align-items: center;
}

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

.company-logo-img.duplicate {
    display: none;
}

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

@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(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: block;
    transition: 0.3s;
}
.module-item:hover { border-color: var(--border-hover); }

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

.module-number {
    background: var(--glow-cyan);
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}
.module-header h3 { margin: 0; font-size: 1.1rem; color: var(--white); }

.module-content {
    margin-top: 1rem;
    padding-left: calc(40px + 1.5rem);
    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: var(--glow-cyan);
    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: linear-gradient(135deg, #0d0d1a 0%, #0b0b14 100%); color: var(--white); position: relative; }
.testimonials h2 { color: var(--white); }
.testimonials-intro {
    text-align: center;
    color: var(--text-grey);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

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

.review-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    min-width: calc(50% - 1rem);
    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.85; 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.05);
    color: white;
    border: 1px solid var(--border-color);
    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); border-color: var(--primary); color: #0a0a12; }
.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.15);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background: var(--primary); transform: scale(1.2); box-shadow: 0 0 10px rgba(0, 194, 255, 0.5); }

/* 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(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 194, 255, 0.1);
    border-color: var(--border-hover);
}

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

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    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 {
    background: #0a0a12;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 50px rgba(0, 194, 255, 0.15);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.price-container {
    margin: 1.5rem 0;
}

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

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

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

.pricing-sub {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.features-list { text-align: left; margin-bottom: 2rem; flex-grow: 1; }
.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-grey);
    line-height: 1.5;
}
.features-list i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
}

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

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

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

.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(34, 197, 94, 0.06) 0%, rgba(0, 194, 255, 0.06) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    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;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.guarantee-content h4 {
    color: var(--white);
    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;
}

.guarantee-content a {
    color: var(--primary);
}

@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(--bg-card); border-top: 1px solid var(--border-color); }
.magnet-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 194, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 15px;
}
.magnet-text {
    flex: 1;
    min-width: 280px;
}
.magnet-text h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}
.magnet-text p {
    margin: 0;
    color: var(--text-grey);
}
.magnet-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    max-width: 450px;
}

.form-group-row {
    display: flex;
    gap: 10px;
}

.form-group-row input {
    flex: 1;
}

.form-consent {
    font-size: 0.7rem;
    color: var(--text-grey);
    text-align: left;
    line-height: 1.4;
}

.form-consent label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
}

.form-consent input {
    margin-top: 3px;
    width: auto;
    flex-shrink: 0;
}

.form-consent a {
    color: var(--primary);
}

.magnet-form input[type="email"] {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-main);
}

.magnet-form input[type="email"]::placeholder {
    color: var(--text-grey);
}

.magnet-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.2);
}

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

.section-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    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 var(--border-color);
}

.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;
}

.ps-section strong {
    color: var(--white);
}

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

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

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

.webinar-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.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: var(--text-grey);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }

    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero {
        padding: 40px 0 50px;
        text-align: center;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        padding-bottom: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
        justify-content: center;
        height: auto;
    }

    .hero-image img {
        max-width: 70%;
        max-height: 280px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-item {
        padding: 0.25rem;
        font-size: 0.85rem;
    }

    .stat-item i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .countdown-boxes {
        justify-content: center;
    }

    .cta-group {
        margin-top: 1.5rem;
    }

    .cta-group .btn-primary {
        width: 100%;
        padding: 16px 30px;
    }

    /* 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;
    }

    /* 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.4rem;
    }
    .c-box {
        padding: 0.6rem 0.8rem;
        min-width: 55px;
        border-radius: 8px;
    }
    .c-box span {
        font-size: 1.4rem;
    }
    .c-box small {
        font-size: 0.55rem;
    }

    /* 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%;
        max-width: 100%;
    }
    .form-group-row {
        flex-direction: column;
        width: 100%;
    }
    .form-group-row input,
    .form-group-row button {
        width: 100%;
    }
    .form-consent {
        font-size: 0.65rem;
        line-height: 1.5;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .form-consent label {
        flex-direction: row;
        align-items: flex-start;
    }
    .form-consent span {
        flex: 1;
        min-width: 0;
    }
    .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;
    }

    /* For Whom Mobile */
    .for-whom-grid {
        grid-template-columns: 1fr;
    }

    /* Carousel Responsive */
    .review-card { min-width: 100%; flex: 0 0 100%; }
    .carousel-container { padding: 0; }
    .carousel-btn { display: none; }
}

@media (max-width: 600px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-content {
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin-left: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links .btn-nav {
        text-align: center;
        margin-top: 0.5rem;
    }
}
