/* ========================================
   VARIABLES & RESET (shadcn/ui inspired)
======================================== */

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8B5F;
    --secondary: #004E89;
    --secondary-dark: #003366;
    --dark: #0A0A0F;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #10B981;
    --white: #FFFFFF;
    --border: hsl(240 5.9% 90%);
    --ring: hsl(24 100% 60%);

    /* shadcn-inspired shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(to bottom, #FAFAFA 0%, #F4F4F5 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ========================================
   HEADER
======================================== */

.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo h2 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.5) 0%, rgba(0, 51, 102, 0.6) 100%),
                url('curso.png') center center / cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Countdown */
.countdown {
    background: rgba(10, 10, 15, 0.4);
    padding: 30px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.countdown-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

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

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: var(--radius);
    min-width: 70px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.countdown-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-label {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.8;
}

/* ========================================
   FORM CARD
======================================== */

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-group input:hover {
    border-color: hsl(240 5.9% 70%);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), var(--shadow-sm);
    background: var(--white);
}

.btn-primary {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 18px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 14px 0 rgb(255 107 53 / 39%);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgb(255 107 53 / 50%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #F1F3F5;
}

.trust-item {
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   SECTIONS
======================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
}

/* ========================================
   PROBLEM SECTION
======================================== */

.problem-section {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

.problem-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    color: var(--white);
    border-radius: var(--radius);
}

.problem-highlight {
    font-size: 24px;
    line-height: 1.5;
}

/* ========================================
   LEARN SECTION
======================================== */

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

.learn-grid {
    display: grid;
    gap: 30px;
}

.learn-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.learn-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.learn-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
}

.learn-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.learn-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   BONUS SECTION
======================================== */

.bonus-section {
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bonus-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.bonus-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 107, 53, 0.3);
}

.bonus-card.featured::after {
    display: none;
}

.bonus-card.featured h3,
.bonus-card.featured p {
    color: var(--white);
}

.bonus-card.featured .bonus-icon svg {
    color: var(--white);
}

.bonus-card.featured .bonus-value {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.bonus-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.bonus-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-value {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.7;
}

.bonus-total {
    background: linear-gradient(135deg, var(--secondary) 0%, #003366 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
}

.bonus-total-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bonus-total-text,
.bonus-total-price {
    text-align: center;
}

.bonus-total-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.bonus-total-strike {
    font-size: 36px;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.6;
}

.bonus-total-final {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid #E9ECEF;
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   INSTRUCTOR SECTION
======================================== */

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

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.instructor-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.instructor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    border: 4px solid var(--primary);
}

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

.instructor-name {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    color: #0A66C2;
    transition: var(--transition);
    opacity: 0.8;
}

.linkedin-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
}

.instructor-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.instructor-bio {
    margin-bottom: 30px;
}

.instructor-bio ul {
    list-style: none;
    margin-top: 15px;
}

.instructor-bio li {
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.7;
}

.instructor-quote {
    background: var(--light);
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    font-style: italic;
    color: var(--gray);
}

/* ========================================
   FOR WHO SECTION
======================================== */

.forwho-section {
    background: var(--white);
}

.forwho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.forwho-column {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
}

.forwho-heading {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
}

.forwho-heading.yes {
    color: var(--success);
    border-color: var(--success);
}

.forwho-heading.no {
    color: #DC3545;
    border-color: #DC3545;
}

.forwho-list {
    list-style: none;
}

.forwho-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.forwho-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.yes .forwho-list li::before {
    background: var(--success);
    content: '✓';
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.no .forwho-list li::before {
    background: #DC3545;
    content: '✗';
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ========================================
   FAQ SECTION
======================================== */

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

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.5) 0%, rgba(0, 51, 102, 0.6) 100%),
                url('n8n.png') center center / cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.final-cta-content {
    text-align: center;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.final-cta-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.final-cta-price {
    text-align: center;
    margin-bottom: 30px;
}

.final-cta-currency {
    font-size: 32px;
    color: var(--gray);
    vertical-align: super;
}

.final-cta-amount {
    font-size: 96px;
    font-weight: 800;
    color: var(--primary);
}

.final-cta-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.final-cta-list li {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 16px;
}

.btn-primary-large {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.final-cta-guarantee {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.8;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* ========================================
   SVG ICONS STYLING
======================================== */

/* General SVG icon styling */
.problem-icon svg,
.bonus-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.problem-card:hover .problem-icon svg,
.bonus-card:hover .bonus-icon svg {
    transform: scale(1.1);
}

/* Trust badges icons */
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Instructor bio icons */
.instructor-bio ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.instructor-bio ul li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* For Who section icons */
.forwho-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.forwho-heading.yes svg {
    color: var(--success);
}

.forwho-heading.no svg {
    color: #DC3545;
}

/* Final CTA list icons */
.final-cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.final-cta-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-card {
        position: static;
    }

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

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

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

    .instructor-image img {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-amount {
        font-size: 64px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
