/* AccuCoach Brand Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --brand-primary: #10b981;
    --brand-secondary: #6b7280;
    --brand-accent: #f59e0b;
    --brand-accent-2: #8b5cf6;
    
    --color-primary: var(--brand-primary);
    --color-secondary: var(--brand-secondary);
    --color-accent: var(--brand-accent);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* Button Customizations */
    --brand-btn-primary-bg: var(--brand-primary);
    --brand-btn-primary-hover-bg: #059669;
    --brand-btn-outline-color: var(--brand-primary);
    --brand-btn-outline-hover-color: var(--brand-accent);
    --brand-btn-outline-hover-border: var(--brand-accent);
    
    /* Link Colors */
    --brand-link-color: var(--brand-primary);
    --brand-link-hover-color: var(--brand-accent);
    
    /* Form Elements */
    --brand-input-border-focus: var(--brand-primary);
    --brand-input-shadow-focus: 0 0 0 3px rgba(16, 185, 129, 0.1);
    
    /* Accent Highlights */
    --brand-accent-primary: var(--brand-accent);
    --brand-accent-secondary: var(--brand-accent-2);
    
    /* Background Gradients */
    --brand-gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    --brand-gradient-secondary: linear-gradient(135deg, var(--brand-accent-2) 0%, var(--brand-primary) 100%);
    
    /* Card Shadows */
    --brand-card-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1), 0 2px 4px -1px rgba(16, 185, 129, 0.06);
    --brand-card-shadow-hover: 0 10px 15px -3px rgba(16, 185, 129, 0.1), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.ac-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ac-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    position: relative;
    overflow: visible;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.ac-nav-brand h1 {
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.ac-nav-brand i {
    font-size: 1.3rem;
    color: var(--brand-accent);
}

.ac-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: flex-end;
    border-bottom: 2px solid #e5e7eb;
}

.ac-nav-link {
    text-decoration: none;
    color: var(--brand-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    top: 2px;
}

.ac-nav-link:hover {
    background: #e5e7eb;
    color: var(--brand-primary);
}

.ac-nav-link.active {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
    border-bottom: 2px solid white;
    top: 0;
    margin-bottom: -2px;
}

.ac-nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ac-nav-signup-btn {
    background: var(--brand-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.ac-nav-signup-btn:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.ac-mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ac-mobile-menu-toggle:hover {
    background: #f3f4f6;
    border-color: var(--brand-primary);
}

.ac-mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-primary);
    transition: all 0.3s ease;
    margin: 4px 0;
}

.ac-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ac-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ac-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.ac-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.ac-btn-primary {
    background: var(--brand-primary);
    color: white;
    border-color: white;
    border-width: 2px;
}

.ac-btn-primary:hover {
    background: #059669;
    border-color: white;
}

.ac-btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.ac-btn-outline:hover {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

.ac-btn-borderless {
    background: var(--brand-primary);
    color: white;
    border: none;
}

.ac-btn-borderless:hover {
    background: #059669;
    color: white;
    border: none;
}

.ac-btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.ac-btn-outline-white:hover {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.position-relative {
    position: relative;
}

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

.margin-top-spacing {
    margin-top: var(--space-6);
}

.margin-top-large {
    margin-top: var(--space-8);
}

.margin-vertical {
    margin: 1.5rem 0;
}

.payment-section-hidden {
    display: none !important;
}

.payment-section-visible {
    display: block !important;
}

.ac-card-type-indicator {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 1.25rem;
    color: var(--brand-primary);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.ac-card-type-indicator.visible {
    opacity: 1;
}

.ac-card-type-indicator i {
    font-size: 1.5rem;
}

.ac-card-type-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
}

.ac-card-type-indicator-hidden {
    display: none !important;
}

.ac-card-type-indicator-visible {
    display: flex !important;
    opacity: 1 !important;
}

.cvv-tooltip-hidden {
    display: none !important;
}

.cvv-tooltip-visible {
    display: block !important;
}

.price-amount.annual {
    display: none;
}

.cta-gradient-section {
    padding: 4rem 0;
    background: var(--brand-gradient-primary);
}

.cta-gradient-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-gradient-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.unsubscribe-header h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--brand-primary);
}

.unsubscribe-header p {
    margin: var(--space-2) 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.unsubscribe-form {
    margin-top: var(--space-6);
}

.unsubscribe-button-text {
    margin-left: var(--space-2);
}

.info-box {
    margin-top: var(--space-6);
    text-align: center;
    padding: var(--space-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-accent);
}

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

.info-box i {
    color: var(--brand-accent);
    margin-right: var(--space-2);
}

.unsubscribe-footer {
    margin-top: var(--space-8);
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-color);
}

.back-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.back-link:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.pricing-features ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.pricing-features li::before {
    display: none !important;
    content: none !important;
}

.pricing-features li::after {
    display: none !important;
    content: none !important;
}

.pricing-action .ac-btn,
.pricing-action a.ac-btn {
    text-align: center !important;
    justify-content: center !important;
}

.faq-section {
    border-top: 2px solid #e5e7eb;
}

.ac-btn-primary-white {
    background: var(--brand-primary);
    color: white;
    border-color: white;
    border-width: 2px;
}

.ac-btn-primary-white:hover {
    background: #059669;
    color: white;
    border-color: white;
}

.ac-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-accent);
}

