/* ============================================
   Stromsparen24 - Page Templates CSS
   Über Uns, FAQ, Kontakt, Legal Pages
   ============================================ */

/* ============================================
   Page Hero Section
   ============================================ */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 50%, var(--white) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   About Page - Über Uns
   ============================================ */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: var(--bg-secondary);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-intro-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon-card {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
    text-align: center;
}

.about-icon-card svg {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    color: var(--primary);
}

.about-icon-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-icon-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Facts / Numbers */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.fact-item {
    padding: 32px 16px;
}

.fact-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.fact-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Company Info Card */
.company-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 48px auto 0;
}

.company-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.company-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.company-detail:last-child {
    border-bottom: none;
}

.company-detail svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.company-detail strong {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.company-detail span,
.company-detail a {
    font-size: 15px;
    color: var(--text-primary);
}

.company-detail a:hover {
    color: var(--primary);
}

/* ============================================
   FAQ Page (Standalone)
   ============================================ */
.faq-page-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-medium);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* FAQ page layout & category titles */
.faq-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #DBEAFE;
    margin-bottom: 1rem;
}

/* FAQ answer lists — consistent with site font/color */
.faq-answer ul {
    list-style: disc;
    margin: 0 0 0.75rem 1.5rem;
    padding: 0;
}

.faq-answer ul li {
    margin-bottom: 0.35rem;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-footer-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   Contact Page (Standalone)
   ============================================ */
.contact-page-section {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-info-card:hover {
    background: var(--primary-light);
}

.contact-info-card svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info-card span,
.contact-info-card a {
    font-size: 14px;
    color: #1f2937;
}

.contact-info-card a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: #0052CC;
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.business-hours h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.hours-row strong {
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 14px 16px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: #111827;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
    border-color: #CBD5E1;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #9CA3AF;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.contact-form .btn-block {
    width: 100%;
    justify-content: center;
}

/* Form success/error messages */
.form-message {
    grid-column: 1 / -1;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-message--success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-message--error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ============================================
   Legal Pages (Impressum, Datenschutz, AGB, Widerruf)
   ============================================ */
.legal-page {
    padding: 60px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin: 12px 0 20px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content .legal-info-box {
    background: var(--primary-light);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}

.legal-content .legal-info-box p {
    margin-bottom: 4px;
    color: var(--text-primary);
}

.legal-content .legal-info-box p:last-child {
    margin-bottom: 0;
}

/* Legal Last Updated */
.legal-updated {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   CTA Section (used across pages)
   ============================================ */
.page-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a365d 100%);
    text-align: center;
    color: var(--white);
}

.page-cta h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta p {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.page-cta .btn-primary {
    padding: 16px 32px;
    font-size: 16px;
}

.page-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Warranty / Garantie Page
   ============================================ */
.warranty-section {
    padding: 60px 0 80px;
}

.warranty-content {
    max-width: 900px;
    margin: 0 auto;
}

.warranty-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.warranty-content h2:first-of-type {
    margin-top: 0;
}

.warranty-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.warranty-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 8px;
}

.warranty-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Intro */
.warranty-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* Benefits Grid */
.warranty-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.warranty-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.warranty-benefit-card:hover {
    background: var(--primary-light);
}

.warranty-benefit-card svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.warranty-benefit-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.warranty-benefit-card span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Color Grid */
.warranty-color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.warranty-color-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.warranty-color-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.warranty-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--border-light), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.warranty-color-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-primary);
}

.warranty-color-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Note Box */
.warranty-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--primary-50);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 10px;
    margin: 16px 0;
}

.warranty-note svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}

.warranty-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.warranty-note a {
    color: var(--primary);
    font-weight: 600;
}

.warranty-note a:hover {
    text-decoration: underline;
}

