/**
 * FellUndHuf - Hauptstylesheet
 * 
 * Design-System für die Tierversicherungs-Website
 */

/* ============================================
   1. CSS VARIABLEN
   ============================================ */
:root {
    /* Hauptfarben */
    --primary-color: #2D5016;      /* Waldgrün */
    --primary-light: #e8f0e3;      /* Waldgrün Hell */
    --primary-dark: #1e3a0f;       /* Waldgrün Dunkel */
    --secondary-color: #C1440E;    /* Terrakotta */
    --secondary-light: #f5e0d6;    /* Terrakotta Hell */
    --background-color: #FAFBF9;   /* Warmes Weiß */
    --text-color: #2c3e50;         /* Modernes Dunkelgrau */
    --text-muted: #6c757d;         /* Gedämpfter Text */
    --accent-color: #9CAF88;       /* Salbeigrün */
    --white-color: #FFFFFF;
    --light-gray-color: #f1f3f0;
    --border-color: #e2e8df;
    
    /* Zusätzliche Farben */
    --dark-color: #1a2f0a;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Moderne Schatten */
    --shadow-sm: 0 1px 3px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 80, 22, 0.1);
    --shadow-lg: 0 12px 40px rgba(45, 80, 22, 0.12);
    --shadow-xl: 0 20px 60px rgba(45, 80, 22, 0.15);
    --shadow-glow: 0 0 30px rgba(45, 80, 22, 0.15);
    
    /* Weichere Übergänge */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 7rem);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   3. TYPOGRAFIE
   ============================================ */

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

h6 {
    font-size: 1rem;
}

/* Paragraphs & Text */
p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Links */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast), text-decoration var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #3a6a1c 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.35);
    color: var(--white-color);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a33a0c 100%);
    border: none;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(193, 68, 14, 0.25);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(135deg, #d94e10 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 68, 14, 0.35);
    color: var(--white-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
header {
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    z-index: 1000;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

header.scrolled .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar {
    padding: 1rem 0;
    transition: padding var(--transition-normal);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: height var(--transition-normal);
}

header.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   6. SECTIONS
   ============================================ */
section {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title p {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   6.1 TRUST BADGES
   ============================================ */
.trust-badges-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    border-right: 1px solid var(--border-color);
}

.trust-badge:last-child {
    border-right: none;
}

.trust-badge-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
}

.trust-badge-content strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.trust-badge-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .trust-badges {
        gap: 0.5rem;
        padding: 1.25rem 1rem;
    }
    
    .trust-badge {
        flex: 1 1 45%;
        border-right: none;
        padding: 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .trust-badges-section {
        margin-top: -30px;
    }
    
    .trust-badge {
        flex: 1 1 100%;
    }
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(45, 80, 22, 0.92) 0%, rgba(30, 58, 15, 0.75) 50%, rgba(45, 80, 22, 0.85) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white-color) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white-color);
    padding-bottom: 3rem;
}

.hero-content h1 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content h2 {
    color: var(--white-color);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
}

.hero-content .btn-outline-light {
    border-width: 2px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-content .btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Hero für Unterseiten (kleiner) */
.hero-small {
    min-height: 45vh;
}

.hero-small::after {
    height: 80px;
}

/* ============================================
   8. CARDS
   ============================================ */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    overflow: hidden;
    height: 100%;
    background: var(--white-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.card:hover .card-title {
    color: var(--secondary-color);
}

.card-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Versicherungs-Cards */
.insurance-card {
    text-align: center;
}

.insurance-card .card-img-top {
    height: 180px;
}

.insurance-card .card-body {
    padding: 2rem 1.5rem;
}

.insurance-card .card-title {
    font-size: 1.5rem;
}

/* Neue Versicherungs-Cards (verbessert) */
.insurance-card-new {
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: visible;
    transition: all var(--transition-normal);
    background: var(--white-color);
}

.insurance-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.insurance-card-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    font-size: 2.5rem;
    border-radius: var(--radius-lg);
    margin: -45px auto 0;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
    transition: all var(--transition-bounce);
}

.insurance-card-new:hover .insurance-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.insurance-card-new .card-body {
    padding: 1.5rem 2rem 2rem;
}

.insurance-card-new .card-title {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.insurance-card-new .card-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.insurance-price {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.insurance-price .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.insurance-price .price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.insurance-price .price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.insurance-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.insurance-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insurance-features li i {
    color: var(--success-color);
    font-size: 0.85rem;
}

/* Tarif-Cards */
.tariff-card {
    text-align: center;
    position: relative;
}

.tariff-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.tariff-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.tariff-card .card-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.5rem;
    border: none;
}

.tariff-card .card-header h4 {
    color: var(--white-color);
    margin-bottom: 0;
}

.tariff-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.tariff-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.tariff-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.tariff-card .feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray-color);
}

.tariff-card .feature-list li:last-child {
    border-bottom: none;
}

.tariff-card .feature-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* ============================================
   9. VORTEILE / FEATURES SECTION
   ============================================ */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary-color);
    font-size: 2.25rem;
    transition: all var(--transition-bounce);
    box-shadow: 0 8px 20px rgba(156, 175, 136, 0.3);
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(45, 80, 22, 0.3);
}