.page-header {
    background: var(--brand-gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 2.5rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-section {
    padding: 5rem 0 !important;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    z-index: 1;
}

.features-section:nth-child(even) {
    background: #f9fafb !important;
    border-left: 4px solid var(--brand-primary) !important;
    border-right: 4px solid var(--brand-primary) !important;
}

.features-section:nth-child(odd) {
    background: white !important;
}

.features-section:first-of-type {
    border-top: none !important;
}

.features-section:last-of-type {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.feature-section {
    padding: 5rem 0 !important;
    margin-bottom: 2rem !important;
}

.feature-section:nth-child(even) {
    background: #f9fafb !important;
    border-left: 4px solid var(--brand-primary) !important;
    border-right: 4px solid var(--brand-primary) !important;
}

.feature-section:nth-child(odd) {
    background: white !important;
}

.feature-section:first-of-type {
    border-top: none !important;
}

.feature-section:last-of-type {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--brand-card-shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
    border-left-color: var(--brand-accent);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--brand-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.pricing-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--brand-card-shadow);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.pricing-plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.pricing-plan-period {
    color: var(--brand-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--brand-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--brand-card-shadow);
    border-top: 4px solid var(--brand-accent);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--brand-secondary);
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--brand-primary);
}

.ac-form-group {
    margin-bottom: 1.5rem;
}

.ac-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.ac-form-input,
.ac-form-textarea,
.ac-form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.ac-form-input:focus,
.ac-form-textarea:focus,
.ac-form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.ac-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.cta {
    padding: 4rem 0;
    background: var(--brand-primary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta .ac-btn-primary {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

.cta .ac-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-primary);
    border-color: white;
}

.cta .ac-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .ac-btn-outline:hover {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem;
}

.trust-badge::before {
    content: '✓';
    margin-right: 0.5rem;
    font-weight: bold;
    color: white !important;
}

.ac-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.ac-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.ac-footer-brand {
    margin-bottom: 2rem;
}

.ac-footer-brand h3 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.ac-footer-brand p {
    color: #9ca3af;
    margin-bottom: 0;
}

.ac-footer-links-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.ac-footer-links-center a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.ac-footer-links-center a:hover {
    color: white;
}

.ac-footer-link-separator {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

.ac-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .ac-footer-content {
        align-items: center;
        text-align: center;
    }
    
    .ac-footer-brand {
        text-align: center;
    }
    
    .features-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-header-video {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .section-header-left {
        text-align: center !important;
    }
    
    .section-header-left h2 {
        text-align: center !important;
    }
    
    .section-header-left p {
        text-align: center !important;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ac-mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: relative;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
    }

    .ac-nav-brand {
        flex: 0 0 auto;
        width: auto;
    }

    .ac-mobile-menu-toggle {
        flex: 0 0 auto;
        width: auto;
    }

    .nav {
        position: relative;
        overflow: visible;
    }

    .ac-nav-menu,
    .ac-nav-actions {
        display: none;
    }

    .nav.active {
        flex-wrap: wrap;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(16, 185, 129, 0.15);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .nav.active .ac-nav-menu {
        display: flex;
        width: 100%;
        flex-basis: 100%;
        order: 10;
        margin-top: 1rem;
    }

    .nav.active .ac-nav-actions {
        display: flex;
        width: 100%;
        flex-basis: 100%;
        order: 11;
    }

    .ac-nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
        border: none;
    }

    .ac-nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .ac-nav-menu li:last-child {
        border-bottom: none;
    }

    .ac-nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        border: none;
        background: transparent;
        text-align: left;
        border-radius: 0;
        top: 0;
        margin-bottom: 0;
        transition: color 0.3s ease;
    }

    .ac-nav-link:hover {
        background: transparent;
        color: var(--brand-primary);
    }

    .ac-nav-link.active {
        background: transparent;
        color: var(--brand-primary);
        border: none;
    }

    .ac-nav-actions {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0 0;
        margin-top: 1rem;
        gap: 0.5rem;
        border-top: 1px solid #e5e7eb;
    }


    .ac-nav-signup-btn {
        width: 100%;
        text-align: center;
    }
    
    .ac-container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .features-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 600px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ac-footer-links-center {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.4rem;
        justify-content: center;
        align-items: center;
    }
    
    .ac-footer-links-center a {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .ac-footer-link-separator {
        display: none;
    }
    
    .features-header-video {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .section-header-left {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    
    .section-header-left h2 {
        text-align: center !important;
    }
    
    .section-header-left p {
        text-align: center !important;
    }
}

.ac-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.ac-section-description {
    font-size: 1.25rem;
    color: var(--brand-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.feature-animation {
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-primary);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    border: 1px dashed var(--brand-primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.feature-comparison {
    padding: 4rem 0;
    background: white;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--brand-card-shadow);
    border: 1px solid #e5e7eb;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: var(--brand-primary);
    color: white;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

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

.comparison-row:nth-child(even) {
    background: #f9fafb;
}

.comparison-feature {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.comparison-plan {
    padding: 1rem 1.5rem;
    text-align: center;
    color: #6b7280;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-plan:last-child {
    border-right: none;
}

.comparison-header .comparison-feature,
.comparison-header .comparison-plan {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.comparison-header .comparison-plan:last-child {
    border-right: none;
}

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

.text-muted {
    color: #9ca3af !important;
}


.hero-coaching {
  background: var(--brand-gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 4rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.hero-coaching::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coaching-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23coaching-pattern)"/></svg>');
  opacity: 0.3;
}

.ac-progress-section {
  padding: 2rem 0 4rem 0;
  background: #f9fafb;
}
.ac-progress-visualization {
  background: var(--brand-gradient-secondary);
  border-radius: 12px;
  padding: 2rem;
  color: white;
  text-align: center;
}

.ac-progress-visualization p {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1rem;
}

.ac-progress-bar-coaching {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
  margin: 1rem 0;
}

.ac-progress-fill-coaching {
  background: var(--brand-accent);
  height: 100%;
  border-radius: 10px;
  transition: width 2s ease-in-out;
  animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 0%; }
}

.features {
  padding: 4rem 0;
  background: #f9fafb;
}
.feature-card-coaching {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--brand-primary);
}

.feature-card-coaching:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-card-shadow-hover);
  border-left-color: var(--brand-accent);
}

.features-header-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-header-left {
  text-align: left;
}

.section-header-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  text-align: left;
}

.section-header-left p {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.video-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.motivation-highlight {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin: 1rem 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.25rem;
}

.trust-badge::before {
  content: '✓';
  margin-right: 0.5rem;
  font-weight: bold;
}

.beginner-friendly {
  background: rgba(16, 185, 129, 0.05);
  border: 2px dashed var(--brand-primary);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.beginner-friendly h3 {
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.faq-section {
  padding: 4rem 0 6rem 0;
  background: white;
}


.mission-section {
  padding: 5rem 0;
  background: white;
}

.mission-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.mission-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.mission-subtitle {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.mission-statement {
  margin-bottom: 3rem;
}

.mission-statement p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #374151;
}

.mission-timeline {
  max-width: 900px;
  margin: 0 auto 5rem;
  position: relative;
  padding-left: 4rem;
}

.mission-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
}

.mission-timeline h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2.5rem;
  padding-left: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 1;
}

.timeline-content {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--brand-primary);
  box-shadow: var(--brand-card-shadow);
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--brand-secondary);
  line-height: 1.6;
  margin: 0;
}

.coaching-philosophy-section {
  max-width: 1200px;
  margin: 0 auto;
}

.coaching-philosophy-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2.5rem;
  padding-left: 0;
  text-align: center;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

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

.philosophy-card i {
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.philosophy-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.philosophy-card p {
  color: var(--brand-secondary);
  line-height: 1.6;
  margin: 0;
}

.expertise-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.expertise-tabs {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.expertise-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0;
}

.expertise-tabs .ac-tab-button {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  bottom: -2px;
  font-family: inherit;
}

.expertise-tabs .ac-tab-button i {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  transition: color 0.3s ease;
}

.expertise-tabs .ac-tab-button:hover {
  color: var(--brand-primary);
}

.expertise-tabs .ac-tab-button:hover i {
  color: var(--brand-primary);
}

.expertise-tabs .ac-tab-button.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}

.expertise-tabs .ac-tab-button.active i {
  color: var(--brand-primary);
}

.expertise-tab-contents {
  position: relative;
  min-height: 400px;
}

.expertise-tabs .ac-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.expertise-tabs .ac-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertise-content-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--brand-card-shadow);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.expertise-content-card:hover {
  box-shadow: var(--brand-card-shadow-hover);
  border-color: var(--brand-primary);
}

.expertise-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.expertise-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.expertise-icon-large i {
  font-size: 2.5rem;
  color: white;
}

.expertise-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--brand-secondary);
  margin: 0;
}

.expertise-details {
  margin-top: 2rem;
}

.expertise-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.expertise-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  color: var(--brand-secondary);
  position: relative;
  line-height: 1.5;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.125rem;
}

