/* ============================================
   ACCOUNTANT INSTITUTE - REDESIGN V2 CSS
   New Color Scheme & Professional Membership Focus
   ============================================ */

:root {
    /* New Primary Color Scheme - Professional & Trustworthy */
    --primary-color: #1a7b88;
    /* Teal - Main brand color */
    --primary-dark: #146570;
    /* Darker teal for hover states */
    --primary-light: #e8f4f5;
    /* Light teal for backgrounds */

    /* Accent Color - Call to Action */
    --accent-color: #f47c3c;
    /* Warm orange/coral for CTAs */
    --accent-hover: #e56f30;
    /* Darker orange for hover */

    /* Text Colors */
    --text-primary: #2d3748;
    /* Dark gray for main text */
    --text-secondary: #718096;
    /* Medium gray for secondary text */
    --text-light: #a0aec0;
    /* Light gray for subtle text */

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    /* Very light gray */
    --bg-dark: #1a202c;
    /* Dark navy for footer */

    /* Status Colors */
    --success: #48bb78;
    /* Green for success states */
    --warning: #ecc94b;
    /* Yellow for warnings */
    --danger: #f56565;
    /* Red for errors */

    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;

    /* Spacing & Layout */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   HERO SECTION - REDESIGN V2
   ============================================ */

.hero-v2 {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(26, 123, 136, 0.05) 100%);
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 123, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
}

.hero-badge-v2 {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-v2 .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .hero-subtitle-v2 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
} */

/* ============================================
   VALUE PROPOSITION BOX
   ============================================ */

.value-prop-box {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    position: relative;
}

.value-prop-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.value-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.value-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.value-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.value-comparison {
    font-size: 1rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 24px;
}

.value-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-item i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
}

.value-item-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   THREE PILLAR SECTION
   ============================================ */

.three-pillars-section {
    padding: 40px 0;
    background: var(--bg-white);
}

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

.pillar-card {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.pillar-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(244, 124, 60, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.pillar-card:hover .pillar-icon i {
    color: var(--bg-white);
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pillar-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pillar-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 16px;
}

/* ============================================
   MEMBERSHIP BENEFITS SECTION
   ============================================ */

.benefits-showcase {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-light) 100%);
}

.benefits-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card-v2 {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.benefit-card-v2:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon-v2 {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-v2 i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.benefit-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-included-badge {
    display: inline-block;
    background: var(--success);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   BARRETT TAX LAW CREDIBILITY BLOCK
   ============================================ */

.credibility-section {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.credibility-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.credibility-content {
    position: relative;
    z-index: 2;
}

.credibility-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.credibility-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.credibility-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.credibility-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stat-item-v2 {
    text-align: center;
}

.stat-number-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number-v3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-v2 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label-v3 {
    font-size: 1rem;
    color: var(--accent-color);
}

/* ============================================
   COURSES PREVIEW SECTION
   ============================================ */

.courses-preview-section {
    padding: 30px 0;
    background: var(--bg-white);
}

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

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.courses-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.course-card-v2 {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.course-card-v2:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.course-image-v2 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.course-card-v2:hover .course-image-v2 img {
    transform: scale(1.05);
}

.course-badge-included {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--success);
    color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.course-ce-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.course-content-v2 {
    padding: 24px;
}

.course-category-v2 {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.course-title-v2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.course-meta-v2 i {
    color: var(--primary-color);
}

.courses-cta-box {
    text-align: center;
    background: var(--primary-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    margin-top: 40px;
}

.courses-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.courses-cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================
   BUTTONS - REDESIGN V2
   ============================================ */

.btn-v2 {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary-v2 {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-base);
    padding: 10px;
}

.btn-primary-v2:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-accent-v2 {
    padding: 10px;
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-base);
}

.btn-accent-v2:hover {
    background: var(--accent-hover);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline-v2 {
    padding: 8px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-v2:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline-v3 {
    padding: 8px;
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-outline-v3:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-white-v2 {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-base);
    padding: 10px;
}

.btn-white-v2:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-lg-v2 {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-group-v2 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   PRICING SIMPLE SECTION
   ============================================ */

.pricing-simple-section {
    padding: 30px 0;
    background: var(--bg-light);
}

.pricing-card-simple {
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.pricing-badge-simple {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pricing-title-simple {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-price-simple {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price-simple span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-value-simple {
    font-size: 1.125rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 32px;
}

.pricing-features-simple {
    text-align: left;
    margin: 32px 0;
}

.pricing-feature-simple {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-feature-simple i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
}

.pricing-feature-simple span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS - REDESIGN V2
   ============================================ */

.testimonials-v2-section {
    padding: 30px 0;
    background: var(--bg-white);
}

.testimonials-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card-v2 {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition-base);
}

.testimonial-card-v2:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.quote-icon-v2 {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.testimonial-rating-v2 {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.testimonial-text-v2 {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar-v2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info-v2 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-info-v2 p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FOOTER - REDESIGN V2
   ============================================ */

.footer-v2 {
    /* background: var(--bg-dark); */
    /* background-color: var(--gray-500); */
    background-color: var(--bg-light);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-v2 {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-barrett {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
    margin-top: 20px;
}

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-v2 {
    list-style: none;
    padding: 0;
}

.footer-links-v2 li {
    margin-bottom: 12px;
}

.footer-links-v2 a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-links-v2 a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

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

@media (max-width: 1200px) {
    .hero-title-v2 {
        font-size: 3rem;
    }

    .pillar-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-title-v2 {
        font-size: 2.5rem;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefits-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .credibility-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .courses-grid-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonials-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-v2 {
        padding: 60px 0 40px;
    }

    .hero-title-v2 {
        font-size: 2rem;
    }

    /* .hero-subtitle-v2 {
        font-size: 1rem;
    } */

    .value-includes {
        grid-template-columns: 1fr;
    }

    .three-pillars-section,
    .benefits-showcase,
    .credibility-section,
    .courses-preview-section,
    .pricing-simple-section,
    .testimonials-v2-section {
        padding: 30px 0;
    }

    .courses-grid-preview {
        grid-template-columns: 1fr;
    }

    .btn-group-v2 {
        flex-direction: column;
    }

    .btn-v2 {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero-title-v2 {
        font-size: 1.75rem;
    }

    .section-title-v2 {
        font-size: 1.75rem;
    }

    .pricing-price-simple {
        font-size: 3rem;
    }

    .value-price {
        font-size: 2rem;
    }

    .stat-number-v2 {
        font-size: 2rem;
    }

    .stat-number-v3 {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.bg-primary-v2 {
    background-color: var(--primary-color) !important;
}

.bg-light-v2 {
    background-color: var(--bg-light) !important;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 48px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

.pt-1 {
    padding-top: 8px;
}

.pt-2 {
    padding-top: 16px;
}

.pt-3 {
    padding-top: 24px;
}

.pt-4 {
    padding-top: 32px;
}

.pt-5 {
    padding-top: 48px;
}

.pb-1 {
    padding-bottom: 8px;
}

.pb-2 {
    padding-bottom: 16px;
}

.pb-3 {
    padding-bottom: 24px;
}

.pb-4 {
    padding-bottom: 32px;
}

.pb-5 {
    padding-bottom: 48px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}