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

/* Fallback font metrics to prevent CLS */
@font-face {
    font-family: 'Inter Fallback';
    src: local('Arial');
    size-adjust: 106.5%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Libre Baskerville Fallback';
    src: local('Times New Roman');
    size-adjust: 97%;
    ascent-override: 92%;
    descent-override: 28%;
    line-gap-override: 0%;
}

:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary-color: #ffa000;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', 'Libre Baskerville Fallback', serif;
    line-height: 1.3;
    font-weight: 700;
}

/* Sticky Header */
.sticky-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: top 0.3s ease-in-out;
}

.sticky-header.visible {
    top: 0;
}

.sticky-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-logo {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.sticky-phone {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.sticky-phone:hover {
    opacity: 0.9;
}

/* Utility: nur auf Mobilgeräten sichtbar */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline;
    }
}

@media (max-width: 768px) {
    .sticky-logo {
        font-size: 1.2rem;
    }
    
    .sticky-phone {
        font-size: 0.9rem;
    }
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    aspect-ratio: 300 / 100;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    min-height: 1.76rem;
}

.emergency-call {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.emergency-call p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.phone-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Libre Baskerville', 'Libre Baskerville Fallback', serif;
    letter-spacing: 0.05em;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(255, 160, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover, .cta-button:active {
    background: #ff8f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 160, 0, 0.4);
}

.cta-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-actions .cta-button {
    margin-top: 1rem;
}

/* Services Section */
.section {
    padding: 3rem 1.5rem;
    content-visibility: auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.feature-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature-item::before {
    content: '✓';
    background: var(--primary-color);
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item strong {
    color: var(--text-dark);
}

/* Coverage Section */
.coverage {
    background: var(--bg-white);
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.coverage-tag {
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    color: var(--text-white);
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 2rem auto 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-weight: 400;
}

.info-item a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

/* Impressum Section */
.impressum {
    background: var(--bg-white);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.impressum-image {
    margin: 2rem 0;
    text-align: center;
}

.impressum-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.impressum-text {
    line-height: 1.8;
    color: var(--text-dark);
}

.impressum-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.impressum-text p {
    margin-bottom: 0.5rem;
}

/* Datenschutz Section */
.datenschutz {
    background: var(--bg-light);
}

.datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
}

.datenschutz-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.datenschutz-content p,
.datenschutz-content ul {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.datenschutz-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.datenschutz-content ul {
    padding-left: 1.5rem;
}

.datenschutz-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Kosten / Pricing Section */
.kosten {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pricing-row:nth-child(even) {
    background: var(--bg-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pricing-service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-price {
    font-family: 'Libre Baskerville', 'Libre Baskerville Fallback', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 480px) {
    .logo-image {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 2rem;
    }
    
    .logo {
        font-size: 4rem;
    }
    
    .logo-image {
        max-width: 400px;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kosten Page Specific Styles */
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-box {
    margin-top: 2rem;
}

.section-alt {
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* Pricing Table */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pricing-header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: var(--text-white);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem;
}

.price-highlight {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%) !important;
    border-left-color: #ff6600 !important;
    border-left-width: 4px;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

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

/* Reference Gallery */
.reference-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reference-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.reference-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: var(--bg-white);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Info Box */
.info-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-top: 4px solid #ff6600;
}

.info-box h3 {
    color: #ff6600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
}

.info-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.info-box p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .info-box {
        padding: 2rem;
    }
    
    .info-box h3 {
        font-size: 1.3rem;
    }
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #ff6600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Savings Tips Cards */
.savings-container {
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.savings-title {
    color: #059669;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .savings-container {
        padding: 2.5rem;
    }
    
    .savings-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.savings-grid {
    display: grid;
    gap: 1.5rem;
}

.saving-tip {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.saving-tip-title {
    color: #059669;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.saving-tip-text {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.saving-tip-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
    border-left-color: #f59e0b;
}

.saving-tip-highlight .saving-tip-title {
    color: #d97706;
}

/* Factor Cards */
.factors-container {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.factors-title {
    color: #ff6600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .factors-container {
        padding: 2.5rem;
    }
    
    .factors-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

.factors-grid {
    display: grid;
    gap: 1.2rem;
}

.factor-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #ff6600;
}

.factor-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.factor-label {
    color: #ff6600;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: var(--text-white);
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.cta-section::after {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-features {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.cta-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-feature-text {
    font-weight: bold;
    font-size: 1rem;
}

.cta-button-white {
    display: inline-block;
    background: var(--bg-white);
    color: #ff6600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.cta-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-footer-icon {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-icon-large {
        font-size: 4rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-feature-text {
        font-size: 1.1rem;
    }
    
    .cta-button-white {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
    }
    
    .cta-footer {
        font-size: 1.1rem;
        gap: 2rem;
    }
    
    .cta-footer-icon {
        font-size: 1.5rem;
    }
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #0066cc;
    margin: 2rem auto;
    max-width: 900px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-label {
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 700;
}

.warning-box {
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warning-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.warning-label {
    color: #d97706;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Centered Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Tablet */
@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-button-white {
        font-size: 1.5rem;
    }
    
    .pricing-table {
        max-width: 900px;
    }
}

/* Responsive Desktop */
@media (min-width: 1024px) {
    .savings-container {
        padding: 3rem;
    }
    
    .factors-container {
        padding: 3rem;
    }
    
    /* 3 columns for feature cards on desktop */
    .section-alt .comparison-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reference-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Accessibility */
.cta-button:focus,
.phone-number:focus,
.info-item a:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 4px;
}

/* Reduced motion for better CLS */
@media (prefers-reduced-motion: no-preference) {
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .service-card,
    .feature-item,
    .coverage-tag {
        animation: fadeInUp 0.4s ease-out backwards;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.1s; }
    .service-card:nth-child(3) { animation-delay: 0.15s; }
    .service-card:nth-child(4) { animation-delay: 0.2s; }
    .service-card:nth-child(5) { animation-delay: 0.25s; }
    .service-card:nth-child(6) { animation-delay: 0.3s; }
}