.feature-box h4 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   10. TESTIMONIALS / CAROUSEL
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--light-gray-color) 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(156, 175, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    font-style: normal;
    line-height: 1.9;
    margin-bottom: 2rem;
    position: relative;
    color: var(--text-color);
}

.testimonial-card blockquote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary-light);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card blockquote p {
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white-color);
    box-shadow: var(--shadow-md);
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--secondary-color);
}

.carousel-indicators {
    position: relative;
    margin-top: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--accent-color);
    border: none;
    margin: 0 0.25rem;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* ============================================
   11. ACCORDION
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--white-color);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232D5016'%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='%23ffffff'%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 {
    padding: 1.5rem;
}

/* ============================================
   12. FORMS
   ============================================ */
.form-control {
    border: 2px solid var(--light-gray-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid var(--light-gray-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15);
}

/* Wizard / Multi-Step Form */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-gray-color);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray-color);
    color: var(--text-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.wizard-step.active .wizard-step-number {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.wizard-step.completed .wizard-step-number {
    background-color: var(--success-color);
    color: var(--white-color);
}

.wizard-step-label {
    font-size: 0.75rem;
    color: var(--text-color);
    text-align: center;
}

.wizard-content {
    display: none;
}

.wizard-content.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-slogan {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-heading {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--white-color);
    text-decoration: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white-color);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-newsletter input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white-color);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--white-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   14. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* ============================================
   15. ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   16. RATGEBER / BLOG
   ============================================ */
.ratgeber-section {
    padding-top: 4rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--light-gray-color);
    border-radius: var(--radius-xl);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: transparent;
    color: var(--text-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background-color: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.article-card {
    margin-bottom: 2rem;
}

.article-card .card-img-top {
    height: 200px;
}

.article-card .card-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.article-card .card-date {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* ============================================
   16.1 ARTIKEL SEITE - VERBESSERTES DESIGN
   ============================================ */

/* Artikel Hero */
.article-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding-bottom: 3rem;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
}

.article-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.article-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.article-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.article-hero h1 {
    color: var(--white-color);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.article-meta-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.article-meta-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.article-meta-hero .meta-item i {
    opacity: 0.7;
}

.article-meta-hero .author-avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

/* Artikel Content Section */
.article-content-section {
    background: var(--white-color);
    padding: 4rem 0;
}

/* Sticky Share Sidebar */
.sticky-share-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.sticky-share-sidebar .share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.sticky-share-sidebar .share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--white-color);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.sticky-share-sidebar .share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.email { background: var(--primary-color); }

/* Article Body */
.article-body {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-color);
}

.article-lead {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

/* Table of Contents */
.table-of-contents {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

/* Styled List */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.styled-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Article Quote */
.article-quote {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f5eb 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    border: none;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.article-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 1;
}

.article-quote figcaption {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.article-quote figcaption img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.article-quote figcaption strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.article-quote figcaption span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Tip Box */
.tip-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--info-color);
}

.tip-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--info-color);
    border-radius: var(--radius-md);
    color: var(--white-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tip-content h5 {
    margin-bottom: 0.5rem;
    color: var(--info-color);
    font-size: 1rem;
}

.tip-content p {
    margin: 0;
    font-size: 1rem;
}

/* Article Tags Section */
.article-tags-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-tags-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-gray-color);
    color: var(--text-color);
    font-size: 0.875rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.author-box-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.author-social a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Mobile Share */
.mobile-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.mobile-share h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mobile-share .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-share .share-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.sidebar-box h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sidebar-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    text-align: center;
    border: none;
}

