/* CSS Reset and Base Styles */
:root {
    /* WCAG AAA Compliant Color Palette */
    --primary-color: #0056b3;
    --primary-dark: #003d82;
    --primary-light: #0069d9;
    --secondary-color: #28a745;
    --accent-color: #ff6b35;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #dee2e6;
    --focus-outline: #0056b3;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-headings: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem; /* 18px for AAA readability */
    line-height: 1.7; /* AAA line height */
    color: var(--text-primary);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip to Main Content Link - WCAG AAA */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

/* Focus Styles - WCAG AAA */
*:focus {
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

/* Header/Navigation */
.navbar {
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--primary-dark);
}

/* === Navbar Logo Sizing (added for taller logo) === */
.navbar-brand img {
    height: 80px;       /* main logo height */
    width: auto;        /* preserve aspect ratio */
    max-height: 80px;   /* safety limit on large screens */
    transition: all 0.3s ease;
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 55px;
    }
}


/* Back to Home Link */
.back-to-home {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-home:hover,
.back-to-home:focus {
    color: var(--primary-dark);
    background-color: var(--bg-gray);
    text-decoration: none;
}

.back-to-home svg {
    transition: transform 0.3s ease;
}

.back-to-home:hover svg,
.back-to-home:focus svg {
    transform: translateX(-3px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 3rem;
}

.hero-schedule-notice {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1.125rem;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-schedule-link {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.hero-schedule-link:hover,
.hero-schedule-link:focus {
    color: var(--accent-color);
    text-decoration-thickness: 2px;
}

/* AI-Built Badge Section */
.ai-built-badge {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.ai-built-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ai-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.08)"/></pattern></defs><rect width="80" height="80" fill="url(%23ai-dots)"/></svg>');
    opacity: 0.5;
}

.ai-built-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.ai-built-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ai-built-icon {
        animation: none;
    }
}

.ai-built-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.ai-built-text {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
}

.ai-built-main {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.ai-built-main strong {
    color: var(--accent-color);
    font-weight: 700;
}

.ai-built-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.ai-built-cta {
    flex-shrink: 0;
}

.btn-ai-built {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-ai-built:hover,
.btn-ai-built:focus {
    background-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 1.125rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta-item svg {
    width: 24px;
    height: 24px;
}

/* CTA Button */
.btn-cta {
    background-color: var(--accent-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-cta-block {
    width: 100%;
    text-align: center;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: white;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Features Grid */
.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover,
.feature-card:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Curriculum Section */
.curriculum-item {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.curriculum-item:hover,
.curriculum-item:focus-within {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.curriculum-time {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.curriculum-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.curriculum-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.curriculum-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.curriculum-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-gray);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1.0625rem;
}

/* Email Capture Section Styles */
.email-capture-section {
    background: linear-gradient(135deg, var(--secondary-color), #1e7a34);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.email-capture-content {
    position: relative;
    z-index: 1;
}

.email-capture-section h2 {
    color: white;
}

.email-capture-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.email-capture-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 3rem;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-prop-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-prop-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.value-prop-text {
    font-size: 1rem;
    line-height: 1.5;
}

.email-capture-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.email-capture-form-wrapper h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.email-capture-form {
    margin-bottom: 0;
}

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

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

.email-form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.email-form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-form-control:focus {
    border-color: var(--secondary-color);
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.email-form-control.error {
    border-color: #dc3545;
}

.email-form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.email-form-error.show {
    display: block;
}

.email-form-help {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.interest-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.interest-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-option:hover {
    border-color: var(--secondary-color);
    background-color: rgba(40, 167, 69, 0.05);
}

.interest-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.interest-option input[type="radio"]:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.interest-option-label {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.interest-option-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-email-capture {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-email-capture:hover:not(:disabled),
.btn-email-capture:focus:not(:disabled) {
    background: #1e7a34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-email-capture:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.email-form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.email-form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.email-form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    display: none;
}

.email-form-message.show {
    display: block;
}

.email-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.email-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-gray);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    position: relative;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing-title-card {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-currency {
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 0.25rem;
    margin-top: 0.5rem;
}

.pricing-value {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-headings);
}

.pricing-period {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.pricing-body {
    padding: 2.5rem 2rem;
}

.pricing-includes-title {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.0625rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    margin-top: 2px;
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-value-prop {
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.pricing-comparison {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.pricing-strike {
    text-decoration: line-through;
    color: #dc3545;
    font-weight: 600;
}

.pricing-savings {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.pricing-footer {
    padding: 0 2rem 2.5rem;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.pricing-guarantee-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Comparison Chart Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 800px;
}

.comparison-table thead {
    background: var(--bg-gray);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.feature-column {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    width: 25%;
}

.option-column {
    width: 25%;
}

.highlight-column {
    background: #f0f7ff;
    position: relative;
}

.highlight-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.option-header {
    padding: 1rem 0;
}

.option-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.option-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.option-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.feature-name {
    text-align: left;
}

.highlight-cell {
    background: #f0f7ff;
    font-weight: 600;
}

.status-icon {
    font-size: 1.25rem;
}

.status-icon.positive {
    color: var(--secondary-color);
}

.status-icon.negative {
    color: #dc3545;
}

.status-icon.neutral {
    color: var(--text-secondary);
}

.total-row {
    background: var(--bg-gray);
    font-weight: 600;
}

.comparison-cta {
    padding: 1rem 0;
}

.comparison-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comparison-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-comparison {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-comparison:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.comparison-summary {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 8px;
}

.comparison-summary p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 2rem 0;
}

.cta-price-note {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.register-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Registration Form Styles */
.registration-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.registration-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 0.5rem;
}

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

.step-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step.active .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

.step-connector {
    height: 2px;
    background: var(--border-color);
    flex: 1;
    margin: 0 0.5rem;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    text-align: left;
}

.form-section-title {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.required {
    color: #dc3545;
}

.optional {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.875rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    text-align: left;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-check {
    margin-bottom: 1rem;
    text-align: left;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:focus {
    border-color: var(--primary-color);
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    margin-left: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

/* Links within registration card - WCAG AAA contrast */
.registration-card a,
.registration-card .link-light {
    color: var(--primary-dark) !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registration-card a:hover,
.registration-card a:focus,
.registration-card .link-light:hover,
.registration-card .link-light:focus {
    color: #001a3d !important;
    text-decoration-thickness: 3px;
    background-color: rgba(0, 61, 130, 0.1);
    outline: 3px solid var(--focus-outline);
    outline-offset: 2px;
}

.form-check-label a,
.form-check-label .link-light {
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.registration-summary {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.summary-row span {
    color: var(--text-primary);
}

.summary-row strong {
    color: var(--text-primary);
    font-weight: 700;
}

.summary-row.total-row {
    border-top: 2px solid var(--text-primary);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-price {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

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

.btn-submit {
    background: var(--accent-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    max-width: 400px;
}

.btn-submit:hover,
.btn-submit:focus {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.payment-security {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-note-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-submit-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.paypal-logo {
    height: 24px;
    margin-right: 8px;
}

.link-light {
    color: var(--primary-color);
    text-decoration: underline;
}

.registration-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: white;
}

.guarantee-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.guarantee-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.guarantee-item p {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
}

/* FAQ Section */
.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-gray);
}

.faq-question span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: white;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover,
footer a:focus {
    color: var(--accent-color);
}

.footer-links {
    margin-top: 2rem;
    font-size: 1rem;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.9375rem;
}

/* Next Steps Box - WCAG 2.2 AAA Compliant */
.next-steps-box {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.next-steps-box h4 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000; /* WCAG AAA contrast */
    margin-bottom: 1.5rem;
}

.next-steps-box ol,
.next-steps-box ul {
    margin-bottom: 0;
    padding-left: 2rem;
}

.next-steps-box li {
    color: #000000; /* WCAG AAA contrast - 21:1 ratio on white background */
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.next-steps-box li:last-child {
    margin-bottom: 0;
}

/* Thank You Page Styles */
.thank-you-body {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.next-steps {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-headings);
}

.next-steps ol {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.btn-home {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-home:hover,
.btn-home:focus {
    background: #003d82;
    color: white;
    transform: translateY(-2px);
}

/* === About Instructor Section === */
.instructor-section {
    background: #f8f9fa;
    padding: 4rem 0;
    border-top: 3px solid var(--primary-color);
}

.instructor-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.instructor-tagline {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.instructor-tagline .divider {
    margin: 0 0.5rem;
    color: #999;
}


.instructor-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

.instructor-content {
    flex: 1;
}

.instructor-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.instructor-tagline {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.instructor-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Mobile layout */
@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .instructor-photo img {
        margin: 0 auto 1rem;
        width: 140px;
        height: 140px;
    }

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


/* Accessibility - High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0047ab;
        --text-primary: #000000;
        --border-color: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .back-to-home {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-schedule-notice {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        text-align: center;
    }
    
    .ai-built-badge {
        padding: 1.5rem 0;
    }
    
    .ai-built-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ai-built-text {
        min-width: auto;
    }
    
    .ai-built-main {
        font-size: 1.125rem;
    }
    
    .ai-built-sub {
        font-size: 0.9375rem;
    }
    
    .btn-ai-built {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn-cta,
    .btn-secondary {
        font-size: 1.125rem;
        padding: 0.875rem 2rem;
        display: block;
        margin: 1rem 0;
    }
    
    .email-capture-value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .email-capture-form-wrapper {
        padding: 1.5rem;
    }
    
    .email-form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-price {
        font-size: 2.5rem;
    }
    
    .pricing-value {
        font-size: 4rem;
    }
    
    .pricing-currency {
        font-size: 2rem;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 2rem;
    }
    
    .pricing-body,
    .pricing-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 1rem;
    }
    
    .comparison-table-wrapper {
        margin: 0;
        padding: 0;
    }
    
    .comparison-table {
        font-size: 0.875rem;
        min-width: 700px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .option-icon {
        font-size: 2rem;
    }
    
    .option-header h3 {
        font-size: 1.125rem;
    }
    
    .registration-card {
        padding: 1.5rem;
    }
    
    .registration-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .btn-submit {
        font-size: 1.125rem;
        padding: 0.875rem 2rem;
    }
    
    .registration-guarantees {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .email-capture-section,
    footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    body {
        font-size: 12pt;
    }
}
