:root {
    --header-offset: 76px;
    --primary-color: #0d3b66;
    --secondary-color: #28a745;
    --accent-color: #f4a261;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f8fc;
    scroll-padding-top: calc(var(--header-offset) + 24px);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.96) 0%, rgba(10, 46, 82, 0.96) 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.98) 0%, rgba(10, 46, 82, 0.98) 100%);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-logo {
    display: block;
    width: auto;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    color: white;
    line-height: 1;
    white-space: nowrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 8px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link:hover, .nav-link:focus {
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-cta:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: var(--header-offset);
    height: calc(100vh - var(--header-offset));
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

.hero-slider #heroCarousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(7, 31, 54, 0.74) 0%, rgba(13, 59, 102, 0.56) 55%, rgba(13, 59, 102, 0.42) 100%);
}

.hero-slider .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 12%;
    z-index: 2;
}

.hero-slider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #f6fbff;
    text-shadow: 0 4px 20px rgba(2, 18, 36, 0.72);
    animation: fadeInUp 1s ease;
}

.hero-slider .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e6f2ff;
    text-shadow: 0 2px 12px rgba(2, 18, 36, 0.68);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-slider .btn-hero-premium {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.9rem 2.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #19b8ec 0%, #2f8de7 52%, #5a6df5 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 28px rgba(28, 118, 212, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-slider .btn-hero-premium:hover,
.hero-slider .btn-hero-premium:focus {
    color: #ffffff;
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 18px 34px rgba(28, 118, 212, 0.43), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-slider .carousel-control-prev-icon, .hero-slider .carousel-control-next-icon {
    filter: invert(1);
    width: 30px;
    height: 30px;
}

.hero-slider .carousel-indicators [data-bs-target] {
    background-color: white;
    opacity: 0.7;
    width: 30px;
    height: 8px;
    border-radius: 4px;
    margin: 0 5px;
}

.hero-slider .carousel-indicators .active {
    opacity: 1;
    width: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    scroll-margin-top: calc(var(--header-offset) + 24px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Vorteile Section */
#vorteile {
    background: linear-gradient(180deg, #f5f9ff 0%, #eef4fb 100%);
}

.advantage-card {
    position: relative;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    padding: 2rem 1.4rem;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(7, 37, 67, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(13, 59, 102, 0.2), rgba(40, 167, 69, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(7, 37, 67, 0.14);
}

.advantage-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dbe7f6;
}

.advantage-media img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

#vorteile h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    min-height: 2.6rem;
    margin-bottom: 0.7rem;
}

#vorteile p {
    margin-bottom: 0;
    font-size: 0.96rem;
    color: #4b5d72;
}

.vorteil-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(145deg, rgba(13, 59, 102, 0.13), rgba(40, 167, 69, 0.14));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.advantage-card:hover .vorteil-icon {
    transform: scale(1.05);
}

/* Uber Uns Section */
.about-gallery {
    display: grid;
    gap: 14px;
}

.about-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px !important;
    transition: var(--transition);
}

.about-sub-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-sub-images img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px !important;
    transition: var(--transition);
}

.about-gallery img:hover {
    transform: scale(1.03);
}

.values ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Kreditrechner Section */
#kreditrechner {
    background: linear-gradient(180deg, #f2f7ff 0%, #e8f0fb 100%);
}

.simulator-shell {
    background: #ffffff;
    border: 1px solid #dce7f5;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 18px 42px rgba(8, 36, 66, 0.11);
}

.simulator-control-panel,
.simulator-result-panel {
    border-radius: 18px;
    height: 100%;
}

.simulator-control-panel {
    background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #e4edf8;
    padding: 1.35rem 1.2rem;
}

.simulator-field {
    margin-bottom: 1.25rem;
}

.simulator-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.55rem;
}

.simulator-value {
    font-weight: 700;
    color: #0d3b66;
    background: rgba(13, 59, 102, 0.08);
    border-radius: 999px;
    padding: 0.24rem 0.75rem;
    font-size: 0.95rem;
}

.simulator-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #5f7388;
}

#kreditrechner .form-range {
    height: 1.4rem;
}

#kreditrechner .form-range::-webkit-slider-runnable-track {
    height: 0.42rem;
    background: linear-gradient(90deg, #9cd2ff 0%, #2f8de7 100%);
    border-radius: 999px;
}

#kreditrechner .form-range::-webkit-slider-thumb {
    margin-top: -6px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #2f8de7;
    border-radius: 50%;
}

#kreditrechner .form-range::-moz-range-track {
    height: 0.42rem;
    background: linear-gradient(90deg, #9cd2ff 0%, #2f8de7 100%);
    border-radius: 999px;
}

