:root {
    --primary-color: #4facfe;
    --secondary-color: #00f2fe;
    --accent-purple: #a18cd1;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9fb;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #4facfe 0%, #a18cd1 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2{
    font-size: 3rem;
}

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

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

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.6);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f4f6ff);
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.lead-magnet-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.magnet-box {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.magnet-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-main);
    border-radius: 30px;
    z-index: -1;
}

.gift-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    animation: bounce-gift 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(251, 191, 36, 0.3));
}

.gift-icon i {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes bounce-gift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

.magnet-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.magnet-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #4facfe;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.magnet-box > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    align-items: stretch;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e0f2fe;
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.email-form input[type="email"]::placeholder {
    color: #94a3b8;
}

.email-form .cta-button {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 15px;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #10b981;
    font-size: 1rem;
}

.privacy-note i {
    color: #10b981;
    margin-right: 5px;
}

/* Social Proof Stats Section */
.social-proof-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.social-proof-stats h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 15px;
}

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

/* Micro-Commitment Section */
.micro-commitment-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.commitment-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid #4facfe;
}

.commitment-box h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.checkbox-list {
    margin-bottom: 30px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9fafb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #4facfe;
}

.checkbox-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.commitment-result {
    text-align: center;
    font-size: 1.2rem;
    color: #10b981;
    padding: 20px;
    background: #ecfdf5;
    border-radius: 10px;
    border: 2px dashed #10b981;
}

/* Urgency Banner in Offer */
.urgency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
}

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

.urgency-banner i {
    color: #fbbf24;
    margin: 0 10px;
}

.spots-left {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.social-proof-mini {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: #ecfdf5;
    border-radius: 10px;
}

.social-proof-mini i {
    color: #10b981;
    font-size: 1.5rem;
    margin-right: 10px;
}

.social-proof-mini p {
    display: inline;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Enhanced Testimonials */
.author-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

/* Achievements in Host Cards */
.achievements {
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    text-align: left;
}

.achievements p {
    margin: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements i {
    color: #4facfe;
    font-size: 1.1rem;
}

/* Trust / As Seen In Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.trust-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.trust-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.credentials-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.credentials-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.credentials-note i {
    color: #10b981;
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
}

.faq-question i:first-child {
    color: #4facfe;
    font-size: 1.5rem;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.faq-question i:last-child {
    color: #999;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px 25px 60px;
    background: white;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #f0f9ff;
    border-radius: 15px;
}

.faq-cta p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.faq-cta a {
    color: #4facfe;
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Final Value Section */
.final-value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.final-value-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.value-recap {
    max-width: 700px;
    margin: 0 auto 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 1.8rem;
    color: #10b981;
    margin-top: 5px;
}

.value-item h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.value-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.total-value {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.crossed-value {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 10px;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
}

.final-price strong {
    color: #10b981;
    font-size: 3rem;
}

.savings {
    font-size: 1.2rem;
    color: #ef4444;
    font-weight: 600;
}

.savings span {
    background: #fef2f2;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f4f6ff);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.tag {
    display: inline-block;
    background-color: #eef2ff;
    color: #4facfe;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
}

.placeholder-box p {
    margin-top: 10px;
    font-size: 0.9rem;
}

.webinar-details {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #555;
}

.webinar-details i {
    color: #a18cd1; /* Accent color */
    margin-right: 5px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    margin: 0 auto;
    border-radius: 2px;
}

.problem-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card i {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.solution-bridge {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solution-bridge h3 {
    font-size: 2rem;
    color: #4facfe;
}

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

.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 15px;
}

.hosts-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.host-card {
    text-align: center;
    max-width: 450px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.placeholder-circle {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
}

.host-card h4 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.host-card .role {
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.host-card .bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
}

.contact-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #a18cd1;
    font-size: 0.9rem;
}

/* Practical Info Section */
.practical-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #a18cd1;
    box-shadow: 0 10px 25px rgba(161, 140, 209, 0.15);
}

.info-card i {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Section CTA Wrapper */
.section-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.promo-info {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.promo-info s {
    color: #999;
    margin-right: 5px;
}

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

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #4facfe;
    font-size: 1.2rem;
}

/* What You Learn Section */
.what-learn-section {
    padding: 100px 0;
    background-color: var(--white);
}

.wide-placeholder {
    max-width: 900px;
    margin: 30px auto;
    height: 300px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.learn-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.learn-item:hover {
    transform: translateY(-5px);
}

.learn-item i {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.learn-item p {
    font-weight: 500;
}

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

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.detail-card i {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.detail-card h4 {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Perspectives Section */
.perspectives-section {
    padding: 100px 0;
    background-color: var(--white);
}

.perspectives-section h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: -10px;
    margin-bottom: 20px;
}

.perspectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.perspective-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.perspective-item:hover {
    transform: translateY(-8px);
    border-color: #a18cd1;
    box-shadow: 0 10px 30px rgba(161, 140, 209, 0.2);
}

.perspective-item i {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.perspective-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Knowledge Section */
.knowledge-section {
    padding: 100px 0;
    background-color: var(--white);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.knowledge-column h3 {
    color: #a18cd1;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.knowledge-column ul {
    list-style: none;
}

.knowledge-column ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.knowledge-column ul li::before {
    content: '\f105'; /* FontAwesome Chevron Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4facfe;
}

.anger-types {
    margin-top: 60px;
    background: #f4f8ff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.anger-types h3 {
    margin-bottom: 30px;
}

.types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.type-tag {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #555;
    border: 1px solid #eee;
}

/* Program Section */
.program-section {
    padding: 100px 0;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
}

.step-item {
    flex: 1 1 180px;
    min-width: 180px;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: rgba(161, 140, 209, 0.15); /* Faded accent */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-content h4 {
    margin-top: 20px;
    color: var(--text-dark);
}

.what-you-get {
    background: #f4f8ff;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.what-you-get h3 {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.benefits-list li i {
    color: #4facfe;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.placeholder-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    text-align: center;
}

.offer-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.price-box {
    margin: 40px 0;
}

.regular-price {
    font-size: 1.2rem;
    color: #999;
}

.promo-price {
    font-size: 4rem;
    font-weight: 700;
    color: #4facfe;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.promo-note {
    color: #a18cd1;
    font-weight: 600;
}

.countdown-container {
    margin-bottom: 40px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.time-part {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.time-part span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.big-cta {
    font-size: 1.2rem;
    padding: 20px 60px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #aaa;
    margin: 0 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .problem-cards, .hosts-grid, .testimonials-grid {
        flex-direction: column;
    }

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

    .offers-container {
        padding: 30px;
    }

    .menu-icon {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Lead Magnet Mobile Responsive */
    .lead-magnet-section {
        padding: 60px 20px;
    }

    .magnet-box {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .magnet-box h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .magnet-box h3 {
        font-size: 1.1rem;
    }

    .magnet-box > p {
        font-size: 1rem;
    }

    .email-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-form input[type="email"],
    .email-form .cta-button {
        width: 100%;
        padding: 16px 20px;
    }

    .gift-icon {
        font-size: 4rem;
    }
}


/* Podstawowe style dla obrazków */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Obrazki w hero section */
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Obrazki w sekcji "co się nauczysz" */
.wide-placeholder img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin: 10px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wide-placeholder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: transparent;
}

/* Style dla okrągłych zdjęć prowadzących */
.placeholder-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
    overflow: hidden; /* WAŻNE - przycina obraz do okręgu */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
}

.placeholder-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Dopasowuje obraz do okręgu */
    border-radius: 50%;
}
