/* ========================================
   Festgelde.com - Modern & Trustworthy Design
   Colors: Blue (#1e40af, #3b82f6) & Green (#059669, #10b981)
   ======================================== */

:root {
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e3a8a;
    --secondary-green: #059669;
    --secondary-green-light: #10b981;
    --accent-gold: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-divider {
    opacity: 0.3;
}

.top-bar-text {
    opacity: 0.9;
    margin-right: 0.5rem;
}

.social-icon {
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-primary-small {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px); /* Responsive height calculation (minus header) */
    min-height: 500px;
    max-height: none; /* Remove max height for full responsiveness */
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    color: white;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-highlight {
    color: #fde047;
    text-shadow: 0 2px 10px rgba(253, 224, 71, 0.5);
}

.slide-description {
    font-size: 1.375rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.75rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.btn-hero {
    background: white;
    color: var(--primary-blue);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #fde047;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1100px; /* Wider modal */
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
    position: relative;
    display: grid;
    grid-template-columns: 1fr; /* Single column by default */
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-content {
    grid-template-columns: 45% 55%; /* Two column layout */
}

.modal-left {
    background: var(--primary-blue);
    border-radius: 20px 0 0 20px;
}

.modal-image {
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 3rem;
    border-radius: 20px 0 0 20px;
}

.modal-image-content {
    color: white;
}

.modal-image-content h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.modal-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.modal-benefits svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.modal-benefits span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.trust-badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.trust-badge-text {
    font-size: 0.8rem;
    opacity: 0.95;
    line-height: 1.3;
}

.modal-right {
    background: white;
    border-radius: 0 20px 20px 0;
}

.modal-header {
    background: white;
    color: var(--text-dark);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 0 20px 0 0;
    text-align: left;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    line-height: 1.3;
    word-wrap: break-word;
}

.modal-header p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.modal-content .contact-form {
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.modal-content .form-success {
    padding: 3rem 2.5rem;
}

/* Slider Responsive */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 2.75rem;
    }
    
    .slide-description {
        font-size: 1.125rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-box {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header {
        padding: 2rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Legacy button styles - keeping for other sections */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.25rem 2.5rem;
}

/* ========================================
   TRUST BANNER
   ======================================== */

.trust-banner {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.trust-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   VORTEILE SECTION
   ======================================== */

.section-vorteile {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vorteil-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

.vorteil-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.vorteil-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vorteil-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vorteil-card:hover .vorteil-image {
    transform: scale(1.1);
}

.vorteil-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding: 1.5rem 2rem 0 2rem;
}

.vorteil-card p {
    color: var(--text-gray);
    line-height: 1.7;
    padding: 0 2rem 2rem 2rem;
}

/* ========================================
   BANKEN SECTION
   ======================================== */

.section-banken {
    padding: 5rem 0;
    background: var(--bg-light);
}

.banken-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bank-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.bank-card.featured {
    border-color: var(--accent-gold);
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.bank-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bank-logo {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.bank-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.bank-location {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.bank-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.bank-badge {
    background: #dbeafe;
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bank-description {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========================================
   ZINSEN SECTION
   ======================================== */

.section-zinsen {
    padding: 5rem 0;
    background: white;
}

.zinsen-table {
    background: white;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    background: var(--primary-blue);
    color: white;
    padding: 1.25rem 2rem;
    font-weight: 700;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: background 0.3s ease;
}

.table-row:hover {
    background: var(--bg-light);
}

.table-row.popular {
    background: #fef3c7;
    border-left: 4px solid var(--accent-gold);
}

.table-cell {
    display: flex;
    flex-direction: column;
}

.table-cell small {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.highlight-rate {
    justify-content: center;
}

.rate-big {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-green);
}

.btn-table {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-table:hover {
    background: var(--primary-blue-dark);
    transform: scale(1.05);
}

.section-cta .btn-primary {
    border: none;
    cursor: pointer;
}

.zinsen-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef3c7;
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.zinsen-note p {
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.section-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 0.95rem;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta-box .btn-primary:hover {
    background: var(--bg-light);
}

/* ========================================
   FESTGELD PREVIEW
   ======================================== */

.section-festgeld-preview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.festgeld-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.festgeld-preview-grid h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.festgeld-preview-grid p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.festgeld-preview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.festgeld-preview-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.festgeld-preview-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.festgeld-preview-cta small {
    display: block;
    margin-top: 1rem;
    color: var(--text-gray);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.section-testimonials {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
}

.testimonial-quote::before {
    content: "“";
    font-size: 3rem;
    color: var(--primary-blue-light);
    position: absolute;
    top: -30px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* ========================================
   FORM SECTION
   ======================================== */

.section-form {
    padding: 5rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit {
    margin-top: 1rem;
    position: relative;
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-top: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
}

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

.form-success h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.section-faq {
    padding: 5rem 0;
    background: white;
}

.section-header-with-image {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-image {
    position: relative;
}

.faq-senior-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-blue);
}

.section-header-with-image .section-header {
    text-align: left;
    margin-bottom: 0;
}

.section-header-with-image .section-header p {
    margin-top: 1rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.1);
    transform: translateX(4px);
}

.faq-item.active {
    background: linear-gradient(to right, rgba(239, 246, 255, 0.6), white);
    border-color: var(--primary-blue-light);
}

.faq-number {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.15;
    line-height: 1;
}

.faq-question {
    padding: 2rem 2rem 2rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    padding-right: 2rem;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-blue);
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon-toggle {
    background: var(--primary-blue);
}

.faq-item:hover .faq-icon-toggle svg {
    stroke: white;
}

.faq-icon-toggle svg {
    stroke: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-icon-open {
    display: none;
}

.faq-item.active .faq-icon-closed {
    display: none;
}

.faq-item.active .faq-icon-open {
    display: block;
}

.faq-item.active .faq-icon-toggle {
    background: var(--primary-blue);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-toggle svg {
    stroke: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 2rem 2rem 5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-trust span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-blue-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    line-height: 1.6;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    z-index: 999;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.scroll-top-btn {
    position: static;
    bottom: auto;
    right: auto;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-5px);
}

/* ========================================
   MOBILE STICKY FOOTER
   ======================================== */

.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 0.75rem;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: var(--secondary-green);
    color: white;
    padding: 0.875rem 0.375rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.mobile-phone-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mobile-phone-btn span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.mobile-phone-btn:hover {
    background: var(--secondary-green-light);
    transform: translateY(-2px);
}

.mobile-cta-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 16px rgba(30, 64, 175, 0.3);
    }
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

/* ========================================
   FESTGELD KATEGORIE
   ======================================== */

.festgeld-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(16, 185, 129, 0.08));
}

.festgeld-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
}

.hero-copy h1 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-copy p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.hero-points {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 240px;
}

.hotline-link {
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.trust-metrics {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.trust-metric {
    background: white;
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-md);
}

.trust-metric strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-blue-dark);
}

.trust-metric span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-inline-visual {
    position: relative;
    margin: 1rem 0;
}

.hero-inline-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    min-height: 380px;
}

.hero-inline-visual .hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    backdrop-filter: blur(6px);
}

.festgeld-section {
    padding: 4rem 0;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-gray);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.benefit-badge {
    display: inline-flex;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-sm);
}

.process-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

.festgeld-proof {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.proof-panel {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.proof-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-dark);
}

.proof-list strong {
    color: var(--primary-blue);
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-md);
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-card strong {
    color: var(--text-dark);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insight-tags span {
    background: var(--bg-light);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.btn-outline {
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.festgeld-cta {
    padding: 4rem 0 5rem;
}

.cta-panel {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(16, 185, 129, 0.95));
    border-radius: 28px;
    color: white;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.cta-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 2.3rem;
    }

    .cta-panel {
        flex-direction: column;
    }

    .hero-highlights {
        flex-direction: column;
    }

    .hero-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .banken-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 16px;
        bottom: 110px;
    }

    .whatsapp-btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    /* Show mobile sticky footer */
    .mobile-sticky-footer {
        display: grid;
    }
    
    /* Adjust scroll button position */
    .scroll-top-btn {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    /* Add padding bottom to body for sticky footer */
    body {
        padding-bottom: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-image {
        height: 55px;
    }
    
    /* Improved mobile menu */
    .mobile-menu {
        background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
        padding: 1.5rem 1rem;
        gap: 0.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--primary-blue);
    }
    
    .mobile-menu a {
        padding: 1rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-dark);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .mobile-menu a:hover {
        background: white;
        border-left-color: var(--primary-blue);
        transform: translateX(5px);
    }
    
    .mobile-menu .btn-primary {
        margin-top: 0.5rem;
        text-align: center;
        color: white !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .banken-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    /* Compact mobile footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
    }
    
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    
    .footer-trust {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-header-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-senior-image {
        height: 250px;
    }
    
    .faq-number {
        font-size: 2rem;
        left: 1rem;
        top: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 4rem;
        font-size: 0.95rem;
    }
    
    .faq-icon-toggle {
        width: 36px;
        height: 36px;
    }
    
    /* Mobile modal - Image-first design */
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .modal-left {
        display: block;
        order: -1;
    }
    
    .modal-image {
        min-height: 250px;
        padding: 2rem 1.5rem;
        border-radius: 20px 20px 0 0;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(59, 130, 246, 0.9)), 
                    url('images/modal-mobile.html') center/cover !important;
    }
    
    .modal-image-content h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .modal-benefits {
        margin-bottom: 1.5rem;
    }
    
    .modal-benefits li {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }
    
    .modal-trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .trust-badge {
        padding: 1rem 0.75rem;
    }
    
    .trust-badge-number {
        font-size: 1.5rem;
    }
    
    .trust-badge-text {
        font-size: 0.75rem;
    }
    
    .modal-right {
        border-radius: 0 0 20px 20px;
    }
    
    .modal-header {
        padding: 1.5rem;
        border-radius: 0;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-header p {
        font-size: 0.875rem;
    }
    
    .modal-content .contact-form {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-blue);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .faq-number {
        font-size: 1.5rem;
        left: 0.75rem;
        top: 1.25rem;
    }
    
    .faq-question {
        padding: 1.25rem 1rem 1.25rem 3rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1.25rem 3rem;
        font-size: 0.875rem;
    }
    
    .faq-icon-toggle {
        width: 32px;
        height: 32px;
    }
}