#kreditrechner .form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #2f8de7;
    border-radius: 50%;
}

.simulator-result-panel {
    background: linear-gradient(145deg, #0f3f6d 0%, #1a5d94 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1.5rem 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.simulator-title {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.simulator-note {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1rem;
}

.simulator-result-list {
    display: grid;
    gap: 0.75rem;
}

.sim-result-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 0.75rem 0.9rem;
}

.sim-result-card span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.sim-result-card strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}

.btn-simulator-cta {
    background: linear-gradient(135deg, #ffd56f 0%, #ffb347 50%, #ff9a39 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #132846;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 14px 26px rgba(255, 166, 66, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-simulator-cta:hover,
.btn-simulator-cta:focus {
    color: #0f233e;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(255, 166, 66, 0.45);
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    border: 1px solid var(--light-gray);
    padding: 15px 20px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 59, 102, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d3b66'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d3b66'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Partner Section */
.partners-carousel {
    padding: 8px 44px 52px;
}

#partnersCarousel .carousel-indicators {
    bottom: 4px;
}

#partnersCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    margin: 0 6px;
}

#partnersCarousel .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.25);
}

#partnersCarousel .carousel-control-prev,
#partnersCarousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 48%;
    transform: translateY(-50%);
    background: rgba(13, 59, 102, 0.92);
    border-radius: 50%;
}

#partnersCarousel .carousel-control-prev {
    left: -4px;
}

#partnersCarousel .carousel-control-next {
    right: -4px;
}

#partnersCarousel .carousel-control-prev-icon,
#partnersCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.partner-logo {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid #dce7f5;
    border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(7, 37, 67, 0.09);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(7, 37, 67, 0.14);
    border-color: var(--primary-color);
}

.partner-logo-image {
    display: block;
    width: 100%;
    max-width: 210px;
    height: 60px;
    margin: 0 auto 0.55rem;
    object-fit: contain;
}

.bank-icon {
    color: var(--primary-color);
}

.bank-name {
    font-size: 1rem;
    color: var(--primary-color);
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
}

.bank-subtitle {
    font-size: 0.82rem;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-header h5 {
    font-weight: 600;
    color: var(--primary-color);
}

.location {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.rating i {
    font-size: 0.95rem;
}

.testimonial-body p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

#testimonialsCarousel {
    padding-bottom: 46px;
}

#testimonialsCarousel .carousel-indicators {
    bottom: 0;
}

#testimonialsCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: var(--primary-color);
    opacity: 0.35;
}

#testimonialsCarousel .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.25);
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 59, 102, 0.92);
    border-radius: 50%;
}

#testimonialsCarousel .carousel-control-prev {
    left: -8px;
}

#testimonialsCarousel .carousel-control-next {
    right: -8px;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter: none;
}

/* Form Section */
#kredit-formular {
    background: linear-gradient(180deg, #edf3fb 0%, #f9fbfe 100%);
}

.contact-side-panel {
    background: linear-gradient(145deg, #0d3b66 0%, #134d81 70%, #1d5f96 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 18px 40px rgba(7, 37, 67, 0.2);
}

.contact-side-panel h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
}

.contact-side-panel p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1.2rem;
}

.contact-points {
    margin-bottom: 1.4rem;
}

.contact-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.contact-points i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1rem;
}

.contact-points strong {
    display: block;
    font-size: 0.95rem;
}

.contact-points span {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
}

.contact-form-card {
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(7, 37, 67, 0.16) !important;
    border: 1px solid #dbe6f3 !important;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.form-control, .form-select {
    border: 1px solid var(--light-gray);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 59, 102, 0.25);
}

.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 0.95rem;
}

.form-check-label a {
    text-decoration: underline;
}

.form-note {
    background-color: #fff8e1;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.security-note p {
    background-color: rgba(40, 167, 69, 0.1);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2e52 100%);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 40px;
}

