.warranty-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;
}

/* Base Typo Classes & Utilities */
@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; }

/* Hero Section */
.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--foreground, #111827);
    margin-block-end: 1.25rem;
}

@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;
    margin-block-start: 2.5rem;
    flex-wrap: wrap;
}

/* Sections Base */
.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-desc {
    font-size: 1.125rem;
    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;
}

.warranty-coverage:hover .section-title::after,
.warranty-timeline:hover .section-title::after,
.warranty-exclusions:hover .section-title::after,
.warranty-flow:hover .section-title::after {
    width: 6rem;
}

/* Coverage Grid */
.coverage-grid, .timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-block-start: 2rem;
}

.coverage-card, .timeline-card {
    background-color: var(--card, #ffffff);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    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);
    position: relative;
    overflow: hidden;
}

.coverage-card::before, .timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 4px;
    background: var(--primary, #00724f);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.coverage-card:hover::before, .timeline-card:hover::before {
    transform: scaleY(1);
}

.coverage-card:hover, .timeline-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);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground, #111827);
    margin-block-end: 0.75rem;
    transition: color 0.3s ease;
}

.coverage-card:hover .card-title, .timeline-card:hover .card-title {
    color: var(--primary, #00724f);
}

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

.coverage-list {
    margin-block-start: 1rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid var(--border, #e5e7eb);
    font-size: 0.875rem;
    color: var(--muted-foreground, #6b7280);
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.coverage-list li::before {
    content: '✓';
    color: var(--color-primary, #10b981);
    font-weight: bold;
}

/* Exclusions 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(239, 68, 68, 0.3); /* Slight red hint */
}

html.dark .exclusions-glassmorphism {
    background-color: rgba(17, 24, 39, 0.8);
}

.text-destructive {
    color: var(--destructive, #ef4444);
}
.text-destructive::after {
    background: var(--destructive, #ef4444);
}

.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.exclusion-item {
    background: var(--background, #f9fafb);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-inline-start: 4px solid var(--destructive, #ef4444);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.exclusion-item:hover {
    transform: translateX(4px);
}
html[dir="rtl"] .exclusion-item:hover {
    transform: translateX(-4px);
}

.exclusion-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground, #111827);
    margin-block-end: 0.5rem;
}

.exclusion-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--muted-foreground, #6b7280);
}

/* Resolution Flow Timeline Engine */
.flow-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-block-start: 2rem;
}

@media (min-width: 1024px) {
    .flow-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2.5rem;
    }
    
    .flow-timeline::before {
        content: '';
        position: absolute;
        top: 24px;
        inset-inline-start: 40px;
        inset-inline-end: 30%;
        height: 2px;
        background: var(--border, #e5e7eb);
        z-index: 0;
    }
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    background: transparent;
    transition: all 0.3s ease;
    flex: 1 1 250px;
}

.flow-step:hover .flow-number {
    background-color: var(--primary, #00724f);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 114, 79, 0.4);
}

.flow-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary, #00724f);
    background-color: var(--background, #fff);
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    flex-shrink: 0;
    border: 2px solid var(--primary, #00724f);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-content {
    background: var(--card, #fff);
    border: 1px solid var(--border, #e5e7eb);
    padding: 1.5rem;
    border-radius: 0.75rem;
    flex-grow: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-step:hover .flow-content {
    border-color: var(--primary, #00724f);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground, #111827);
    margin-block-end: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted-foreground, #6b7280);
}

/* After Warranty Section */
.warranty-after {
    border-block-start: 1px solid var(--border, #e5e7eb);
    padding-block-start: 4rem;
}

.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);
}

.after-list {
    font-size: 1rem;
    color: var(--muted-foreground, #6b7280);
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.after-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.after-list li::before {
    content: '→';
    color: var(--primary, #00724f);
    font-weight: bold;
}
html[dir="rtl"] .after-list li::before {
    content: '←';
}

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

.engineering-summary .process-tagline {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary, #10b981);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.engineering-summary .process-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground, #111827);
    margin-block-start: 0.75rem;
}

.engineering-summary .process-main-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted-foreground, #6b7280);
    max-width: 65ch;
    margin-inline: auto;
    margin-block-start: 1rem;
}

/* Buttons Engine */
.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;
}
