.consult-container {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block-start: 4rem;
    padding-block-end: 8rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

/* Typo Base */
.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground, #111827);
}

@media (min-width: 768px) {
    .hero-title { font-size: 3.5rem; }
}

.hero-title span.highlight {
    background: linear-gradient(135deg, var(--color-primary, #10b981) 0%, var(--primary, #00724f) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--muted-foreground, #6b7280);
    max-width: 65ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-highlights {
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--foreground, #111827);
}
.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-highlights li::before {
    content: '★';
    color: var(--color-primary, #10b981);
}

/* Section Typo */
.section-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--foreground, #111827);
    margin-block-end: 1rem;
    position: relative;
    display: inline-block;
}

.section-title.text-primary { color: var(--primary, #00724f); }

.section-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted-foreground, #6b7280);
    max-width: 70ch;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary, #00724f);
    border-radius: 4px;
    width: 3rem;
    transition: width 0.3s ease;
}

html[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

.consult-pre-call:hover .section-title::after,
.consult-tracks:hover .section-title::after,
.consult-checklist:hover .section-title::after,
.consult-cta:hover .section-title::after { width: 6rem; }

/* Grids & Cards */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.call-card, .track-card {
    background-color: var(--card, #ffffff);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid var(--border, #e5e7eb);
}

.call-card:hover, .track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: var(--primary, #00724f);
}

.numbered-list, .check-list {
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-block-start: 1.5rem;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.numbered-list .num {
    background: var(--primary, #00724f);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.numbered-list .text, .check-list li {
    font-size: 1.0625rem;
    color: var(--muted-foreground, #4b5563);
    line-height: 1.5;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.check-list li::before {
    content: '✓';
    color: var(--color-primary, #10b981);
    font-weight: bold;
}

/* Tracks */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #00724f);
    margin-block-end: 0.75rem;
}

.track-desc {
    font-size: 1rem;
    color: var(--muted-foreground, #6b7280);
    margin-block-end: 1.5rem;
    min-height: 3rem;
}

.track-benefits {
    border-block-start: 1px solid var(--border, #e5e7eb);
    padding-block-start: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--foreground, #111827);
}
.track-benefits p {
    display: flex;
    gap: 0.5rem;
}
.track-benefits p::before {
    content: '→';
    color: var(--primary, #00724f);
}
html[dir="rtl"] .track-benefits p::before {
    content: '←';
}

/* Checklist Glassmorphism */
.exclusions-glassmorphism {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.8);
}
html.dark .exclusions-glassmorphism {
    background-color: rgba(17, 24, 39, 0.8);
    border-color: rgba(55, 65, 81, 0.8);
}

.checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    background: var(--background, #f9fafb);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-inline-start: 4px solid var(--color-primary, #10b981);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 1rem;
    color: var(--foreground, #111827);
    font-weight: 500;
}

.glossary-box {
    background: var(--background, #f3f4f6);
    padding: 2rem;
    border-radius: 1rem;
}
.glossary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-block-end: 1rem;
}
.glossary-list dt {
    font-weight: 700;
    color: var(--primary, #00724f);
    margin-block-start: 0.75rem;
}
.glossary-list dd {
    margin-inline-start: 0;
    color: var(--muted-foreground, #4b5563);
    margin-block-end: 0.75rem;
}

/* CTA */
.after-warranty-card {
    background: linear-gradient(135deg, var(--card, #fff) 0%, var(--background, #f9fafb) 100%);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fact-box {
    background: rgba(0, 114, 79, 0.05);
    border: 1px solid rgba(0, 114, 79, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: var(--foreground, #374151);
}

.after-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.contrast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border, #d1d5db);
    background: var(--card, #ffffff);
    color: var(--foreground, #111827);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.contrast-btn:hover {
    background: var(--foreground, #111827);
    border-color: var(--foreground, #111827);
    color: var(--card, #fff);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: #fff;
    background: var(--primary, #00724f);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 114, 79, 0.3), 0 2px 4px -2px rgba(0, 114, 79, 0.3);
    animation: pulseGlow 3s infinite ease-out;
}
.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 114, 79, 0.4), 0 4px 6px -4px rgba(0, 114, 79, 0.4);
    animation: none;
    background: #006042;
}

/* Utilities */
.text-center { text-align: center; }
.text-start { text-align: start; }
.mb-4 { margin-block-end: 1rem; }
.mb-8 { margin-block-end: 2rem; }
.mb-12 { margin-block-end: 3rem; }
.mt-4 { margin-block-start: 1rem; }
.mt-6 { margin-block-start: 1.5rem; }
.mt-8 { margin-block-start: 2rem; }
.mt-12 { margin-block-start: 3rem; }
.mx-auto { margin-inline: auto; }
.justify-center { justify-content: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.border-t { border-block-start: 1px solid var(--border, #e5e7eb); }
.pt-8 { padding-block-start: 2rem; }
.text-sm { font-size: 0.875rem; }