/* Specs Table */
.specs-table {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.specs-row {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-row:nth-child(even) {
    background: var(--bg-secondary);
}

.specs-row--highlight {
    background: var(--primary-light) !important;
}

.specs-row--highlight .specs-value {
    color: var(--primary);
    font-weight: 700;
}

.specs-label {
    flex: 0 0 45%;
    font-weight: 600;
    color: var(--text-primary);
}

.specs-value {
    flex: 1;
    color: var(--text-secondary);
}

.specs-contact {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.specs-contact a {
    color: var(--primary);
    font-weight: 600;
}

.specs-contact a:hover {
    text-decoration: underline;
}

/* Delivery Items */
.delivery-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.delivery-item svg {
    flex-shrink: 0;
    color: #10B981;
}

/* Warranty Terms */
.warranty-terms {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid var(--border-light);
}

.warranty-term-block {
    margin-bottom: 32px;
}

.warranty-term-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Highlight Box */
.warranty-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #EEF6FF 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.15);
}

.warranty-highlight-box svg {
    flex-shrink: 0;
    color: var(--primary);
}

.warranty-highlight-box p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Covered/Excluded Lists */
.warranty-covered-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}

.warranty-covered-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
}

.warranty-covered-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.warranty-covered-item--yes {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.warranty-covered-item--yes svg {
    color: #10B981;
}

.warranty-covered-item--no {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.warranty-covered-item--no svg {
    color: #EF4444;
}

.warranty-covered-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.warranty-covered-item span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Warranty List */
.warranty-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.warranty-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.warranty-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* PV Module Guarantee Cards */
.warranty-pv-guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.warranty-pv-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.warranty-pv-card--highlight {
    background: var(--primary-light);
    border-color: rgba(0, 102, 255, 0.2);
}

.warranty-pv-years {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
}

.warranty-pv-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.warranty-pv-card span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Disclaimer */
.warranty-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    margin-top: 32px;
}

.warranty-disclaimer svg {
    flex-shrink: 0;
    color: var(--text-muted);
    margin-top: 1px;
}

.warranty-disclaimer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   Responsive - Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-text {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .warranty-color-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warranty-pv-guarantees {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Responsive - Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 15px;
    }

    .about-section {
        padding: 48px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .fact-number {
        font-size: 36px;
    }

    .company-card {
        padding: 24px;
        margin-top: 32px;
    }

    /* FAQ */
    .faq-page-section {
        padding: 48px 0;
    }

    .faq-categories {
        gap: 8px;
        margin-bottom: 32px;
    }

    .faq-category-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    /* Contact */
    .contact-page-section {
        padding: 48px 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .business-hours {
        padding: 20px;
    }

    /* Legal pages */
    .legal-page {
        padding: 32px 0 48px;
    }

    .legal-content {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        margin-top: 32px;
    }

    .legal-content h3 {
        font-size: 1rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    /* CTA */
    .page-cta {
        padding: 48px 0;
    }

    .page-cta h2 {
        font-size: 1.3rem;
    }

    .page-cta p {
        font-size: 15px;
    }

    /* Warranty */
    .warranty-section {
        padding: 32px 0 48px;
    }

    .warranty-benefits-grid {
        grid-template-columns: 1fr;
    }

    .warranty-color-grid {
        grid-template-columns: 1fr 1fr;
    }

    .warranty-content h2 {
        font-size: 1.25rem;
        margin-top: 32px;
    }

    .specs-row {
        flex-direction: column;
        gap: 4px;
    }

    .specs-label {
        flex: none;
        font-size: 13px;
    }

    .specs-value {
        font-size: 13px;
    }

    .warranty-pv-years {
        font-size: 28px;
    }

    .warranty-pv-card {
        padding: 16px;
    }

    .page-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   Responsive - Small Phone (480px)
   ============================================ */
@media (max-width: 480px) {
    .page-hero {
        padding: 48px 0 32px;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact-number {
        font-size: 32px;
    }

    .fact-label {
        font-size: 12px;
    }

    .about-icon-card {
        padding: 32px 24px;
    }

    .contact-form-wrapper {
        padding: 16px;
    }

    .legal-content {
        padding: 20px 16px;
    }

    .warranty-color-grid {
        grid-template-columns: 1fr;
    }

    .warranty-benefit-card {
        padding: 12px;
    }

    .warranty-lead {
        padding: 16px;
        font-size: 15px;
    }

    .warranty-highlight-box {
        padding: 16px;
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   Success Modal (Kontakt page)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.active {
    display: flex;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.modal-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.modal-icon svg {
    width: 32px;
    height: 32px;
    color: #0066FF;
}
.modal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.modal-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}