.footer-brand .footer-title {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-brand .footer-title::after {
    display: none;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links li:hover a {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
    display: inline-block;
}

.legal-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.seo-keyword-section {
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.seo-keyword-title {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
}

.seo-keyword-intro {
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.seo-keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.seo-keyword-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.77rem;
    line-height: 1.25;
}

/* Dedicated Subpages */
.subpage-main {
    min-height: calc(100vh - var(--header-offset));
}

.subpage-hero {
    position: relative;
    padding: calc(var(--header-offset) + 56px) 0 88px;
    color: #f8fcff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 31, 54, 0.82) 0%, rgba(10, 46, 82, 0.72) 56%, rgba(11, 79, 103, 0.66) 100%);
}

.subpage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(94, 200, 255, 0.24), transparent 40%),
        radial-gradient(circle at 86% 78%, rgba(116, 147, 255, 0.22), transparent 44%);
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
    max-width: 880px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subpage-hero-about {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-benefits {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-faq {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-testimonials {
    background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-partners {
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-impressum {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-datenschutz {
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-agb {
    background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-cookies {
    background-image: url('https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-widerruf {
    background-image: url('https://images.unsplash.com/photo-1450101215322-bf5cd27642fc?auto=format&fit=crop&w=1600&q=80');
}

.subpage-hero-thankyou {
    background-image: url('https://images.unsplash.com/photo-1553729459-efe14ef6055d?auto=format&fit=crop&w=1600&q=80');
}

.thankyou-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.thankyou-ambient span {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(113, 213, 255, 0.45) 0%, rgba(113, 213, 255, 0) 72%);
    animation: thankyouFloat 8s ease-in-out infinite;
}

.thankyou-ambient span:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 14%;
    left: 9%;
}

.thankyou-ambient span:nth-child(2) {
    width: 240px;
    height: 240px;
    bottom: 12%;
    right: 8%;
    animation-delay: 1.4s;
}

.thankyou-ambient span:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 26%;
    right: 28%;
    animation-delay: 2.3s;
}

.hero-kicker {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    color: #dff3ff;
    border: 1px solid rgba(224, 244, 255, 0.5);
    background: rgba(12, 51, 90, 0.38);
    margin: 0 auto 1rem;
    backdrop-filter: blur(4px);
    animation: heroContentReveal 0.75s ease both;
}

.subpage-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #f7fbff;
    text-shadow: 0 5px 22px rgba(2, 18, 36, 0.6);
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    animation: heroContentReveal 0.85s ease 0.1s both;
}

.subpage-hero p {
    font-size: 1.2rem;
    max-width: 760px;
    color: #e8f3ff;
    margin: 0 auto 2rem;
    text-align: center;
    animation: heroContentReveal 0.85s ease 0.22s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    align-items: center;
    animation: heroContentReveal 0.85s ease 0.34s both;
}

.subpage-hero .btn-hero-premium {
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: linear-gradient(135deg, #17b3e6 0%, #2f8de7 52%, #5a6df5 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 28px rgba(28, 118, 212, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    min-width: 220px;
}

.subpage-hero .btn-hero-premium:hover,
.subpage-hero .btn-hero-premium:focus {
    color: #ffffff;
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 18px 34px rgba(28, 118, 212, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.subpage-hero .btn-outline-light {
    border-width: 1.6px;
    border-radius: 999px;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    color: #f4f9ff;
    background: rgba(7, 34, 61, 0.3);
    border-color: rgba(226, 243, 255, 0.66);
    font-weight: 600;
    min-width: 220px;
    backdrop-filter: blur(4px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.subpage-hero .btn-outline-light:hover,
.subpage-hero .btn-outline-light:focus {
    color: #ffffff;
    transform: translateY(-3px);
    background: rgba(14, 58, 99, 0.55);
    border-color: rgba(239, 248, 255, 0.9);
    box-shadow: 0 15px 26px rgba(8, 42, 75, 0.34);
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-kicker,
    .subpage-hero h1,
    .subpage-hero p,
    .hero-actions {
        animation: none;
    }

    .thankyou-ambient span,
    .thankyou-card,
    .thankyou-check-ring,
    .thankyou-action-panel::before {
        animation: none !important;
    }
}

.subpage-section {
    padding: 5rem 0;
}

.insight-card {
    background: linear-gradient(165deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid #dce8f7;
    border-radius: 18px;
    padding: 1.6rem 1.2rem;
    box-shadow: 0 12px 24px rgba(12, 55, 98, 0.08);
    height: 100%;
}

.insight-card h3 {
    font-size: 2.1rem;
    color: #0d3b66;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.insight-card p {
    margin-bottom: 0;
    color: #4c5f75;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.72rem;
    color: #364f69;
}

.premium-list i {
    color: var(--secondary-color);
    margin-top: 0.15rem;
}

.premium-media-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #d5e5f7;
    box-shadow: 0 18px 32px rgba(13, 59, 102, 0.14);
}

.premium-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.timeline-card {
    background: #ffffff;
    border: 1px solid #d9e6f5;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 18px rgba(10, 50, 93, 0.08);
    height: 100%;
}

.timeline-card span {
    display: inline-block;
    background: #eaf3fe;
    color: #1d5d98;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.24rem 0.72rem;
    margin-bottom: 0.85rem;
}

.timeline-card h3 {
    font-size: 1.15rem;
    color: #123f6d;
    margin-bottom: 0.6rem;
}

.timeline-card p {
    margin-bottom: 0;
    color: #54687d;
}

.feature-grid-card {
    height: 100%;
    background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #dbe7f4;
    border-radius: 18px;
    padding: 1.6rem 1.35rem;
    box-shadow: 0 10px 21px rgba(11, 54, 98, 0.08);
}

.feature-grid-card i {
    font-size: 2rem;
    color: #1368b3;
    margin-bottom: 0.7rem;
    display: inline-block;
}

.feature-grid-card h3 {
    font-size: 1.2rem;
    color: #163f67;
    margin-bottom: 0.55rem;
}

.feature-grid-card p {
    margin-bottom: 0;
    color: #546a82;
}

.process-step {
    height: 100%;
    background: #ffffff;
    border: 1px solid #d9e6f6;
    border-radius: 16px;
    padding: 1.3rem;
    box-shadow: 0 10px 20px rgba(11, 54, 98, 0.08);
}

.process-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b4f8a;
    background: #eaf4ff;
    margin-bottom: 0.8rem;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #1d3e63;
    margin-bottom: 0.55rem;
}

.process-step p {
    margin-bottom: 0;
    color: #556c83;
}

.faq-sidebar {
    background: linear-gradient(180deg, #0f3e6b 0%, #0d3358 100%);
    border-radius: 16px;
    padding: 1.4rem;
    color: #f2f9ff;
    position: sticky;
    top: 110px;
}

.faq-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.faq-sidebar li + li {
    margin-top: 0.5rem;
}

.faq-sidebar a {
    color: rgba(240, 248, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
}

.faq-sidebar a:hover {
    color: #ffffff;
}

.faq-shell {
    background: #ffffff;
    border: 1px solid #dbe8f8;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 20px rgba(14, 56, 97, 0.08);
}

.faq-shell h2 {
    font-size: 1.2rem;
    color: #143f66;
    margin-bottom: 0.95rem;
}

.rating-badge {
    background: linear-gradient(160deg, #ffffff 0%, #f2f8ff 100%);
    border: 1px solid #dce8f7;
    border-radius: 18px;
    padding: 1.4rem;
    height: 100%;
    box-shadow: 0 11px 20px rgba(10, 50, 93, 0.08);
}

.rating-badge h3 {
    font-size: 2rem;
    color: #0f4b82;
    margin-bottom: 0.45rem;
}

.rating-badge p {
    margin-bottom: 0;
    color: #566b81;
}

.quote-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #d8e6f4;
    border-radius: 16px;
    padding: 1.3rem;
    box-shadow: 0 10px 20px rgba(11, 56, 100, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.quote-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 7px 16px rgba(11, 56, 100, 0.18);
}

.quote-meta {
    min-width: 0;
}

.quote-stars {
    display: flex;
    gap: 0.16rem;
    color: #ffb340;
    font-size: 0.9rem;
    line-height: 1;
}

.quote-card p {
    color: #52667c;
    margin-bottom: 0;
    font-style: italic;
}

.quote-meta h4 {
    margin-bottom: 0.38rem;
    font-size: 1rem;
    color: #123f69;
}

.partner-tier-card {
    height: 100%;
    background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #dbe7f5;
    border-radius: 17px;
    padding: 1.4rem;
    box-shadow: 0 10px 20px rgba(13, 57, 100, 0.08);
}

.partner-tier-card h3 {
    font-size: 1.2rem;
    color: #16406a;
}

.partner-tier-card p {
    color: #52667d;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
}

.logo-chip {
    min-height: 84px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d8e6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2b4f73;
    box-shadow: 0 10px 18px rgba(11, 57, 102, 0.08);
}

.cta-banner {
    border: 1px solid #d8e6f8;
    border-radius: 20px;
    padding: 1.7rem;
    background: linear-gradient(130deg, #f5f9ff 0%, #eef6ff 44%, #e6f2ff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.cta-banner h2 {
    margin-bottom: 0.45rem;
    color: #0f3e68;
    font-size: 1.5rem;
}

.cta-banner p {
    margin-bottom: 0;
    color: #4b637a;
}

.about-impact-section {
    position: relative;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.insight-card-stat {
    border-width: 1px;
    border-color: #d5e4f4;
}

.insight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.9rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0f6cc0, #42a2ef);
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(17, 101, 177, 0.35);
}

.insight-icon i {
    font-size: 1.4rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #d5e6f8;
    border-radius: 999px;
    background: #ffffff;
    color: #294f73;
    font-weight: 600;
    padding: 0.48rem 0.9rem;
}

.team-card {
    border: 1px solid #d9e6f5;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(12, 55, 98, 0.09);
    height: 100%;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card-body {
    padding: 1.1rem 1.15rem 1.2rem;
}

.team-card-body h3 {
    font-size: 1.15rem;
    color: #123f68;
    margin-bottom: 0.25rem;
}

.team-card-body span {
    display: inline-block;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #2d6eaa;
    margin-bottom: 0.6rem;
}

.team-card-body p {
    margin-bottom: 0;
    color: #566b81;
}

.governance-panel {
    background: linear-gradient(145deg, #0d385f 0%, #0f4b7d 60%, #0f5c94 100%);
    color: #edf8ff;
    border-radius: 22px;
    border: 1px solid rgba(173, 220, 255, 0.28);
    padding: 2rem;
    box-shadow: 0 18px 30px rgba(8, 45, 78, 0.33);
}

.governance-panel h2 {
    color: #f7fbff;
    margin-bottom: 0.9rem;
}

.governance-panel p {
    color: #dcefff;
}

.governance-panel .premium-list li {
    color: #e6f4ff;
}

.governance-badges {
    display: grid;
    gap: 0.75rem;
}

.governance-badges article {
    border-radius: 14px;
    border: 1px solid rgba(189, 226, 255, 0.34);
    background: rgba(13, 40, 66, 0.35);
    padding: 0.9rem 1rem;
}

.governance-badges strong {
    display: block;
    font-size: 1.4rem;
    line-height: 1.1;
    color: #ffffff;
}

.governance-badges span {
    color: #cae7ff;
    font-size: 0.92rem;
}

.legal-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.legal-meta-card {
    border: 1px solid #d7e7f8;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #f2f8ff 100%);
    padding: 1.05rem;
    box-shadow: 0 10px 20px rgba(11, 54, 98, 0.08);
    height: 100%;
}

.legal-meta-card i {
    color: #176eb8;
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    display: inline-block;
}

.legal-meta-card h3 {
    font-size: 1.05rem;
    color: #15456f;
    margin-bottom: 0.45rem;
}

.legal-meta-card p {
    margin-bottom: 0;
    color: #5a6f85;
}

.legal-doc-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.legal-doc-card {
    border: 1px solid #d7e7f8;
    border-radius: 16px;
    background: #ffffff;
    padding: 1.2rem;
    box-shadow: 0 10px 18px rgba(11, 55, 98, 0.08);
    height: 100%;
}

.legal-doc-card h2 {
    font-size: 1.1rem;
    color: #16436d;
    margin-bottom: 0.7rem;
}

.legal-doc-card p {
    color: #576d83;
    margin-bottom: 0.65rem;
}

.legal-doc-card p:last-child {
    margin-bottom: 0;
}

.legal-list-check {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.legal-list-check li {
    position: relative;
    padding-left: 1.45rem;
    color: #53697f;
    margin-bottom: 0.45rem;
}

.legal-list-check li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.02rem;
    font-weight: 700;
    color: #1e8a58;
}

.legal-list-check li:last-child {
    margin-bottom: 0;
}

.legal-doc-card-highlight {
    background: linear-gradient(165deg, #ffffff 0%, #f1f7ff 100%);
    border-color: #cbe1f7;
}

.legal-visual-section {
    padding-top: 0;
}

.legal-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.legal-visual-card {
    margin: 0;
    border: 1px solid #d8e7f6;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 13px 24px rgba(10, 52, 94, 0.1);
}

.legal-visual-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.legal-visual-card figcaption {
    padding: 0.9rem 1rem 1rem;
    color: #4d647b;
    font-size: 0.95rem;
}

.benefit-pill-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.benefit-pill-row article {
    border: 1px solid #d8e7f8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(12, 56, 99, 0.08);
    padding: 0.9rem 0.8rem;
    text-align: center;
}

.benefit-pill-row strong {
    display: block;
    color: #0f4f87;
    font-size: 1.26rem;
}

.benefit-pill-row span {
    color: #5c7085;
    font-size: 0.92rem;
}

.comparison-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.comparison-card {
    border: 1px solid #d9e7f6;
    border-radius: 18px;
    background: #ffffff;
    padding: 1.3rem;
    box-shadow: 0 12px 21px rgba(11, 56, 98, 0.08);
}

.comparison-card.is-primary {
    border-color: #9dc6ec;
    background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 100%);
}

.comparison-card h3 {
    font-size: 1.2rem;
    color: #15446f;
    margin-bottom: 0.85rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.72rem;
    color: #4f677e;
}

.comparison-list i.bi-check-circle-fill {
    color: #24a567;
    margin-top: 0.1rem;
}

.comparison-list i.bi-x-circle {
    color: #cc5f5f;
    margin-top: 0.1rem;
}

.quality-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.quality-strip article {
    display: flex;
    gap: 0.75rem;
    border: 1px solid #d9e8f8;
    border-radius: 16px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 10px 18px rgba(11, 55, 98, 0.08);
}

.quality-strip i {
    color: #1371be;
    font-size: 1.28rem;
    margin-top: 0.15rem;
}

.quality-strip h3 {
    font-size: 1.03rem;
    color: #17456f;
    margin-bottom: 0.35rem;
}

.quality-strip p {
    margin-bottom: 0;
    color: #5a6f84;
}

.faq-support-section {
    padding-top: 3.2rem;
    padding-bottom: 0.6rem;
}

.faq-help-card {
    border: 1px solid #d8e7f7;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
    padding: 1.2rem;
    height: 100%;
    box-shadow: 0 10px 18px rgba(12, 55, 98, 0.08);
}

.faq-help-card i {
    font-size: 1.5rem;
    color: #146ab4;
    margin-bottom: 0.7rem;
    display: inline-block;
}

.faq-help-card h3 {
    font-size: 1.02rem;
    color: #17456f;
    margin-bottom: 0.45rem;
}

.faq-help-card p {
    color: #556b80;
    margin-bottom: 0;
}

.faq-knowledge-panel {
    border: 1px solid #d7e7f8;
    border-radius: 20px;
    padding: 1.3rem;
    background: linear-gradient(150deg, #ffffff 0%, #f2f8ff 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.faq-knowledge-panel article {
    background: #ffffff;
    border: 1px solid #dbe8f7;
    border-radius: 14px;
    padding: 1rem;
}

.faq-knowledge-panel i {
    color: #166eb8;
    font-size: 1.2rem;
}

.faq-knowledge-panel h3 {
    font-size: 1.02rem;
    margin: 0.45rem 0 0.4rem;
    color: #17466f;
}

.faq-knowledge-panel p {
    margin-bottom: 0;
    color: #5b7085;
}

.story-card {
    border: 1px solid #d7e6f6;
    border-radius: 18px;
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: 0 11px 20px rgba(11, 55, 98, 0.08);
    height: 100%;
}

.story-card > span {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #2c6ea9;
    background: #eaf4ff;
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
}

.story-card h3 {
    font-size: 1.1rem;
    margin: 0.8rem 0 0.55rem;
    color: #18476f;
}

.story-card p {
    color: #566b80;
}

.story-metrics {
    border-top: 1px solid #e2edf9;
    margin-top: 0.95rem;
    padding-top: 0.75rem;
}

.story-metrics strong {
    display: block;
    font-size: 1.25rem;
    color: #115a95;
}

.story-metrics em {
    color: #60758a;
    font-style: normal;
    font-size: 0.91rem;
}

.testimonial-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.testimonial-trust-strip article {
    border: 1px solid #d8e6f6;
    border-radius: 16px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 10px 18px rgba(11, 54, 99, 0.08);
}

.testimonial-trust-strip i {
    font-size: 1.3rem;
    color: #176db6;
}

.testimonial-trust-strip h3 {
    font-size: 1.03rem;
    margin: 0.55rem 0 0.35rem;
    color: #17456f;
}

.testimonial-trust-strip p {
    margin-bottom: 0;
    color: #586e84;
}

.partner-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.partner-metric-grid article {
    border: 1px solid #d8e7f7;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    padding: 0.95rem 0.8rem;
    box-shadow: 0 10px 18px rgba(11, 54, 98, 0.08);
}

.partner-metric-grid strong {
    display: block;
    font-size: 1.25rem;
    color: #11588f;
}

.partner-metric-grid span {
    color: #5d7084;
    font-size: 0.9rem;
}

.program-card {
    border: 1px solid #d9e7f6;
    border-radius: 16px;
    padding: 1.1rem;
    background: linear-gradient(165deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 10px 19px rgba(12, 54, 98, 0.08);
    height: 100%;
}

.program-card i {
    color: #176eb8;
    font-size: 1.25rem;
}

.program-card h3 {
    margin: 0.55rem 0 0.4rem;
    color: #18466e;
    font-size: 1.02rem;
}

.program-card p {
    margin-bottom: 0;
    color: #5b7085;
}

/* Thank You Page */
.thankyou-section {
    background: linear-gradient(180deg, #f6faff 0%, #edf5ff 100%);
}

.thankyou-stage {
    position: relative;
    border: 1px solid #cfe1f6;
    border-radius: 24px;
    background: linear-gradient(160deg, #ffffff 0%, #f1f7ff 54%, #e8f2ff 100%);
    box-shadow: 0 24px 42px rgba(11, 53, 95, 0.14);
    padding: 1.6rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.3rem;
    align-items: center;
    overflow: hidden;
}

.thankyou-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 46%);
    pointer-events: none;
}

.thankyou-check-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}

.thankyou-check-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(29, 156, 102, 0.36);
    animation: thankyouPulse 2.6s ease-in-out infinite;
}

.thankyou-check-core {
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: linear-gradient(140deg, #25ba73 0%, #158f57 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 25px rgba(21, 143, 87, 0.34);
}

.thankyou-check-core i {
    font-size: 2.1rem;
}

.thankyou-stage-copy {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.thankyou-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.22rem 0.66rem;
    border-radius: 999px;
    background: #e5f1ff;
    color: #1f5d90;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.thankyou-stage h2 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: #0f3f68;
}

.thankyou-stage p {
    margin-bottom: 0;
    color: #536980;
}

.thankyou-reference {
    margin-top: 0.95rem;
    border: 1px dashed #9dc3e8;
    border-radius: 12px;
    padding: 0.66rem 0.82rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(245, 250, 255, 0.88);
}

.thankyou-reference span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #48709a;
}

.thankyou-reference strong {
    color: #0f4f85;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.thankyou-chip-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.thankyou-chip-list li {
    border: 1px solid #d4e5f8;
    border-radius: 999px;
    background: #ffffff;
    color: #345778;
    font-weight: 600;
    padding: 0.42rem 0.84rem;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(9, 46, 84, 0.08);
}

.thankyou-chip-list i {
    color: #1d83ce;
    margin-right: 0.35rem;
}

.thankyou-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.thankyou-card {
    position: relative;
    border: 1px solid #d4e5f8;
    border-radius: 18px;
    background: #ffffff;
    padding: 1.1rem;
    box-shadow: 0 12px 20px rgba(10, 51, 91, 0.08);
    animation: thankyouCardIn 0.78s ease both;
}

.thankyou-card.is-delay-1 {
    animation-delay: 0.14s;
}

.thankyou-card.is-delay-2 {
    animation-delay: 0.26s;
}

.thankyou-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(140deg, #1772bf 0%, #2f8de7 100%);
    box-shadow: 0 9px 15px rgba(18, 102, 173, 0.3);
    margin-bottom: 0.7rem;
}

.thankyou-card h3 {
    font-size: 1.08rem;
    color: #15466f;
    margin-bottom: 0.45rem;
}

.thankyou-card p {
    margin-bottom: 0;
    color: #556b81;
}

.thankyou-action-panel {
    position: relative;
    border: 1px solid #d2e4f7;
    border-radius: 22px;
    padding: 1.6rem;
    background: linear-gradient(132deg, #f5f9ff 0%, #ebf4ff 44%, #e4efff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    overflow: hidden;
}

.thankyou-action-panel::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    top: -110px;
    right: -70px;
    background: radial-gradient(circle, rgba(99, 198, 255, 0.28) 0%, rgba(99, 198, 255, 0) 72%);
    animation: thankyouFloat 7s ease-in-out infinite;
}

.thankyou-action-panel h2 {
    margin-bottom: 0.45rem;
    color: #113f67;
    font-size: 1.45rem;
}

.thankyou-action-panel p {
    margin-bottom: 0;
    color: #4f657b;
}

.thankyou-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    position: relative;
    z-index: 1;
}

@keyframes thankyouFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes thankyouPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.16);
        opacity: 0.28;
    }
}

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

/* Cookie Consent */
.cookie-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: rgba(7, 24, 42, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cookie-consent-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-consent-card {
    width: min(860px, 100%);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border-radius: 18px;
    border: 1px solid #d6e4f4;
    background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 20px 38px rgba(8, 38, 68, 0.28);
}

.cookie-consent-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(145deg, #0f5e9e 0%, #2f8de7 100%);
    box-shadow: 0 12px 20px rgba(19, 96, 160, 0.25);
}

.cookie-consent-icon i {
    font-size: 1.35rem;
}

.cookie-consent-content h2 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    color: #133f68;
}

.cookie-consent-content p {
    margin: 0;
    color: #4f657a;
}

.cookie-consent-content p a {
    font-weight: 600;
}

.cookie-consent-actions {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

body.cookie-consent-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 991px) {
    :root {
        --header-offset: 72px;
    }

    .hero-slider {
        min-height: 560px;
    }
    
    .hero-slider .carousel-caption {
        max-width: 92%;
        padding: 0 5%;
        text-align: center;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2.8rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next {
        display: none;
    }

    #partnersCarousel .carousel-control-prev,
    #partnersCarousel .carousel-control-next {
        display: none;
    }

    .partners-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .about-main-image img {
        height: 360px;
    }

    .contact-side-panel {
        margin-bottom: 8px;
    }

    .simulator-shell {
        padding: 1rem;
    }

    .subpage-hero {
        padding-top: calc(var(--header-offset) + 44px);
        padding-bottom: 76px;
    }

    .subpage-hero h1 {
        font-size: 2.45rem;
    }

    .faq-sidebar {
        position: static;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-pill-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-shell {
        grid-template-columns: 1fr;
    }

    .quality-strip {
        grid-template-columns: 1fr;
    }

    .faq-knowledge-panel {
        grid-template-columns: 1fr;
    }

    .testimonial-trust-strip {
        grid-template-columns: 1fr;
    }

    .partner-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-meta-grid {
        grid-template-columns: 1fr;
    }

    .legal-doc-shell {
        grid-template-columns: 1fr;
    }

    .legal-visual-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent-card {
        width: 100%;
    }

    .thankyou-stage {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thankyou-chip-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thankyou-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 68px;
    }

    .header {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }

    .brand-logo {
        height: 30px;
    }

    .footer-logo {
        height: 34px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2.3rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider .carousel-caption {
        padding: 0 4%;
    }

    .hero-slider .btn-hero-premium {
        padding: 0.78rem 1.8rem;
        font-size: 0.98rem;
    }
    
    .btn-cta {
        padding: 6px 15px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .vorteil-icon {
        width: 70px;
        height: 70px;
    }

    #vorteile h3 {
        min-height: auto;
    }

    .advantage-media img {
        height: 132px;
    }

    .about-main-image img {
        height: 320px;
    }

    .contact-side-panel {
        padding: 1.6rem 1.2rem;
    }

    .contact-map iframe {
        height: 220px;
    }

    .simulator-control-panel,
    .simulator-result-panel {
        padding: 1.15rem 1rem;
    }

    .sim-result-card strong {
        font-size: 1.12rem;
    }

    .subpage-hero h1 {
        font-size: 2.1rem;
    }

    .subpage-hero p {
        font-size: 1.05rem;
    }

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

    .team-card img {
        height: 220px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }

    .cookie-consent-card {
        flex-direction: column;
    }

    .cookie-consent-icon {
        width: 44px;
        height: 44px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-actions .btn {
        flex: 1 1 auto;
    }

    .thankyou-stage h2 {
        font-size: 1.45rem;
    }

    .thankyou-chip-list {
        grid-template-columns: 1fr;
    }

    .thankyou-chip-list li {
        white-space: normal;
    }

    .seo-keyword-title {
        font-size: 0.98rem;
    }

    .seo-keyword-intro {
        font-size: 0.88rem;
    }

    .seo-keyword-pill {
        font-size: 0.72rem;
    }

    .thankyou-action-panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thankyou-action-buttons {
        width: 100%;
        justify-content: center;
    }

    .thankyou-action-buttons .btn {
        width: min(100%, 360px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --header-offset: 64px;
    }

    .hero-slider {
        min-height: 520px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }

    .hero-slider .carousel-caption {
        max-width: 94%;
        padding: 0 3%;
    }

    .hero-slider .btn-hero-premium {
        width: 100%;
        max-width: 290px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .advantage-media img {
        height: 118px;
    }
    
    .partner-logo {
        min-height: 112px;
    }

    .about-main-image img {
        height: 250px;
    }

    .about-sub-images {
        grid-template-columns: 1fr;
    }

    .about-sub-images img {
        height: 150px;
    }

    .contact-side-panel h3 {
        font-size: 1.2rem;
    }

    .contact-points i {
        width: 32px;
        height: 32px;
    }

    .simulator-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .simulator-value {
        font-size: 0.88rem;
    }

    .btn-simulator-cta {
        font-size: 0.95rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 5px 12px;
        font-size: 0.9rem;
    }

    .subpage-hero {
        padding-top: calc(var(--header-offset) + 42px);
        padding-bottom: 62px;
    }

    .subpage-hero .btn-hero-premium,
    .subpage-hero .btn-outline-light {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .benefit-pill-row,
    .partner-metric-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        justify-content: flex-start;
    }

    .governance-panel {
        padding: 1.3rem;
    }

    .cookie-consent-overlay {
        padding: 0.75rem;
    }

    .cookie-consent-card {
        padding: 1rem;
        border-radius: 14px;
    }

    .thankyou-stage {
        padding: 1.1rem;
        border-radius: 16px;
    }

    .thankyou-check-wrap {
        width: 70px;
        height: 70px;
    }

    .thankyou-check-core i {
        font-size: 1.8rem;
    }

    .thankyou-action-panel {
        padding: 1.15rem;
        border-radius: 16px;
    }

    .subpage-hero-thankyou .btn-hero-premium,
    .subpage-hero-thankyou .btn-outline-light {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Animation for sections on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a2e52;
}