.security-section {
  padding: 5rem 0;
  background: white;
}

.security-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.metric-card {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.metric-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.metric-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #374151;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: default;
  border: none;
  box-shadow: none;
}

.trust-badges .trust-badge:hover {
  background: #374151;
  transform: none;
  box-shadow: none;
}

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

.team-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.team-spotlight {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-featured {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--brand-card-shadow);
  border: 2px solid var(--brand-primary);
}

.member-avatar-large {
  width: 120px;
  height: 120px;
  background: var(--brand-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.member-avatar-large i {
  font-size: 3rem;
  color: white;
}

.member-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-featured h4 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.team-featured .member-role {
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.team-featured .member-bio {
  color: var(--brand-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-quote {
  font-style: italic;
  color: var(--brand-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 1.5rem 0 0;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--brand-primary);
}

.team-grid-compact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-member-compact {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.team-member-compact:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-card-shadow-hover);
}

.team-member-compact .member-avatar {
  width: 60px;
  height: 60px;
  background: var(--brand-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-member-compact .member-avatar i {
  font-size: 1.5rem;
  color: white;
}

.team-member-compact .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member-compact h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.team-member-compact .member-role {
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.team-member-compact .member-bio {
  color: var(--brand-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.impact-section {
  padding: 5rem 0;
  background: white;
}

.impact-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.impact-story {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
}

.impact-story:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-card-shadow-hover);
  border-color: var(--brand-primary);
}

.story-stats {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--brand-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  padding: 0;
  border: none;
}

.story-author {
  font-size: 0.9rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin: 0;
  text-align: right;
}


.support-message {
  padding: 3rem 0;
  background: #f9fafb;
}

.support-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.support-icon {
  font-size: 3rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.support-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.support-content p {
  color: var(--brand-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-content a {
  color: var(--brand-primary);
  text-decoration: none;
}

.support-content a:hover {
  text-decoration: underline;
}

.support-content .ac-btn {
  color: white;
  background: var(--brand-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.support-content .ac-btn:hover {
  background: var(--brand-accent);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--brand-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid var(--brand-primary);
}

.method-icon {
  font-size: 1.5rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.method-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: var(--brand-secondary);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.method-content p:last-child {
  margin-bottom: 0;
}

.contact-form-container {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ac-form-group {
  display: flex;
  flex-direction: column;
}

.ac-form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.ac-form-group input,
.ac-form-group select,
.ac-form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.ac-form-group input:focus,
.ac-form-group select:focus,
.ac-form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.ac-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brand-secondary);
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.ac-form-error {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #dc2626;
  background-color: #fee2e2;
  border-left: 3px solid var(--brand-primary, #10b981);
  border-radius: 4px;
  font-weight: 500;
}

.ac-form-error--form-level {
  margin: 0 0 var(--space-4, 1rem) 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ac-form-error--success {
  color: #059669;
  background-color: #d1fae5;
  border-left: 3px solid #059669;
}

.hidden {
  display: none !important;
}

.ac-form-checkbox.error {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.ac-btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

.ac-btn-block {
  display: block;
  width: 100%;
}

.ac-btn-next,
.ac-btn-prev {
}

.payment-security-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.auth-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body[data-brand="accucoach"]:has(#signup-form) .auth-container {
  max-width: 650px;
}

.ac-progress-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.ac-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.ac-progress-step.active {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.ac-progress-step.active .step-number {
  background: var(--brand-primary);
  color: white;
}

.step-label {
  font-size: 0.9rem;
  color: var(--brand-secondary);
  font-weight: 500;
}

.ac-form-step {
  display: none;
}

.ac-form-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.step-header p {
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

.plan-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.plan-option {
  position: relative;
}

.plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-label {
  display: block;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.plan-label:hover {
  border-color: var(--brand-primary);
  background: #f9fafb;
}

.plan-option input[type="radio"]:checked + .plan-label {
  border-color: var(--brand-primary);
  background: rgba(16, 185, 129, 0.05);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.plan-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.plan-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.plan-label p {
  color: var(--brand-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.payment-section {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.payment-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.ac-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.password-requirements {
  margin-top: 0.5rem;
}

.password-requirements small {
  color: var(--brand-secondary);
  font-size: 0.8rem;
}

.ac-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.ac-form-actions .ac-btn {
  flex: 1;
}


.legal-content {
  padding: 4rem 0;
  background: white;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem 0;
}

.legal-text p {
  color: #374151;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.legal-text ul {
  margin: 1rem 0 2rem 0;
  padding-left: 0;
  padding-bottom: 2rem;
  list-style: none;
}

.legal-text li {
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.legal-text li::before {
  content: '•';
  color: var(--brand-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.legal-text strong {
  color: #1f2937;
  font-weight: 600;
}

.legal-footer {
  background: #f9fafb;
  border-left: 4px solid var(--brand-primary);
  padding: 2rem;
  margin: 3rem 0 0 0;
  border-radius: 0 8px 8px 0;
}

.legal-footer p {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
  font-style: italic;
}

.toc {
  background: #f9fafb;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--brand-primary);
}

.toc h3 {
  margin-top: 0;
  color: var(--brand-primary);
  font-size: 1.25rem;
}

.toc ul {
  margin: 0;
  padding-left: 1rem;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: var(--brand-secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

.toc a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.highlight-box {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-box h4 {
  color: var(--brand-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.highlight-box p {
  margin-bottom: 0;
  color: #374151;
}

.contact-info {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.contact-info h3 {
  color: var(--brand-primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-info ul {
  margin: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.last-updated {
  background: #f3f4f6;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
  border-left: 3px solid var(--brand-primary);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--brand-secondary);
  font-size: 1rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.auth-form .ac-form-group {
  display: flex;
  flex-direction: column;
}

.auth-form .ac-form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.auth-form .ac-form-group input {
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.auth-form .ac-form-group input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.auth-form.was-validated .ac-form-group input:invalid {
  border-color: #ef4444;
}

.ac-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ac-form-options .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brand-secondary);
}

.ac-form-options .checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.ac-form-options .checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ac-form-options .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.ac-form-options .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.forgot-link {
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

.ac-form-error {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #dc2626;
}

.ac-form-error--form-level {
  margin: 0 0 1rem 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.payment-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-security-badge i {
  padding: 5px;
}

.auth-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  display: inline-block;
  margin-top: 0.75rem;
  background: transparent;
  padding: 0;
  color: var(--brand-secondary);
  font-size: 0.9rem;
}

.auth-footer {
  margin-top: 1rem;
}

.social-login {
  margin-bottom: 2rem;
}

.social-login .ac-btn {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-login .ac-btn:hover {
  border-color: var(--brand-primary);
  background: #f9fafb;
  transform: translateY(-2px);
}

.social-login .ac-btn i {
  font-size: 1.1rem;
}

.pricing-card-coaching {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card-coaching.featured {
  border: 2px solid var(--brand-primary);
  transform: scale(1.05);
}

.pricing-card-coaching.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--brand-primary);
  color: white;
  padding: 0.25rem 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card-coaching:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-card-shadow-hover);
}

.pricing-action {
  margin-top: auto;
  padding-top: 2rem;
}

.free-trial-badge {
  background: var(--brand-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.ac-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.ac-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.ac-accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.ac-accordion-item:last-child {
  margin-bottom: 0;
}

.ac-accordion-coaching .ac-accordion-header {
  background: white;
  border-top: 4px solid var(--brand-primary);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.ac-accordion-coaching .ac-accordion-header:hover {
  background: rgba(16, 185, 129, 0.03);
}

.ac-accordion-item.active .ac-accordion-coaching .ac-accordion-header {
  background: rgba(16, 185, 129, 0.05);
  border-top-color: var(--brand-primary);
}

.ac-accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.ac-accordion-icon {
  font-size: 0.875rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.ac-accordion-content {
  padding: 0;
  background: white;
  color: #6b7280;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.ac-accordion-item.active .ac-accordion-content {
  max-height: 300px;
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  opacity: 1;
  background: rgba(249, 250, 251, 0.5);
}

.ac-accordion-item.active .ac-accordion-icon {
  transform: rotate(180deg);
}

.ac-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: var(--space-4);
}

.ac-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.ac-modal-backdrop .modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px) scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
  border: 2px solid var(--brand-primary);
}

.ac-modal-backdrop.active .modal {
  transform: translateY(0) scale(1);
}

.ac-modal-header {
  padding: var(--space-6) var(--space-6) var(--space-4);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: white;
  text-align: center;
}

.ac-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.ac-modal-body {
  padding: var(--space-6);
  color: #374151;
  line-height: 1.7;
  font-size: 1rem;
}

.ac-modal-body p {
  margin: 0;
  color: #374151;
}

.ac-modal-footer {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6) var(--space-6);
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.ac-modal-footer .btn {
  padding: var(--space-3) var(--space-6);
  cursor: pointer;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.ac-modal-footer .btn-primary,
.ac-modal-footer .ac-btn-primary {
  background: var(--brand-primary);
  color: white;
  border: 2px solid var(--brand-primary);
}

.ac-modal-footer .btn-primary:hover,
.ac-modal-footer .ac-btn-primary:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.back-to-top:active {
  transform: translateY(-1px);
}

.back-to-top i {
  font-size: 1.25rem;
}

.testimonials {
  padding: 4rem 0;
  background: white;
}
.testimonial-coaching {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--brand-card-shadow);
  border-top: 4px solid var(--brand-accent);
}

.testimonial-coaching .quote {
  font-style: italic;
  color: var(--brand-secondary);
  margin-bottom: 1rem;
}

.testimonial-coaching .author {
  font-weight: 600;
  color: var(--brand-primary);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card-coaching {
    text-align: center;
  }
  
  .pricing-header h3,
  .pricing-price,
  .pricing-description {
    text-align: center;
  }
  
  .pricing-features ul {
    text-align: center;
  }
  
  .pricing-features li {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  
  .pricing-features li i {
    margin-right: 0.5rem;
  }
  
  .pricing-features li::before {
    display: none;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 2fr 0.8fr 0.8fr 0.8fr 0.8fr;
    min-width: 800px;
  }
  
  .comparison-feature,
  .comparison-plan {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  .expertise-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card-coaching {
    text-align: center;
  }
  
  .pricing-header h3,
  .pricing-price,
  .pricing-description {
    text-align: center;
  }
  
  .pricing-features ul {
    text-align: center;
  }
  
  .pricing-features li {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  
  .pricing-features li i {
    margin-right: 0.5rem;
  }
  
  .pricing-features li::before {
    display: none;
  }
  
  .pricing-card-coaching.featured {
    transform: none;
  }
  
  .hero-coaching {
    padding: 2rem 1rem;
  }
  
  .feature-card-coaching {
    margin-bottom: 1rem;
  }
  
  .comparison-header,
  .comparison-row {
    min-width: 800px;
  }
  
  .comparison-feature,
  .comparison-plan {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .ac-footer-links-center {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
  }
  
  .ac-footer-links-center a {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .ac-footer-link-separator {
    display: none;
  }
  
  .mission-timeline {
    padding-left: 3rem;
  }
  
  .mission-timeline::before {
    left: 1rem;
  }
  
  .timeline-marker {
    left: -2.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .expertise-tabs .ac-tab-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .expertise-tabs .ac-tab-button span {
    display: none;
  }
  
  .expertise-tabs .ac-tab-button i {
    font-size: 1.5rem;
  }
  
  .expertise-content-card {
    padding: 2rem;
  }
  
  .expertise-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .expertise-header h3 {
    font-size: 1.5rem;
  }
  
  .expertise-list {
    grid-template-columns: 1fr;
  }
  
  .expertise-tab-contents {
    min-height: 300px;
  }
  
  .security-metrics {
    grid-template-columns: 1fr;
  }
  
  .team-spotlight {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .impact-stories {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .support-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .auth-section {
    padding: 3rem 1rem;
    min-height: 70vh;
  }
  
  .auth-container {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .auth-header h1 {
    font-size: 1.75rem;
  }
  
  .ac-form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  body:has(#createAccountForm) .auth-container {
    max-width: 100%;
    margin: 0 1rem;
  }
  
  .plan-selection {
    grid-template-columns: 1fr;
  }
  
  .ac-form-row {
    grid-template-columns: 1fr;
  }
  
  .ac-form-actions {
    flex-direction: column;
  }
  
  .ac-progress-indicator {
    gap: 1rem;
  }
  
  .legal-text {
    padding: 0 1rem;
  }
  
  .legal-text h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
  }
  
  .legal-text h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem 0;
  }
  
  .legal-footer {
    padding: 1.5rem;
    margin: 2rem 0 0 0;
  }
  
  .toc {
    padding: 1.5rem;
  }
  
  .highlight-box {
    padding: 1rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
}

.contact-form-container {
  width: 100%;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hidden {
  display: none !important;
}

.ac-form-error {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #dc2626;
  background-color: #fee2e2;
  border-left: 3px solid #dc2626;
  border-radius: 4px;
  font-weight: 500;
}

.ac-form-error--form-level {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ac-form-error--success {
  color: #059669;
  background-color: #d1fae5;
  border-left: none;
  text-align: center;
  font-size: 1rem;
}