.cta-box .cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* ============================================
   17. KONTAKT SEITE
   ============================================ */
.contact-info-box {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-info-text p {
    margin-bottom: 0;
    opacity: 0.8;
}

.contact-form-box {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   18. TABLES - MODERNE VERGLEICHSTABELLE
   ============================================ */

/* Tabellen-Container */
.table-modern-wrapper {
    background: var(--white-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
}

/* Tabellenkopf */
.comparison-table thead {
    position: relative;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--light-gray-color);
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: normal;
    text-transform: none;
}

/* Tarif-Header mit Farben */
.comparison-table th.tarif-basis {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--primary-color);
}

.comparison-table th.tarif-premium {
    background: linear-gradient(135deg, var(--secondary-light) 0%, #f8d4c4 100%);
    color: var(--secondary-color);
    position: relative;
}

.comparison-table th.tarif-premium::before {
    content: '★ BELIEBT';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
}

.comparison-table th.tarif-exzellent {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

/* Tabellenzellen */
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-fast);
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    background: var(--white-color);
}

/* Feature-Beschreibung in erster Spalte */
.comparison-table td:first-child .feature-desc {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Zebra-Streifen */
.comparison-table tbody tr:nth-child(even) td {
    background-color: rgba(250, 251, 249, 0.5);
}

.comparison-table tbody tr:nth-child(even) td:first-child {
    background-color: var(--white-color);
}

/* Hover-Effekt */
.comparison-table tbody tr:hover td {
    background-color: rgba(45, 80, 22, 0.05);
}

.comparison-table tbody tr:hover td:first-child {
    background-color: rgba(45, 80, 22, 0.03);
}

/* Check & Cross Icons - Modernisiert */
.comparison-table .check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--radius-md);
    color: var(--success-color);
    font-size: 1rem;
}

.comparison-table .cross-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: var(--radius-md);
    color: var(--danger-color);
    font-size: 0.85rem;
}

/* Legacy Support für alte Icons */
.comparison-table .check {
    color: var(--success-color);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: var(--danger-color);
    font-size: 1rem;
    opacity: 0.6;
}

/* Wert-Badges */
.comparison-table .value-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-table .value-badge.premium {
    background: var(--secondary-light);
    color: var(--secondary-color);
}

.comparison-table .value-badge.unlimited {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

/* Highlight-Spalte (Premium) */
.comparison-table td.highlight {
    background-color: rgba(193, 68, 14, 0.03);
}

.comparison-table tbody tr:nth-child(even) td.highlight {
    background-color: rgba(193, 68, 14, 0.06);
}

/* Letzte Zeile ohne Border */
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Anpassungen */
@media (max-width: 767.98px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 1rem;
        min-width: 120px;
    }
    
    .comparison-table th.tarif-premium::before {
        display: none;
    }
    
    .comparison-table .value-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .comparison-table .check-badge,
    .comparison-table .cross-badge {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
}

/* ============================================
   19. UTILITY CLASSES
   ============================================ */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light { background-color: var(--background-color) !important; }
.bg-white { background-color: var(--white-color) !important; }
.bg-gray { background-color: var(--light-gray-color) !important; }

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* ============================================
   20. RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .tariff-card.featured {
        transform: none;
    }
    
    .wizard-step-label {
        display: none;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .btn {
        display: block;
        width: 100%;
    }
    
    .hero-content .btn {
        width: auto;
        display: inline-block;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}
